diff --git a/grammar.js b/grammar.js index 513f485..27b0aef 100644 --- a/grammar.js +++ b/grammar.js @@ -390,6 +390,7 @@ module.exports = grammar({ seq( '{', optional($._terminated_statement), + optional($._statement_not_subshell), token(prec(-1, '}')), ), seq( @@ -514,7 +515,7 @@ module.exports = grammar({ )), ), - variable_assignments: $ => seq($.variable_assignment, repeat1($.variable_assignment)), + variable_assignments: $ => prec.dynamic(1, seq($.variable_assignment, repeat1($.variable_assignment))), subscript: $ => seq( field('name', $.variable_name), diff --git a/package-lock.json b/package-lock.json index 7df2397..f8d8fc9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,6 +17,7 @@ "eslint": "^9.12.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", + "tree-sitter": "^0.25.0", "tree-sitter-cli": "^0.25.6" }, "peerDependencies": { @@ -1379,10 +1380,9 @@ "version": "0.25.0", "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.25.0.tgz", "integrity": "sha512-PGZZzFW63eElZJDe/b/R/LbsjDDYJa5UEjLZJB59RQsMX+fo0j54fqBPn1MGKav/QNa0JR0zBiVaikYDWCj5KQ==", + "dev": true, "hasInstallScript": true, "license": "MIT", - "optional": true, - "peer": true, "dependencies": { "node-addon-api": "^8.3.0", "node-gyp-build": "^4.8.4" diff --git a/package.json b/package.json index 6f1fd4b..887203d 100644 --- a/package.json +++ b/package.json @@ -39,8 +39,9 @@ "devDependencies": { "eslint": "^9.12.0", "eslint-config-treesitter": "^1.0.2", - "tree-sitter-cli": "^0.25.6", - "prebuildify": "^6.0.1" + "prebuildify": "^6.0.1", + "tree-sitter": "^0.25.0", + "tree-sitter-cli": "^0.25.6" }, "peerDependencies": { "tree-sitter": "^0.25.0" diff --git a/setup.py b/setup.py index f038a5f..f1ce049 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp310", "abi3" + python, abi = "cp310", "abi3t" return python, abi, platform @@ -70,7 +70,7 @@ def find_sources(self): ], cmdclass={ "build": Build, - "bdist_wheel": BdistWheel, + #"bdist_wheel": BdistWheel, "egg_info": EggInfo, }, zip_safe=False diff --git a/src/grammar.json b/src/grammar.json index fa9509d..706ad7b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1910,6 +1910,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_statement_not_subshell" + }, + { + "type": "BLANK" + } + ] + }, { "type": "TOKEN", "content": { @@ -2474,20 +2486,24 @@ ] }, "variable_assignments": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "variable_assignment" - }, - { - "type": "REPEAT1", - "content": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", "name": "variable_assignment" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "variable_assignment" + } } - } - ] + ] + } }, "subscript": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index 4eeb137..9ff5fef 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" @@ -15,8 +15,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 7571 -#define LARGE_STATE_COUNT 523 +#define STATE_COUNT 8209 +#define LARGE_STATE_COUNT 554 #define SYMBOL_COUNT 280 #define ALIAS_COUNT 0 #define TOKEN_COUNT 174 @@ -2770,13 +2770,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 15, - [16] = 14, + [16] = 15, [17] = 14, [18] = 15, - [19] = 14, - [20] = 15, - [21] = 15, - [22] = 13, + [19] = 15, + [20] = 14, + [21] = 14, + [22] = 22, [23] = 23, [24] = 24, [25] = 25, @@ -2787,7 +2787,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [30] = 30, [31] = 31, [32] = 32, - [33] = 33, + [33] = 13, [34] = 34, [35] = 35, [36] = 36, @@ -2805,7526 +2805,8164 @@ 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] = 50, + [55] = 51, + [56] = 50, + [57] = 50, [58] = 50, - [59] = 52, - [60] = 52, - [61] = 52, - [62] = 62, + [59] = 50, + [60] = 50, + [61] = 50, + [62] = 50, [63] = 63, [64] = 64, - [65] = 65, + [65] = 63, [66] = 66, - [67] = 26, - [68] = 26, - [69] = 64, - [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, - [101] = 66, - [102] = 102, - [103] = 102, - [104] = 104, + [67] = 67, + [68] = 34, + [69] = 34, + [70] = 63, + [71] = 71, + [72] = 67, + [73] = 71, + [74] = 74, + [75] = 63, + [76] = 67, + [77] = 71, + [78] = 74, + [79] = 63, + [80] = 71, + [81] = 74, + [82] = 74, + [83] = 63, + [84] = 67, + [85] = 71, + [86] = 74, + [87] = 63, + [88] = 88, + [89] = 67, + [90] = 71, + [91] = 74, + [92] = 63, + [93] = 93, + [94] = 67, + [95] = 71, + [96] = 74, + [97] = 63, + [98] = 67, + [99] = 71, + [100] = 74, + [101] = 101, + [102] = 67, + [103] = 101, + [104] = 93, [105] = 105, - [106] = 63, - [107] = 65, - [108] = 102, - [109] = 62, - [110] = 104, + [106] = 106, + [107] = 64, + [108] = 66, + [109] = 101, + [110] = 93, [111] = 105, - [112] = 63, - [113] = 65, - [114] = 102, - [115] = 62, - [116] = 104, + [112] = 106, + [113] = 64, + [114] = 66, + [115] = 101, + [116] = 93, [117] = 105, - [118] = 63, - [119] = 65, - [120] = 102, - [121] = 62, - [122] = 104, + [118] = 106, + [119] = 64, + [120] = 66, + [121] = 101, + [122] = 93, [123] = 105, - [124] = 63, - [125] = 102, - [126] = 62, - [127] = 104, + [124] = 106, + [125] = 64, + [126] = 101, + [127] = 93, [128] = 105, - [129] = 63, - [130] = 102, - [131] = 62, - [132] = 104, + [129] = 106, + [130] = 64, + [131] = 101, + [132] = 93, [133] = 105, - [134] = 63, - [135] = 102, - [136] = 62, - [137] = 104, + [134] = 106, + [135] = 64, + [136] = 101, + [137] = 93, [138] = 105, - [139] = 63, - [140] = 62, - [141] = 104, + [139] = 106, + [140] = 64, + [141] = 93, [142] = 105, - [143] = 63, - [144] = 62, - [145] = 104, + [143] = 106, + [144] = 64, + [145] = 93, [146] = 105, - [147] = 63, - [148] = 62, - [149] = 104, + [147] = 106, + [148] = 64, + [149] = 93, [150] = 105, - [151] = 63, - [152] = 62, - [153] = 104, + [151] = 106, + [152] = 64, + [153] = 93, [154] = 105, - [155] = 63, - [156] = 62, - [157] = 104, + [155] = 106, + [156] = 64, + [157] = 93, [158] = 105, - [159] = 63, - [160] = 62, - [161] = 104, + [159] = 106, + [160] = 64, + [161] = 93, [162] = 105, - [163] = 63, - [164] = 62, - [165] = 104, + [163] = 106, + [164] = 64, + [165] = 93, [166] = 105, - [167] = 63, - [168] = 62, - [169] = 104, + [167] = 106, + [168] = 64, + [169] = 93, [170] = 105, - [171] = 63, - [172] = 62, - [173] = 104, + [171] = 106, + [172] = 64, + [173] = 93, [174] = 105, - [175] = 63, - [176] = 62, - [177] = 104, + [175] = 106, + [176] = 64, + [177] = 93, [178] = 105, - [179] = 63, - [180] = 62, - [181] = 104, + [179] = 106, + [180] = 64, + [181] = 93, [182] = 105, - [183] = 63, - [184] = 62, - [185] = 104, + [183] = 106, + [184] = 64, + [185] = 93, [186] = 105, - [187] = 63, - [188] = 62, - [189] = 104, + [187] = 106, + [188] = 64, + [189] = 93, [190] = 105, - [191] = 63, - [192] = 62, - [193] = 104, + [191] = 106, + [192] = 64, + [193] = 93, [194] = 105, - [195] = 63, - [196] = 62, - [197] = 104, + [195] = 106, + [196] = 64, + [197] = 93, [198] = 105, - [199] = 63, - [200] = 62, - [201] = 104, + [199] = 106, + [200] = 64, + [201] = 93, [202] = 105, - [203] = 63, - [204] = 62, - [205] = 104, + [203] = 106, + [204] = 64, + [205] = 93, [206] = 105, - [207] = 63, - [208] = 62, - [209] = 104, + [207] = 106, + [208] = 64, + [209] = 93, [210] = 105, - [211] = 63, - [212] = 62, - [213] = 104, + [211] = 106, + [212] = 64, + [213] = 93, [214] = 105, - [215] = 63, - [216] = 62, - [217] = 104, + [215] = 106, + [216] = 64, + [217] = 93, [218] = 105, - [219] = 63, - [220] = 62, - [221] = 104, + [219] = 106, + [220] = 64, + [221] = 93, [222] = 105, - [223] = 63, - [224] = 62, - [225] = 104, + [223] = 106, + [224] = 64, + [225] = 93, [226] = 105, - [227] = 63, - [228] = 62, - [229] = 104, + [227] = 106, + [228] = 64, + [229] = 93, [230] = 105, - [231] = 63, - [232] = 62, - [233] = 104, + [231] = 106, + [232] = 64, + [233] = 93, [234] = 105, - [235] = 63, - [236] = 62, - [237] = 104, + [235] = 106, + [236] = 64, + [237] = 93, [238] = 105, - [239] = 63, - [240] = 62, - [241] = 104, + [239] = 106, + [240] = 64, + [241] = 93, [242] = 105, - [243] = 63, - [244] = 62, - [245] = 104, + [243] = 106, + [244] = 64, + [245] = 93, [246] = 105, - [247] = 63, - [248] = 62, - [249] = 104, + [247] = 106, + [248] = 64, + [249] = 93, [250] = 105, - [251] = 63, - [252] = 62, - [253] = 104, + [251] = 106, + [252] = 64, + [253] = 93, [254] = 105, - [255] = 63, - [256] = 62, - [257] = 104, + [255] = 106, + [256] = 64, + [257] = 93, [258] = 105, - [259] = 63, - [260] = 62, - [261] = 104, + [259] = 106, + [260] = 64, + [261] = 93, [262] = 105, - [263] = 63, - [264] = 62, - [265] = 104, + [263] = 106, + [264] = 64, + [265] = 93, [266] = 105, - [267] = 63, - [268] = 62, - [269] = 104, + [267] = 106, + [268] = 64, + [269] = 93, [270] = 105, - [271] = 63, - [272] = 62, - [273] = 104, + [271] = 106, + [272] = 64, + [273] = 93, [274] = 105, - [275] = 63, - [276] = 62, - [277] = 104, + [275] = 106, + [276] = 64, + [277] = 93, [278] = 105, - [279] = 63, - [280] = 62, - [281] = 104, + [279] = 106, + [280] = 64, + [281] = 93, [282] = 105, - [283] = 63, - [284] = 62, - [285] = 104, + [283] = 106, + [284] = 64, + [285] = 93, [286] = 105, - [287] = 63, - [288] = 62, - [289] = 104, + [287] = 106, + [288] = 64, + [289] = 93, [290] = 105, - [291] = 63, - [292] = 62, - [293] = 104, + [291] = 106, + [292] = 64, + [293] = 93, [294] = 105, - [295] = 63, - [296] = 62, - [297] = 104, + [295] = 106, + [296] = 64, + [297] = 93, [298] = 105, - [299] = 63, - [300] = 62, - [301] = 104, + [299] = 106, + [300] = 64, + [301] = 93, [302] = 105, - [303] = 63, - [304] = 62, - [305] = 104, + [303] = 106, + [304] = 64, + [305] = 93, [306] = 105, - [307] = 63, - [308] = 62, - [309] = 104, + [307] = 106, + [308] = 64, + [309] = 93, [310] = 105, - [311] = 63, - [312] = 62, - [313] = 104, + [311] = 106, + [312] = 64, + [313] = 93, [314] = 105, - [315] = 63, - [316] = 62, - [317] = 104, + [315] = 106, + [316] = 64, + [317] = 93, [318] = 105, - [319] = 63, - [320] = 62, - [321] = 104, + [319] = 106, + [320] = 64, + [321] = 93, [322] = 105, - [323] = 63, - [324] = 62, - [325] = 104, + [323] = 106, + [324] = 64, + [325] = 93, [326] = 105, - [327] = 63, - [328] = 62, - [329] = 104, + [327] = 106, + [328] = 64, + [329] = 93, [330] = 105, - [331] = 63, - [332] = 62, - [333] = 104, + [331] = 106, + [332] = 64, + [333] = 93, [334] = 105, - [335] = 63, - [336] = 62, - [337] = 104, + [335] = 106, + [336] = 64, + [337] = 93, [338] = 105, - [339] = 63, - [340] = 62, - [341] = 104, + [339] = 106, + [340] = 64, + [341] = 93, [342] = 105, - [343] = 63, - [344] = 62, - [345] = 104, + [343] = 106, + [344] = 64, + [345] = 93, [346] = 105, - [347] = 63, - [348] = 62, - [349] = 104, + [347] = 106, + [348] = 64, + [349] = 93, [350] = 105, - [351] = 63, - [352] = 62, - [353] = 104, + [351] = 106, + [352] = 64, + [353] = 93, [354] = 105, - [355] = 63, - [356] = 62, - [357] = 104, + [355] = 106, + [356] = 64, + [357] = 93, [358] = 105, - [359] = 63, - [360] = 62, - [361] = 104, + [359] = 106, + [360] = 64, + [361] = 93, [362] = 105, - [363] = 63, - [364] = 62, - [365] = 104, + [363] = 106, + [364] = 64, + [365] = 93, [366] = 105, - [367] = 62, - [368] = 104, - [369] = 105, - [370] = 62, - [371] = 104, - [372] = 105, - [373] = 62, - [374] = 104, - [375] = 105, - [376] = 62, - [377] = 104, + [367] = 106, + [368] = 64, + [369] = 93, + [370] = 105, + [371] = 106, + [372] = 64, + [373] = 93, + [374] = 105, + [375] = 106, + [376] = 64, + [377] = 93, [378] = 105, - [379] = 62, - [380] = 104, - [381] = 105, - [382] = 62, - [383] = 104, - [384] = 105, - [385] = 62, - [386] = 104, - [387] = 105, - [388] = 62, - [389] = 104, + [379] = 106, + [380] = 64, + [381] = 93, + [382] = 105, + [383] = 106, + [384] = 64, + [385] = 93, + [386] = 105, + [387] = 106, + [388] = 64, + [389] = 93, [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, + [391] = 106, + [392] = 64, + [393] = 93, + [394] = 105, + [395] = 106, + [396] = 93, + [397] = 105, + [398] = 106, + [399] = 93, + [400] = 105, + [401] = 106, + [402] = 93, + [403] = 105, + [404] = 106, + [405] = 93, + [406] = 105, + [407] = 106, + [408] = 93, + [409] = 105, + [410] = 106, + [411] = 93, [412] = 105, - [413] = 73, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 416, - [420] = 416, - [421] = 416, - [422] = 418, - [423] = 418, - [424] = 418, - [425] = 418, - [426] = 414, - [427] = 414, - [428] = 414, - [429] = 429, - [430] = 430, - [431] = 430, - [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, + [413] = 106, + [414] = 93, + [415] = 105, + [416] = 106, + [417] = 93, + [418] = 105, + [419] = 106, + [420] = 93, + [421] = 105, + [422] = 106, + [423] = 93, + [424] = 105, + [425] = 106, + [426] = 93, + [427] = 105, + [428] = 106, + [429] = 93, + [430] = 105, + [431] = 106, + [432] = 93, + [433] = 105, + [434] = 106, + [435] = 93, + [436] = 105, + [437] = 106, + [438] = 438, + [439] = 439, + [440] = 105, + [441] = 106, + [442] = 67, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 443, [447] = 447, - [448] = 447, - [449] = 447, - [450] = 447, - [451] = 451, - [452] = 451, - [453] = 451, - [454] = 447, - [455] = 451, - [456] = 447, - [457] = 451, - [458] = 451, + [448] = 448, + [449] = 444, + [450] = 445, + [451] = 445, + [452] = 444, + [453] = 445, + [454] = 444, + [455] = 444, + [456] = 443, + [457] = 443, + [458] = 458, [459] = 459, [460] = 460, [461] = 459, [462] = 460, - [463] = 463, + [463] = 459, [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, + [465] = 460, + [466] = 459, + [467] = 460, + [468] = 459, + [469] = 460, + [470] = 459, + [471] = 460, + [472] = 459, + [473] = 460, + [474] = 460, + [475] = 459, + [476] = 459, + [477] = 460, [478] = 478, [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, + [480] = 478, + [481] = 479, + [482] = 479, + [483] = 478, + [484] = 478, + [485] = 478, + [486] = 479, + [487] = 479, + [488] = 478, + [489] = 479, [490] = 490, [491] = 491, - [492] = 466, - [493] = 463, - [494] = 464, - [495] = 468, - [496] = 467, - [497] = 465, - [498] = 473, - [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, + [492] = 491, + [493] = 490, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 498, + [522] = 494, [523] = 523, - [524] = 524, - [525] = 523, - [526] = 524, + [524] = 499, + [525] = 495, + [526] = 497, [527] = 527, - [528] = 524, - [529] = 529, - [530] = 523, - [531] = 531, - [532] = 524, - [533] = 523, - [534] = 534, - [535] = 529, - [536] = 460, - [537] = 459, - [538] = 524, - [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, - [560] = 460, - [561] = 527, - [562] = 531, - [563] = 534, - [564] = 459, - [565] = 534, - [566] = 539, - [567] = 459, - [568] = 541, + [528] = 496, + [529] = 518, + [530] = 511, + [531] = 510, + [532] = 516, + [533] = 513, + [534] = 512, + [535] = 517, + [536] = 504, + [537] = 501, + [538] = 503, + [539] = 500, + [540] = 502, + [541] = 506, + [542] = 505, + [543] = 515, + [544] = 514, + [545] = 507, + [546] = 508, + [547] = 509, + [548] = 520, + [549] = 519, + [550] = 523, + [551] = 527, + [552] = 552, + [553] = 552, + [554] = 554, + [555] = 555, + [556] = 555, + [557] = 554, + [558] = 554, + [559] = 559, + [560] = 554, + [561] = 561, + [562] = 555, + [563] = 563, + [564] = 554, + [565] = 555, + [566] = 555, + [567] = 490, + [568] = 561, [569] = 569, - [570] = 570, - [571] = 571, - [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, + [570] = 559, + [571] = 563, + [572] = 491, + [573] = 573, + [574] = 555, + [575] = 554, + [576] = 576, + [577] = 555, + [578] = 554, + [579] = 563, + [580] = 561, + [581] = 563, + [582] = 573, + [583] = 559, + [584] = 569, + [585] = 561, + [586] = 576, + [587] = 559, + [588] = 563, + [589] = 491, + [590] = 490, + [591] = 561, + [592] = 559, + [593] = 491, + [594] = 490, + [595] = 490, + [596] = 576, + [597] = 597, [598] = 598, [599] = 599, - [600] = 534, - [601] = 539, - [602] = 460, - [603] = 541, - [604] = 459, - [605] = 523, - [606] = 599, - [607] = 534, + [600] = 576, + [601] = 490, + [602] = 491, + [603] = 491, + [604] = 491, + [605] = 490, + [606] = 573, + [607] = 569, [608] = 608, [609] = 569, - [610] = 608, - [611] = 588, - [612] = 586, - [613] = 587, - [614] = 591, - [615] = 571, - [616] = 572, - [617] = 569, - [618] = 608, - [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, + [610] = 563, + [611] = 573, + [612] = 563, + [613] = 576, + [614] = 559, + [615] = 561, + [616] = 490, + [617] = 561, + [618] = 573, + [619] = 569, + [620] = 491, + [621] = 576, + [622] = 622, + [623] = 491, + [624] = 490, + [625] = 573, + [626] = 598, + [627] = 569, + [628] = 628, + [629] = 629, + [630] = 622, + [631] = 599, + [632] = 491, [633] = 569, - [634] = 608, - [635] = 571, - [636] = 598, - [637] = 608, - [638] = 572, - [639] = 524, - [640] = 586, - [641] = 587, - [642] = 460, - [643] = 531, - [644] = 598, - [645] = 569, - [646] = 571, - [647] = 572, - [648] = 588, - [649] = 586, - [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, - [713] = 459, - [714] = 571, - [715] = 460, - [716] = 588, - [717] = 459, - [718] = 569, - [719] = 459, - [720] = 571, - [721] = 591, - [722] = 571, - [723] = 572, - [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, - [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, - [772] = 460, - [773] = 459, - [774] = 459, - [775] = 460, - [776] = 460, - [777] = 459, - [778] = 778, - [779] = 539, - [780] = 460, - [781] = 781, - [782] = 782, - [783] = 783, - [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, - [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, + [634] = 490, + [635] = 635, + [636] = 636, + [637] = 597, + [638] = 490, + [639] = 639, + [640] = 491, + [641] = 641, + [642] = 598, + [643] = 599, + [644] = 555, + [645] = 490, + [646] = 597, + [647] = 635, + [648] = 573, + [649] = 491, + [650] = 554, + [651] = 651, + [652] = 636, + [653] = 651, + [654] = 628, + [655] = 597, + [656] = 597, + [657] = 554, + [658] = 597, + [659] = 598, + [660] = 599, + [661] = 597, + [662] = 555, + [663] = 651, + [664] = 598, + [665] = 598, + [666] = 639, + [667] = 599, + [668] = 491, + [669] = 490, + [670] = 491, + [671] = 651, + [672] = 491, + [673] = 490, + [674] = 641, + [675] = 629, + [676] = 651, + [677] = 651, + [678] = 599, + [679] = 597, + [680] = 490, + [681] = 651, + [682] = 598, + [683] = 651, + [684] = 599, + [685] = 598, + [686] = 651, + [687] = 636, + [688] = 628, + [689] = 599, + [690] = 561, + [691] = 641, + [692] = 491, + [693] = 598, + [694] = 490, + [695] = 629, + [696] = 597, + [697] = 491, + [698] = 490, + [699] = 491, + [700] = 490, + [701] = 599, + [702] = 629, + [703] = 491, + [704] = 490, + [705] = 597, + [706] = 598, + [707] = 599, + [708] = 597, + [709] = 636, + [710] = 636, + [711] = 599, + [712] = 636, + [713] = 628, + [714] = 598, + [715] = 599, + [716] = 639, + [717] = 628, + [718] = 636, + [719] = 628, + [720] = 641, + [721] = 629, + [722] = 628, + [723] = 597, + [724] = 598, + [725] = 563, + [726] = 597, + [727] = 559, + [728] = 641, + [729] = 598, + [730] = 490, + [731] = 599, + [732] = 491, + [733] = 639, + [734] = 636, + [735] = 639, + [736] = 628, + [737] = 599, + [738] = 491, + [739] = 739, + [740] = 491, + [741] = 490, + [742] = 597, + [743] = 598, + [744] = 490, + [745] = 491, + [746] = 490, + [747] = 491, + [748] = 491, + [749] = 490, + [750] = 739, + [751] = 751, + [752] = 597, + [753] = 739, + [754] = 751, + [755] = 491, + [756] = 622, + [757] = 490, + [758] = 598, + [759] = 636, + [760] = 628, + [761] = 635, + [762] = 599, + [763] = 491, + [764] = 751, + [765] = 608, + [766] = 490, + [767] = 739, + [768] = 751, + [769] = 597, + [770] = 598, + [771] = 636, + [772] = 628, + [773] = 599, + [774] = 491, + [775] = 490, + [776] = 490, + [777] = 491, + [778] = 563, + [779] = 608, + [780] = 559, + [781] = 490, + [782] = 561, + [783] = 491, + [784] = 490, + [785] = 739, + [786] = 751, + [787] = 639, + [788] = 629, + [789] = 597, + [790] = 641, + [791] = 598, + [792] = 636, + [793] = 628, + [794] = 569, + [795] = 597, + [796] = 576, + [797] = 598, + [798] = 599, + [799] = 636, + [800] = 628, + [801] = 639, + [802] = 636, + [803] = 628, + [804] = 573, + [805] = 629, + [806] = 491, + [807] = 490, + [808] = 573, + [809] = 599, + [810] = 636, + [811] = 491, + [812] = 490, + [813] = 491, + [814] = 490, + [815] = 491, + [816] = 628, + [817] = 569, + [818] = 490, + [819] = 491, + [820] = 490, + [821] = 491, + [822] = 491, + [823] = 490, + [824] = 490, + [825] = 576, + [826] = 597, + [827] = 598, + [828] = 490, + [829] = 491, + [830] = 635, + [831] = 636, + [832] = 628, + [833] = 490, + [834] = 490, + [835] = 636, + [836] = 628, + [837] = 491, + [838] = 636, + [839] = 490, + [840] = 636, + [841] = 628, + [842] = 628, + [843] = 491, + [844] = 490, + [845] = 491, + [846] = 490, + [847] = 491, + [848] = 848, + [849] = 622, + [850] = 597, [851] = 598, - [852] = 478, - [853] = 486, - [854] = 569, - [855] = 793, - [856] = 856, - [857] = 470, - [858] = 487, - [859] = 485, - [860] = 800, - [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, - [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, - [972] = 460, - [973] = 459, - [974] = 880, - [975] = 586, - [976] = 587, - [977] = 484, - [978] = 472, - [979] = 459, - [980] = 460, - [981] = 459, - [982] = 463, - [983] = 470, - [984] = 491, - [985] = 466, - [986] = 463, - [987] = 464, - [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, - [1057] = 460, - [1058] = 459, - [1059] = 460, - [1060] = 1047, - [1061] = 459, - [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, - [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, - [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, - [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, - [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, - [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, - [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, - [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, - [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, - [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, - [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, - [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, - [1753] = 466, - [1754] = 1754, - [1755] = 473, - [1756] = 1411, - [1757] = 463, - [1758] = 477, - [1759] = 464, - [1760] = 1020, - [1761] = 1021, - [1762] = 491, - [1763] = 1673, - [1764] = 487, - [1765] = 1150, - [1766] = 466, - [1767] = 463, - [1768] = 469, - [1769] = 1754, - [1770] = 1708, - [1771] = 1427, - [1772] = 471, - [1773] = 479, - [1774] = 476, - [1775] = 479, - [1776] = 491, - [1777] = 470, - [1778] = 466, - [1779] = 463, - [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, - [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, - [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, - [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, - [2595] = 2595, - [2596] = 2596, - [2597] = 482, - [2598] = 483, - [2599] = 484, - [2600] = 475, - [2601] = 477, - [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, - [2629] = 2629, - [2630] = 1320, - [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, + [852] = 491, + [853] = 491, + [854] = 854, + [855] = 598, + [856] = 599, + [857] = 636, + [858] = 628, + [859] = 495, + [860] = 490, + [861] = 491, + [862] = 597, + [863] = 490, + [864] = 491, + [865] = 490, + [866] = 636, + [867] = 490, + [868] = 598, + [869] = 599, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 491, + [874] = 628, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 497, + [879] = 597, + [880] = 496, + [881] = 494, + [882] = 494, + [883] = 495, + [884] = 884, + [885] = 598, + [886] = 599, + [887] = 870, + [888] = 598, + [889] = 504, + [890] = 501, + [891] = 597, + [892] = 518, + [893] = 500, + [894] = 636, + [895] = 506, + [896] = 503, + [897] = 502, + [898] = 898, + [899] = 899, + [900] = 872, + [901] = 599, + [902] = 505, + [903] = 508, + [904] = 497, + [905] = 496, + [906] = 599, + [907] = 876, + [908] = 877, + [909] = 597, + [910] = 875, + [911] = 515, + [912] = 514, + [913] = 495, + [914] = 629, + [915] = 497, + [916] = 507, + [917] = 496, + [918] = 511, + [919] = 494, + [920] = 509, + [921] = 510, + [922] = 641, + [923] = 923, + [924] = 517, + [925] = 925, + [926] = 516, + [927] = 513, + [928] = 512, + [929] = 628, + [930] = 930, + [931] = 931, + [932] = 854, + [933] = 597, + [934] = 934, + [935] = 639, + [936] = 636, + [937] = 598, + [938] = 628, + [939] = 871, + [940] = 870, + [941] = 872, + [942] = 491, + [943] = 490, + [944] = 944, + [945] = 945, + [946] = 497, + [947] = 496, + [948] = 925, + [949] = 494, + [950] = 876, + [951] = 519, + [952] = 504, + [953] = 501, + [954] = 518, + [955] = 500, + [956] = 506, + [957] = 503, + [958] = 491, + [959] = 502, + [960] = 490, + [961] = 854, + [962] = 504, + [963] = 501, + [964] = 518, + [965] = 500, + [966] = 506, + [967] = 505, + [968] = 508, + [969] = 503, + [970] = 944, + [971] = 502, + [972] = 497, + [973] = 515, + [974] = 514, + [975] = 496, + [976] = 494, + [977] = 505, + [978] = 508, + [979] = 491, + [980] = 490, + [981] = 507, + [982] = 511, + [983] = 509, + [984] = 510, + [985] = 517, + [986] = 495, + [987] = 515, + [988] = 514, + [989] = 516, + [990] = 513, + [991] = 512, + [992] = 507, + [993] = 511, + [994] = 509, + [995] = 510, + [996] = 517, + [997] = 516, + [998] = 513, + [999] = 512, + [1000] = 930, + [1001] = 931, + [1002] = 875, + [1003] = 1003, + [1004] = 496, + [1005] = 1005, + [1006] = 944, + [1007] = 934, + [1008] = 884, + [1009] = 871, + [1010] = 870, + [1011] = 491, + [1012] = 490, + [1013] = 495, + [1014] = 1003, + [1015] = 876, + [1016] = 877, + [1017] = 1005, + [1018] = 944, + [1019] = 1003, + [1020] = 1005, + [1021] = 497, + [1022] = 872, + [1023] = 1003, + [1024] = 1003, + [1025] = 1005, + [1026] = 1003, + [1027] = 1005, + [1028] = 854, + [1029] = 1003, + [1030] = 1005, + [1031] = 1003, + [1032] = 1005, + [1033] = 496, + [1034] = 1003, + [1035] = 1005, + [1036] = 944, + [1037] = 597, + [1038] = 598, + [1039] = 599, + [1040] = 597, + [1041] = 598, + [1042] = 494, + [1043] = 491, + [1044] = 490, + [1045] = 636, + [1046] = 628, + [1047] = 495, + [1048] = 599, + [1049] = 875, + [1050] = 636, + [1051] = 628, + [1052] = 494, + [1053] = 497, + [1054] = 597, + [1055] = 598, + [1056] = 599, + [1057] = 639, + [1058] = 870, + [1059] = 944, + [1060] = 872, + [1061] = 1005, + [1062] = 629, + [1063] = 877, + [1064] = 876, + [1065] = 877, + [1066] = 871, + [1067] = 641, + [1068] = 944, + [1069] = 944, + [1070] = 944, + [1071] = 636, + [1072] = 628, + [1073] = 495, + [1074] = 898, + [1075] = 899, + [1076] = 875, + [1077] = 923, + [1078] = 1078, + [1079] = 934, + [1080] = 505, + [1081] = 884, + [1082] = 504, + [1083] = 508, + [1084] = 519, + [1085] = 511, + [1086] = 1086, + [1087] = 509, + [1088] = 501, + [1089] = 510, + [1090] = 516, + [1091] = 513, + [1092] = 512, + [1093] = 1093, + [1094] = 1094, + [1095] = 497, + [1096] = 496, + [1097] = 506, + [1098] = 517, + [1099] = 494, + [1100] = 945, + [1101] = 491, + [1102] = 490, + [1103] = 930, + [1104] = 1086, + [1105] = 503, + [1106] = 872, + [1107] = 497, + [1108] = 496, + [1109] = 527, + [1110] = 931, + [1111] = 871, + [1112] = 518, + [1113] = 898, + [1114] = 899, + [1115] = 504, + [1116] = 501, + [1117] = 494, + [1118] = 518, + [1119] = 519, + [1120] = 500, + [1121] = 491, + [1122] = 923, + [1123] = 925, + [1124] = 490, + [1125] = 506, + [1126] = 500, + [1127] = 1127, + [1128] = 503, + [1129] = 518, + [1130] = 502, + [1131] = 930, + [1132] = 1132, + [1133] = 884, + [1134] = 1134, + [1135] = 505, + [1136] = 875, + [1137] = 497, + [1138] = 496, + [1139] = 491, + [1140] = 490, + [1141] = 931, + [1142] = 930, + [1143] = 898, + [1144] = 899, + [1145] = 502, + [1146] = 491, + [1147] = 490, + [1148] = 923, + [1149] = 925, + [1150] = 931, + [1151] = 495, + [1152] = 497, + [1153] = 854, + [1154] = 898, + [1155] = 899, + [1156] = 496, + [1157] = 923, + [1158] = 925, + [1159] = 494, + [1160] = 504, + [1161] = 501, + [1162] = 636, + [1163] = 628, + [1164] = 1164, + [1165] = 495, + [1166] = 1166, + [1167] = 1167, + [1168] = 491, + [1169] = 490, + [1170] = 491, + [1171] = 505, + [1172] = 508, + [1173] = 1166, + [1174] = 1167, + [1175] = 514, + [1176] = 503, + [1177] = 515, + [1178] = 1086, + [1179] = 515, + [1180] = 495, + [1181] = 500, + [1182] = 497, + [1183] = 490, + [1184] = 496, + [1185] = 934, + [1186] = 494, + [1187] = 884, + [1188] = 495, + [1189] = 491, + [1190] = 504, + [1191] = 501, + [1192] = 490, + [1193] = 1193, + [1194] = 502, + [1195] = 597, + [1196] = 898, + [1197] = 899, + [1198] = 598, + [1199] = 923, + [1200] = 925, + [1201] = 599, + [1202] = 514, + [1203] = 506, + [1204] = 636, + [1205] = 495, + [1206] = 628, + [1207] = 497, + [1208] = 491, + [1209] = 496, + [1210] = 518, + [1211] = 494, + [1212] = 515, + [1213] = 514, + [1214] = 505, + [1215] = 1215, + [1216] = 1216, + [1217] = 490, + [1218] = 506, + [1219] = 491, + [1220] = 507, + [1221] = 507, + [1222] = 515, + [1223] = 514, + [1224] = 507, + [1225] = 508, + [1226] = 511, + [1227] = 508, + [1228] = 511, + [1229] = 507, + [1230] = 503, + [1231] = 1231, + [1232] = 511, + [1233] = 509, + [1234] = 509, + [1235] = 870, + [1236] = 876, + [1237] = 877, + [1238] = 510, + [1239] = 1239, + [1240] = 510, + [1241] = 516, + [1242] = 513, + [1243] = 512, + [1244] = 509, + [1245] = 875, + [1246] = 517, + [1247] = 495, + [1248] = 872, + [1249] = 517, + [1250] = 502, + [1251] = 510, + [1252] = 516, + [1253] = 491, + [1254] = 513, + [1255] = 490, + [1256] = 636, + [1257] = 628, + [1258] = 490, + [1259] = 516, + [1260] = 513, + [1261] = 512, + [1262] = 500, + [1263] = 512, + [1264] = 934, + [1265] = 877, + [1266] = 517, + [1267] = 1267, + [1268] = 519, + [1269] = 519, + [1270] = 506, + [1271] = 1271, + [1272] = 513, + [1273] = 503, + [1274] = 512, + [1275] = 502, + [1276] = 497, + [1277] = 1164, + [1278] = 496, + [1279] = 494, + [1280] = 495, + [1281] = 505, + [1282] = 508, + [1283] = 1134, + [1284] = 1231, + [1285] = 505, + [1286] = 491, + [1287] = 490, + [1288] = 508, + [1289] = 1239, + [1290] = 491, + [1291] = 490, + [1292] = 945, + [1293] = 527, + [1294] = 491, + [1295] = 490, + [1296] = 491, + [1297] = 1297, + [1298] = 497, + [1299] = 515, + [1300] = 514, + [1301] = 496, + [1302] = 490, + [1303] = 494, + [1304] = 1132, + [1305] = 1305, + [1306] = 1306, + [1307] = 495, + [1308] = 497, + [1309] = 496, + [1310] = 497, + [1311] = 1305, + [1312] = 515, + [1313] = 514, + [1314] = 496, + [1315] = 1305, + [1316] = 1305, + [1317] = 519, + [1318] = 494, + [1319] = 1305, + [1320] = 518, + [1321] = 945, + [1322] = 504, + [1323] = 501, + [1324] = 500, + [1325] = 519, + [1326] = 506, + [1327] = 503, + [1328] = 502, + [1329] = 505, + [1330] = 507, + [1331] = 508, + [1332] = 504, + [1333] = 509, + [1334] = 1093, + [1335] = 517, + [1336] = 1094, + [1337] = 515, + [1338] = 514, + [1339] = 511, + [1340] = 501, + [1341] = 510, + [1342] = 510, + [1343] = 516, + [1344] = 516, + [1345] = 513, + [1346] = 512, + [1347] = 518, + [1348] = 518, + [1349] = 1166, + [1350] = 1167, + [1351] = 504, + [1352] = 501, + [1353] = 500, + [1354] = 506, + [1355] = 1166, + [1356] = 1167, + [1357] = 507, + [1358] = 503, + [1359] = 1305, + [1360] = 511, + [1361] = 1078, + [1362] = 1267, + [1363] = 511, + [1364] = 636, + [1365] = 628, + [1366] = 527, + [1367] = 1367, + [1368] = 509, + [1369] = 510, + [1370] = 504, + [1371] = 501, + [1372] = 517, + [1373] = 505, + [1374] = 500, + [1375] = 495, + [1376] = 518, + [1377] = 507, + [1378] = 507, + [1379] = 508, + [1380] = 504, + [1381] = 501, + [1382] = 511, + [1383] = 506, + [1384] = 509, + [1385] = 500, + [1386] = 517, + [1387] = 506, + [1388] = 509, + [1389] = 510, + [1390] = 1390, + [1391] = 517, + [1392] = 495, + [1393] = 1393, + [1394] = 515, + [1395] = 514, + [1396] = 511, + [1397] = 1397, + [1398] = 503, + [1399] = 510, + [1400] = 502, + [1401] = 516, + [1402] = 513, + [1403] = 512, + [1404] = 516, + [1405] = 1215, + [1406] = 1216, + [1407] = 898, + [1408] = 899, + [1409] = 513, + [1410] = 512, + [1411] = 497, + [1412] = 923, + [1413] = 518, + [1414] = 925, + [1415] = 496, + [1416] = 930, + [1417] = 931, + [1418] = 516, + [1419] = 934, + [1420] = 884, + [1421] = 513, + [1422] = 945, + [1423] = 512, + [1424] = 505, + [1425] = 1193, + [1426] = 1215, + [1427] = 1216, + [1428] = 494, + [1429] = 898, + [1430] = 899, + [1431] = 923, + [1432] = 925, + [1433] = 495, + [1434] = 507, + [1435] = 508, + [1436] = 503, + [1437] = 509, + [1438] = 500, + [1439] = 502, + [1440] = 517, + [1441] = 515, + [1442] = 514, + [1443] = 502, + [1444] = 509, + [1445] = 500, + [1446] = 1239, + [1447] = 1164, + [1448] = 518, + [1449] = 1078, + [1450] = 516, + [1451] = 898, + [1452] = 513, + [1453] = 899, + [1454] = 512, + [1455] = 1078, + [1456] = 504, + [1457] = 495, + [1458] = 501, + [1459] = 497, + [1460] = 506, + [1461] = 496, + [1462] = 496, + [1463] = 497, + [1464] = 1166, + [1465] = 1167, + [1466] = 494, + [1467] = 1094, + [1468] = 1167, + [1469] = 1215, + [1470] = 507, + [1471] = 527, + [1472] = 511, + [1473] = 1397, + [1474] = 510, + [1475] = 1231, + [1476] = 518, + [1477] = 496, + [1478] = 504, + [1479] = 1239, + [1480] = 1166, + [1481] = 1167, + [1482] = 517, + [1483] = 501, + [1484] = 507, + [1485] = 511, + [1486] = 1164, + [1487] = 500, + [1488] = 509, + [1489] = 506, + [1490] = 510, + [1491] = 497, + [1492] = 519, + [1493] = 515, + [1494] = 514, + [1495] = 517, + [1496] = 494, + [1497] = 518, + [1498] = 527, + [1499] = 1267, + [1500] = 1267, + [1501] = 923, + [1502] = 925, + [1503] = 1231, + [1504] = 1166, + [1505] = 1239, + [1506] = 1167, + [1507] = 496, + [1508] = 495, + [1509] = 497, + [1510] = 494, + [1511] = 516, + [1512] = 496, + [1513] = 513, + [1514] = 503, + [1515] = 500, + [1516] = 512, + [1517] = 494, + [1518] = 502, + [1519] = 503, + [1520] = 506, + [1521] = 502, + [1522] = 495, + [1523] = 505, + [1524] = 497, + [1525] = 923, + [1526] = 496, + [1527] = 925, + [1528] = 516, + [1529] = 1529, + [1530] = 494, + [1531] = 1166, + [1532] = 513, + [1533] = 1167, + [1534] = 1078, + [1535] = 512, + [1536] = 508, + [1537] = 1529, + [1538] = 898, + [1539] = 503, + [1540] = 494, + [1541] = 519, + [1542] = 502, + [1543] = 1367, + [1544] = 1134, + [1545] = 495, + [1546] = 497, + [1547] = 1547, + [1548] = 496, + [1549] = 1549, + [1550] = 1390, + [1551] = 494, + [1552] = 495, + [1553] = 497, + [1554] = 597, + [1555] = 527, + [1556] = 1306, + [1557] = 598, + [1558] = 515, + [1559] = 494, + [1560] = 599, + [1561] = 514, + [1562] = 519, + [1563] = 504, + [1564] = 1134, + [1565] = 501, + [1566] = 1134, + [1567] = 507, + [1568] = 519, + [1569] = 511, + [1570] = 518, + [1571] = 509, + [1572] = 1215, + [1573] = 519, + [1574] = 1216, + [1575] = 1193, + [1576] = 500, + [1577] = 1271, + [1578] = 1216, + [1579] = 1093, + [1580] = 1580, + [1581] = 1094, + [1582] = 510, + [1583] = 1231, + [1584] = 506, + [1585] = 497, + [1586] = 515, + [1587] = 514, + [1588] = 1239, + [1589] = 898, + [1590] = 1164, + [1591] = 507, + [1592] = 496, + [1593] = 511, + [1594] = 1215, + [1595] = 1216, + [1596] = 494, + [1597] = 1093, + [1598] = 517, + [1599] = 495, + [1600] = 509, + [1601] = 510, + [1602] = 1132, + [1603] = 899, + [1604] = 899, + [1605] = 527, + [1606] = 517, + [1607] = 503, + [1608] = 1267, + [1609] = 495, + [1610] = 505, + [1611] = 508, + [1612] = 504, + [1613] = 923, + [1614] = 1132, + [1615] = 501, + [1616] = 1616, + [1617] = 1132, + [1618] = 495, + [1619] = 515, + [1620] = 502, + [1621] = 925, + [1622] = 1166, + [1623] = 495, + [1624] = 1231, + [1625] = 514, + [1626] = 505, + [1627] = 1215, + [1628] = 1216, + [1629] = 497, + [1630] = 1215, + [1631] = 1216, + [1632] = 505, + [1633] = 508, + [1634] = 1166, + [1635] = 1093, + [1636] = 508, + [1637] = 516, + [1638] = 513, + [1639] = 512, + [1640] = 1297, + [1641] = 1393, + [1642] = 1167, + [1643] = 1094, + [1644] = 496, + [1645] = 503, + [1646] = 1646, + [1647] = 516, + [1648] = 502, + [1649] = 513, + [1650] = 1650, + [1651] = 512, + [1652] = 513, + [1653] = 1297, + [1654] = 506, + [1655] = 500, + [1656] = 512, + [1657] = 501, + [1658] = 527, + [1659] = 1659, + [1660] = 508, + [1661] = 495, + [1662] = 1393, + [1663] = 497, + [1664] = 496, + [1665] = 1616, + [1666] = 1271, + [1667] = 506, + [1668] = 506, + [1669] = 497, + [1670] = 494, + [1671] = 497, + [1672] = 496, + [1673] = 505, + [1674] = 515, + [1675] = 527, + [1676] = 514, + [1677] = 497, + [1678] = 518, + [1679] = 507, + [1680] = 501, + [1681] = 508, + [1682] = 1306, + [1683] = 496, + [1684] = 508, + [1685] = 507, + [1686] = 1529, + [1687] = 504, + [1688] = 501, + [1689] = 1397, + [1690] = 511, + [1691] = 509, + [1692] = 509, + [1693] = 500, + [1694] = 510, + [1695] = 517, + [1696] = 517, + [1697] = 496, + [1698] = 506, + [1699] = 636, + [1700] = 511, + [1701] = 505, + [1702] = 628, + [1703] = 495, + [1704] = 505, + [1705] = 518, + [1706] = 515, + [1707] = 514, + [1708] = 518, + [1709] = 507, + [1710] = 515, + [1711] = 508, + [1712] = 511, + [1713] = 514, + [1714] = 497, + [1715] = 1529, + [1716] = 504, + [1717] = 501, + [1718] = 507, + [1719] = 505, + [1720] = 495, + [1721] = 509, + [1722] = 510, + [1723] = 500, + [1724] = 516, + [1725] = 502, + [1726] = 517, + [1727] = 517, + [1728] = 506, + [1729] = 513, + [1730] = 495, + [1731] = 512, + [1732] = 497, + [1733] = 503, + [1734] = 500, + [1735] = 494, + [1736] = 1393, + [1737] = 515, + [1738] = 514, + [1739] = 496, + [1740] = 511, + [1741] = 503, + [1742] = 507, + [1743] = 527, + [1744] = 1397, + [1745] = 494, + [1746] = 1215, + [1747] = 503, + [1748] = 510, + [1749] = 516, + [1750] = 513, + [1751] = 512, + [1752] = 1216, + [1753] = 502, + [1754] = 502, + [1755] = 1271, + [1756] = 1397, + [1757] = 496, + [1758] = 1393, + [1759] = 505, + [1760] = 491, + [1761] = 1547, + [1762] = 503, + [1763] = 495, + [1764] = 1764, + [1765] = 502, + [1766] = 527, + [1767] = 515, + [1768] = 490, + [1769] = 1549, + [1770] = 1271, + [1771] = 494, + [1772] = 511, + [1773] = 497, + [1774] = 509, + [1775] = 516, + [1776] = 513, + [1777] = 512, + [1778] = 527, + [1779] = 519, + [1780] = 504, + [1781] = 496, + [1782] = 510, + [1783] = 502, + [1784] = 505, + [1785] = 501, + [1786] = 495, + [1787] = 515, + [1788] = 518, + [1789] = 514, + [1790] = 507, + [1791] = 504, + [1792] = 516, + [1793] = 496, + [1794] = 506, + [1795] = 1795, + [1796] = 507, + [1797] = 508, + [1798] = 1239, + [1799] = 508, + [1800] = 511, + [1801] = 504, + [1802] = 513, + [1803] = 501, + [1804] = 1764, + [1805] = 1367, + [1806] = 509, + [1807] = 508, + [1808] = 501, + [1809] = 508, + [1810] = 517, + [1811] = 500, + [1812] = 517, + [1813] = 505, + [1814] = 519, + [1815] = 497, + [1816] = 1397, + [1817] = 504, + [1818] = 515, + [1819] = 514, + [1820] = 507, + [1821] = 508, + [1822] = 511, + [1823] = 501, + [1824] = 506, + [1825] = 509, + [1826] = 510, + [1827] = 505, + [1828] = 504, + [1829] = 514, + [1830] = 1297, + [1831] = 517, + [1832] = 503, + [1833] = 1390, + [1834] = 1215, + [1835] = 1216, + [1836] = 494, + [1837] = 1367, + [1838] = 1764, + [1839] = 1580, + [1840] = 519, + [1841] = 1367, + [1842] = 496, + [1843] = 515, + [1844] = 514, + [1845] = 494, + [1846] = 505, + [1847] = 511, + [1848] = 518, + [1849] = 509, + [1850] = 518, + [1851] = 1851, + [1852] = 510, + [1853] = 1795, + [1854] = 518, + [1855] = 1215, + [1856] = 1216, + [1857] = 1857, + [1858] = 1093, + [1859] = 1094, + [1860] = 516, + [1861] = 497, + [1862] = 1078, + [1863] = 898, + [1864] = 899, + [1865] = 519, + [1866] = 1306, + [1867] = 513, + [1868] = 1215, + [1869] = 510, + [1870] = 516, + [1871] = 513, + [1872] = 1267, + [1873] = 923, + [1874] = 925, + [1875] = 1166, + [1876] = 1167, + [1877] = 512, + [1878] = 504, + [1879] = 501, + [1880] = 1216, + [1881] = 512, + [1882] = 1297, + [1883] = 1883, + [1884] = 503, + [1885] = 1306, + [1886] = 500, + [1887] = 500, + [1888] = 1764, + [1889] = 1646, + [1890] = 1764, + [1891] = 1166, + [1892] = 1167, + [1893] = 1393, + [1894] = 502, + [1895] = 517, + [1896] = 1650, + [1897] = 1897, + [1898] = 506, + [1899] = 495, + [1900] = 495, + [1901] = 518, + [1902] = 1580, + [1903] = 1390, + [1904] = 870, + [1905] = 495, + [1906] = 876, + [1907] = 877, + [1908] = 506, + [1909] = 1390, + [1910] = 518, + [1911] = 497, + [1912] = 509, + [1913] = 500, + [1914] = 1914, + [1915] = 516, + [1916] = 513, + [1917] = 512, + [1918] = 515, + [1919] = 496, + [1920] = 875, + [1921] = 510, + [1922] = 507, + [1923] = 495, + [1924] = 872, + [1925] = 1925, + [1926] = 511, + [1927] = 503, + [1928] = 509, + [1929] = 510, + [1930] = 1930, + [1931] = 1215, + [1932] = 1216, + [1933] = 502, + [1934] = 494, + [1935] = 1764, + [1936] = 503, + [1937] = 1231, + [1938] = 502, + [1939] = 504, + [1940] = 500, + [1941] = 514, + [1942] = 517, + [1943] = 516, + [1944] = 512, + [1945] = 495, + [1946] = 1529, + [1947] = 1231, + [1948] = 495, + [1949] = 518, + [1950] = 504, + [1951] = 501, + [1952] = 500, + [1953] = 506, + [1954] = 503, + [1955] = 502, + [1956] = 1956, + [1957] = 505, + [1958] = 497, + [1959] = 507, + [1960] = 496, + [1961] = 508, + [1962] = 494, + [1963] = 509, + [1964] = 517, + [1965] = 515, + [1966] = 514, + [1967] = 518, + [1968] = 1968, + [1969] = 511, + [1970] = 504, + [1971] = 501, + [1972] = 510, + [1973] = 500, + [1974] = 506, + [1975] = 503, + [1976] = 516, + [1977] = 513, + [1978] = 512, + [1979] = 502, + [1980] = 497, + [1981] = 496, + [1982] = 494, + [1983] = 518, + [1984] = 504, + [1985] = 501, + [1986] = 500, + [1987] = 506, + [1988] = 495, + [1989] = 503, + [1990] = 502, + [1991] = 505, + [1992] = 507, + [1993] = 508, + [1994] = 509, + [1995] = 517, + [1996] = 515, + [1997] = 514, + [1998] = 511, + [1999] = 510, + [2000] = 516, + [2001] = 513, + [2002] = 512, + [2003] = 505, + [2004] = 507, + [2005] = 508, + [2006] = 509, + [2007] = 517, + [2008] = 515, + [2009] = 514, + [2010] = 511, + [2011] = 510, + [2012] = 516, + [2013] = 513, + [2014] = 512, + [2015] = 519, + [2016] = 1549, + [2017] = 1239, + [2018] = 1215, + [2019] = 1216, + [2020] = 1529, + [2021] = 1925, + [2022] = 872, + [2023] = 1956, + [2024] = 527, + [2025] = 1659, + [2026] = 519, + [2027] = 1851, + [2028] = 1857, + [2029] = 527, + [2030] = 519, + [2031] = 1529, + [2032] = 504, + [2033] = 501, + [2034] = 518, + [2035] = 518, + [2036] = 500, + [2037] = 506, + [2038] = 1529, + [2039] = 504, + [2040] = 501, + [2041] = 527, + [2042] = 503, + [2043] = 503, + [2044] = 500, + [2045] = 502, + [2046] = 502, + [2047] = 506, + [2048] = 505, + [2049] = 527, + [2050] = 1215, + [2051] = 1216, + [2052] = 515, + [2053] = 514, + [2054] = 507, + [2055] = 519, + [2056] = 508, + [2057] = 511, + [2058] = 1580, + [2059] = 509, + [2060] = 510, + [2061] = 516, + [2062] = 513, + [2063] = 512, + [2064] = 517, + [2065] = 505, + [2066] = 508, + [2067] = 519, + [2068] = 1616, + [2069] = 515, + [2070] = 514, + [2071] = 1547, + [2072] = 1231, + [2073] = 1215, + [2074] = 1216, + [2075] = 519, + [2076] = 507, + [2077] = 511, + [2078] = 509, + [2079] = 510, + [2080] = 517, + [2081] = 1547, + [2082] = 516, + [2083] = 513, + [2084] = 512, + [2085] = 1549, + [2086] = 1239, + [2087] = 1956, + [2088] = 519, + [2089] = 1529, + [2090] = 497, + [2091] = 496, + [2092] = 495, + [2093] = 518, + [2094] = 504, + [2095] = 501, + [2096] = 500, + [2097] = 506, + [2098] = 1956, + [2099] = 2099, + [2100] = 1239, + [2101] = 1795, + [2102] = 1616, + [2103] = 503, + [2104] = 502, + [2105] = 1215, + [2106] = 1216, + [2107] = 2099, + [2108] = 497, + [2109] = 496, + [2110] = 1529, + [2111] = 2099, + [2112] = 519, + [2113] = 497, + [2114] = 496, + [2115] = 1795, + [2116] = 2099, + [2117] = 2099, + [2118] = 1646, + [2119] = 2099, + [2120] = 1650, + [2121] = 2099, + [2122] = 2099, + [2123] = 1914, + [2124] = 519, + [2125] = 1930, + [2126] = 1646, + [2127] = 1650, + [2128] = 505, + [2129] = 518, + [2130] = 507, + [2131] = 508, + [2132] = 504, + [2133] = 501, + [2134] = 870, + [2135] = 1580, + [2136] = 509, + [2137] = 876, + [2138] = 500, + [2139] = 877, + [2140] = 517, + [2141] = 506, + [2142] = 515, + [2143] = 514, + [2144] = 597, + [2145] = 511, + [2146] = 503, + [2147] = 510, + [2148] = 502, + [2149] = 598, + [2150] = 516, + [2151] = 513, + [2152] = 512, + [2153] = 599, + [2154] = 1580, + [2155] = 1956, + [2156] = 505, + [2157] = 875, + [2158] = 1393, + [2159] = 507, + [2160] = 508, + [2161] = 1397, + [2162] = 509, + [2163] = 517, + [2164] = 1547, + [2165] = 515, + [2166] = 514, + [2167] = 511, + [2168] = 510, + [2169] = 1231, + [2170] = 872, + [2171] = 1580, + [2172] = 516, + [2173] = 513, + [2174] = 512, + [2175] = 1297, + [2176] = 1306, + [2177] = 1580, + [2178] = 1616, + [2179] = 1956, + [2180] = 497, + [2181] = 496, + [2182] = 495, + [2183] = 494, + [2184] = 930, + [2185] = 931, + [2186] = 934, + [2187] = 884, + [2188] = 495, + [2189] = 497, + [2190] = 496, + [2191] = 898, + [2192] = 899, + [2193] = 923, + [2194] = 925, + [2195] = 495, + [2196] = 494, + [2197] = 1549, + [2198] = 509, + [2199] = 500, + [2200] = 2200, + [2201] = 515, + [2202] = 514, + [2203] = 516, + [2204] = 513, + [2205] = 512, + [2206] = 507, + [2207] = 508, + [2208] = 511, + [2209] = 1650, + [2210] = 1659, + [2211] = 527, + [2212] = 1930, + [2213] = 519, + [2214] = 1397, + [2215] = 509, + [2216] = 1795, + [2217] = 510, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, + [2222] = 2222, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, + [2233] = 2200, + [2234] = 517, + [2235] = 1646, + [2236] = 1580, + [2237] = 515, + [2238] = 1646, + [2239] = 527, + [2240] = 514, + [2241] = 494, + [2242] = 511, + [2243] = 510, + [2244] = 516, + [2245] = 527, + [2246] = 513, + [2247] = 1795, + [2248] = 512, + [2249] = 1650, + [2250] = 503, + [2251] = 2251, + [2252] = 519, + [2253] = 518, + [2254] = 1795, + [2255] = 2229, + [2256] = 2230, + [2257] = 504, + [2258] = 501, + [2259] = 1393, + [2260] = 506, + [2261] = 516, + [2262] = 1646, + [2263] = 513, + [2264] = 512, + [2265] = 2265, + [2266] = 2266, + [2267] = 1650, + [2268] = 500, + [2269] = 1851, + [2270] = 1857, + [2271] = 502, + [2272] = 506, + [2273] = 2273, + [2274] = 527, + [2275] = 503, + [2276] = 502, + [2277] = 1659, + [2278] = 1646, + [2279] = 519, + [2280] = 1650, + [2281] = 2266, + [2282] = 2231, + [2283] = 1646, + [2284] = 1580, + [2285] = 527, + [2286] = 1925, + [2287] = 1914, + [2288] = 1393, + [2289] = 898, + [2290] = 899, + [2291] = 527, + [2292] = 518, + [2293] = 923, + [2294] = 925, + [2295] = 1930, + [2296] = 519, + [2297] = 1650, + [2298] = 1397, + [2299] = 1930, + [2300] = 504, + [2301] = 2219, + [2302] = 2220, + [2303] = 2218, + [2304] = 1580, + [2305] = 1397, + [2306] = 501, + [2307] = 1795, + [2308] = 2221, + [2309] = 2222, + [2310] = 2223, + [2311] = 2224, + [2312] = 2225, + [2313] = 2226, + [2314] = 2227, + [2315] = 2228, + [2316] = 2229, + [2317] = 2230, + [2318] = 2231, + [2319] = 2232, + [2320] = 2200, + [2321] = 2251, + [2322] = 527, + [2323] = 2222, + [2324] = 500, + [2325] = 497, + [2326] = 496, + [2327] = 495, + [2328] = 2219, + [2329] = 2220, + [2330] = 2218, + [2331] = 506, + [2332] = 519, + [2333] = 2219, + [2334] = 2220, + [2335] = 2218, + [2336] = 2219, + [2337] = 2220, + [2338] = 2218, + [2339] = 2221, + [2340] = 2222, + [2341] = 2218, + [2342] = 2223, + [2343] = 2224, + [2344] = 2225, + [2345] = 2226, + [2346] = 2227, + [2347] = 2228, + [2348] = 2218, + [2349] = 2229, + [2350] = 2230, + [2351] = 2231, + [2352] = 2218, + [2353] = 2232, + [2354] = 2200, + [2355] = 2218, + [2356] = 2218, + [2357] = 2218, + [2358] = 2218, + [2359] = 2218, + [2360] = 2218, + [2361] = 2218, + [2362] = 2218, + [2363] = 2218, + [2364] = 2218, + [2365] = 2218, + [2366] = 2218, + [2367] = 2218, + [2368] = 2218, + [2369] = 2218, + [2370] = 2218, + [2371] = 2218, + [2372] = 2218, + [2373] = 2218, + [2374] = 2218, + [2375] = 2218, + [2376] = 2218, + [2377] = 2218, + [2378] = 2218, + [2379] = 2218, + [2380] = 2218, + [2381] = 2218, + [2382] = 2218, + [2383] = 2218, + [2384] = 2218, + [2385] = 2218, + [2386] = 2218, + [2387] = 2218, + [2388] = 2218, + [2389] = 2218, + [2390] = 2218, + [2391] = 2218, + [2392] = 2218, + [2393] = 2218, + [2394] = 2218, + [2395] = 2218, + [2396] = 2218, + [2397] = 2218, + [2398] = 2218, + [2399] = 2218, + [2400] = 2218, + [2401] = 2218, + [2402] = 2218, + [2403] = 2218, + [2404] = 2218, + [2405] = 2218, + [2406] = 2218, + [2407] = 2218, + [2408] = 2218, + [2409] = 2218, + [2410] = 2218, + [2411] = 2218, + [2412] = 2218, + [2413] = 2218, + [2414] = 2218, + [2415] = 2218, + [2416] = 2218, + [2417] = 2218, + [2418] = 2218, + [2419] = 2218, + [2420] = 2218, + [2421] = 2218, + [2422] = 2218, + [2423] = 2218, + [2424] = 2218, + [2425] = 2218, + [2426] = 2218, + [2427] = 2218, + [2428] = 2218, + [2429] = 2218, + [2430] = 2218, + [2431] = 2218, + [2432] = 2218, + [2433] = 1795, + [2434] = 2265, + [2435] = 2273, + [2436] = 503, + [2437] = 1215, + [2438] = 1216, + [2439] = 2251, + [2440] = 502, + [2441] = 2232, + [2442] = 505, + [2443] = 1646, + [2444] = 2265, + [2445] = 2273, + [2446] = 527, + [2447] = 507, + [2448] = 508, + [2449] = 2265, + [2450] = 2273, + [2451] = 509, + [2452] = 527, + [2453] = 1650, + [2454] = 2251, + [2455] = 517, + [2456] = 519, + [2457] = 515, + [2458] = 514, + [2459] = 1925, + [2460] = 636, + [2461] = 505, + [2462] = 511, + [2463] = 1851, + [2464] = 628, + [2465] = 2266, + [2466] = 510, + [2467] = 930, + [2468] = 931, + [2469] = 507, + [2470] = 508, + [2471] = 2221, + [2472] = 2223, + [2473] = 2224, + [2474] = 2225, + [2475] = 2226, + [2476] = 2227, + [2477] = 2228, + [2478] = 2229, + [2479] = 2230, + [2480] = 2231, + [2481] = 2232, + [2482] = 2200, + [2483] = 519, + [2484] = 934, + [2485] = 884, + [2486] = 509, + [2487] = 1851, + [2488] = 516, + [2489] = 513, + [2490] = 512, + [2491] = 1857, + [2492] = 1914, + [2493] = 2251, + [2494] = 505, + [2495] = 1857, + [2496] = 1393, + [2497] = 507, + [2498] = 1580, + [2499] = 508, + [2500] = 2266, + [2501] = 1659, + [2502] = 2221, + [2503] = 2273, + [2504] = 502, + [2505] = 497, + [2506] = 2222, + [2507] = 2266, + [2508] = 496, + [2509] = 494, + [2510] = 2223, + [2511] = 2224, + [2512] = 2225, + [2513] = 2221, + [2514] = 2224, + [2515] = 2225, + [2516] = 2226, + [2517] = 2227, + [2518] = 2228, + [2519] = 2229, + [2520] = 2230, + [2521] = 2231, + [2522] = 2232, + [2523] = 2200, + [2524] = 2251, + [2525] = 2266, + [2526] = 2226, + [2527] = 495, + [2528] = 2227, + [2529] = 2228, + [2530] = 518, + [2531] = 1925, + [2532] = 517, + [2533] = 2219, + [2534] = 2220, + [2535] = 2273, + [2536] = 1914, + [2537] = 504, + [2538] = 501, + [2539] = 500, + [2540] = 506, + [2541] = 515, + [2542] = 514, + [2543] = 518, + [2544] = 511, + [2545] = 517, + [2546] = 510, + [2547] = 504, + [2548] = 501, + [2549] = 503, + [2550] = 2222, + [2551] = 1795, + [2552] = 505, + [2553] = 490, + [2554] = 495, + [2555] = 519, + [2556] = 508, + [2557] = 519, + [2558] = 1580, + [2559] = 518, + [2560] = 527, + [2561] = 504, + [2562] = 501, + [2563] = 503, + [2564] = 500, + [2565] = 502, + [2566] = 506, + [2567] = 505, + [2568] = 527, + [2569] = 515, + [2570] = 497, + [2571] = 496, + [2572] = 497, + [2573] = 496, + [2574] = 514, + [2575] = 507, + [2576] = 508, + [2577] = 511, + [2578] = 519, + [2579] = 517, + [2580] = 509, + [2581] = 527, + [2582] = 515, + [2583] = 516, + [2584] = 945, + [2585] = 509, + [2586] = 514, + [2587] = 510, + [2588] = 516, + [2589] = 513, + [2590] = 495, + [2591] = 497, + [2592] = 511, + [2593] = 496, + [2594] = 494, + [2595] = 512, + [2596] = 495, + [2597] = 527, + [2598] = 527, + [2599] = 491, + [2600] = 527, + [2601] = 495, + [2602] = 1580, + [2603] = 513, + [2604] = 1851, + [2605] = 1857, + [2606] = 1215, + [2607] = 1216, + [2608] = 1659, + [2609] = 1078, + [2610] = 527, + [2611] = 898, + [2612] = 899, + [2613] = 510, + [2614] = 518, + [2615] = 504, + [2616] = 501, + [2617] = 512, + [2618] = 500, + [2619] = 506, + [2620] = 495, + [2621] = 1580, + [2622] = 495, + [2623] = 1215, + [2624] = 1216, + [2625] = 503, + [2626] = 1093, + [2627] = 1094, + [2628] = 1267, + [2629] = 1078, + [2630] = 898, + [2631] = 899, + [2632] = 505, + [2633] = 1267, + [2634] = 923, + [2635] = 925, + [2636] = 1166, + [2637] = 1167, + [2638] = 502, + [2639] = 923, + [2640] = 925, + [2641] = 1166, + [2642] = 1167, + [2643] = 495, + [2644] = 495, + [2645] = 507, + [2646] = 519, + [2647] = 517, + [2648] = 506, + [2649] = 527, + [2650] = 497, + [2651] = 527, + [2652] = 497, + [2653] = 494, + [2654] = 2654, + [2655] = 2655, [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, + [2658] = 2658, + [2659] = 2659, + [2660] = 1132, + [2661] = 2654, + [2662] = 1093, + [2663] = 1094, + [2664] = 1164, + [2665] = 1166, + [2666] = 1167, + [2667] = 2655, + [2668] = 496, [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, + [2670] = 2670, + [2671] = 2671, + [2672] = 898, + [2673] = 2658, + [2674] = 518, + [2675] = 2659, + [2676] = 899, + [2677] = 1231, + [2678] = 504, + [2679] = 501, + [2680] = 500, + [2681] = 497, + [2682] = 496, + [2683] = 1134, + [2684] = 495, + [2685] = 503, + [2686] = 502, + [2687] = 519, + [2688] = 527, + [2689] = 497, + [2690] = 2655, [2691] = 2656, - [2692] = 2656, - [2693] = 2656, - [2694] = 2656, - [2695] = 2656, - [2696] = 2656, - [2697] = 2656, - [2698] = 2656, - [2699] = 2656, + [2692] = 496, + [2693] = 923, + [2694] = 497, + [2695] = 2670, + [2696] = 494, + [2697] = 2655, + [2698] = 2671, + [2699] = 2670, [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, + [2701] = 495, + [2702] = 2671, + [2703] = 496, + [2704] = 925, + [2705] = 1239, + [2706] = 2658, + [2707] = 2659, + [2708] = 2708, + [2709] = 494, + [2710] = 2670, + [2711] = 2671, + [2712] = 496, + [2713] = 495, + [2714] = 2655, + [2715] = 2656, + [2716] = 497, + [2717] = 507, + [2718] = 508, + [2719] = 2708, + [2720] = 496, + [2721] = 509, + [2722] = 507, + [2723] = 496, + [2724] = 2655, [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, - [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, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2770, - [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [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, - [2802] = 481, - [2803] = 2656, - [2804] = 2647, - [2805] = 2805, - [2806] = 2806, + [2726] = 511, + [2727] = 509, + [2728] = 510, + [2729] = 517, + [2730] = 516, + [2731] = 513, + [2732] = 512, + [2733] = 1215, + [2734] = 1216, + [2735] = 517, + [2736] = 515, + [2737] = 514, + [2738] = 497, + [2739] = 2708, + [2740] = 511, + [2741] = 2708, + [2742] = 519, + [2743] = 1078, + [2744] = 2658, + [2745] = 496, + [2746] = 519, + [2747] = 2708, + [2748] = 1215, + [2749] = 1216, + [2750] = 1297, + [2751] = 1306, + [2752] = 510, + [2753] = 495, + [2754] = 497, + [2755] = 496, + [2756] = 497, + [2757] = 1215, + [2758] = 1216, + [2759] = 1267, + [2760] = 1166, + [2761] = 1167, + [2762] = 494, + [2763] = 2659, + [2764] = 497, + [2765] = 495, + [2766] = 496, + [2767] = 495, + [2768] = 527, + [2769] = 516, + [2770] = 513, + [2771] = 512, + [2772] = 505, + [2773] = 510, + [2774] = 516, + [2775] = 497, + [2776] = 1580, + [2777] = 518, + [2778] = 504, + [2779] = 502, + [2780] = 1216, + [2781] = 500, + [2782] = 501, + [2783] = 496, + [2784] = 2784, + [2785] = 2654, + [2786] = 513, + [2787] = 494, + [2788] = 503, + [2789] = 1547, + [2790] = 504, + [2791] = 496, + [2792] = 501, + [2793] = 2793, + [2794] = 515, + [2795] = 508, + [2796] = 502, + [2797] = 510, + [2798] = 495, + [2799] = 2799, + [2800] = 1231, + [2801] = 507, + [2802] = 516, + [2803] = 503, + [2804] = 506, + [2805] = 497, + [2806] = 509, [2807] = 2807, - [2808] = 469, - [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, - [2826] = 2826, - [2827] = 2809, - [2828] = 2810, - [2829] = 2829, - [2830] = 2809, - [2831] = 1464, - [2832] = 471, - [2833] = 1670, - [2834] = 486, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, + [2808] = 513, + [2809] = 510, + [2810] = 505, + [2811] = 519, + [2812] = 513, + [2813] = 510, + [2814] = 2654, + [2815] = 509, + [2816] = 495, + [2817] = 512, + [2818] = 517, + [2819] = 496, + [2820] = 516, + [2821] = 515, + [2822] = 514, + [2823] = 502, + [2824] = 497, + [2825] = 516, + [2826] = 511, + [2827] = 497, + [2828] = 495, + [2829] = 513, + [2830] = 512, + [2831] = 500, + [2832] = 496, + [2833] = 2833, + [2834] = 1393, + [2835] = 513, + [2836] = 527, + [2837] = 512, [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, + [2839] = 505, + [2840] = 1271, + [2841] = 511, + [2842] = 507, + [2843] = 508, + [2844] = 509, + [2845] = 2845, + [2846] = 495, + [2847] = 517, + [2848] = 512, + [2849] = 1390, + [2850] = 511, + [2851] = 527, + [2852] = 519, + [2853] = 505, + [2854] = 1216, + [2855] = 2855, + [2856] = 506, + [2857] = 519, + [2858] = 496, + [2859] = 511, + [2860] = 494, + [2861] = 515, + [2862] = 514, + [2863] = 507, + [2864] = 2657, + [2865] = 494, [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, - [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, + [2867] = 514, + [2868] = 504, + [2869] = 503, + [2870] = 1215, + [2871] = 518, + [2872] = 507, + [2873] = 506, + [2874] = 1215, + [2875] = 1216, + [2876] = 497, + [2877] = 1549, + [2878] = 508, + [2879] = 515, + [2880] = 2880, + [2881] = 2881, + [2882] = 505, + [2883] = 527, + [2884] = 501, + [2885] = 504, + [2886] = 501, + [2887] = 500, + [2888] = 507, + [2889] = 1297, + [2890] = 503, + [2891] = 514, + [2892] = 517, + [2893] = 518, + [2894] = 517, + [2895] = 1306, + [2896] = 500, + [2897] = 508, + [2898] = 2708, + [2899] = 1239, + [2900] = 509, + [2901] = 518, + [2902] = 517, + [2903] = 511, + [2904] = 510, + [2905] = 509, [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, + [2907] = 512, + [2908] = 1367, + [2909] = 506, + [2910] = 1397, + [2911] = 516, + [2912] = 502, + [2913] = 1215, + [2914] = 2914, + [2915] = 2915, + [2916] = 519, + [2917] = 504, + [2918] = 501, + [2919] = 527, + [2920] = 2914, + [2921] = 2921, + [2922] = 2922, + [2923] = 2923, + [2924] = 2914, + [2925] = 2833, + [2926] = 2921, + [2927] = 518, + [2928] = 2928, + [2929] = 2838, + [2930] = 2914, [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, + [2932] = 2921, + [2933] = 500, + [2934] = 507, + [2935] = 510, + [2936] = 2914, + [2937] = 511, + [2938] = 509, + [2939] = 510, + [2940] = 2914, + [2941] = 1580, + [2942] = 2914, + [2943] = 2914, + [2944] = 2914, + [2945] = 517, + [2946] = 2914, + [2947] = 506, + [2948] = 2914, + [2949] = 2914, + [2950] = 2914, + [2951] = 2914, + [2952] = 2914, + [2953] = 2914, + [2954] = 2914, + [2955] = 2914, + [2956] = 2914, + [2957] = 2914, + [2958] = 2914, + [2959] = 2914, + [2960] = 2914, + [2961] = 2914, + [2962] = 503, + [2963] = 2914, + [2964] = 2914, + [2965] = 2914, + [2966] = 2914, + [2967] = 2967, + [2968] = 2914, + [2969] = 2914, + [2970] = 517, + [2971] = 2914, + [2972] = 2972, + [2973] = 2914, + [2974] = 502, + [2975] = 2914, + [2976] = 2914, + [2977] = 2914, + [2978] = 2914, + [2979] = 495, + [2980] = 2914, + [2981] = 2914, + [2982] = 516, + [2983] = 2914, + [2984] = 513, + [2985] = 2914, + [2986] = 512, + [2987] = 2914, + [2988] = 2914, + [2989] = 510, + [2990] = 2914, + [2991] = 2991, + [2992] = 2914, + [2993] = 2914, + [2994] = 2914, + [2995] = 2995, + [2996] = 2914, + [2997] = 2914, + [2998] = 2998, + [2999] = 2914, + [3000] = 2914, + [3001] = 2914, + [3002] = 2914, + [3003] = 2914, + [3004] = 2914, + [3005] = 2914, + [3006] = 2914, + [3007] = 2914, + [3008] = 2914, + [3009] = 2914, + [3010] = 2914, + [3011] = 2914, + [3012] = 2914, + [3013] = 2914, + [3014] = 2914, + [3015] = 2914, + [3016] = 507, + [3017] = 2914, + [3018] = 2914, + [3019] = 2657, + [3020] = 2914, + [3021] = 508, + [3022] = 2914, + [3023] = 509, + [3024] = 3024, + [3025] = 3025, + [3026] = 3026, + [3027] = 3027, + [3028] = 3028, + [3029] = 3029, + [3030] = 3030, + [3031] = 3031, + [3032] = 3032, + [3033] = 509, + [3034] = 507, + [3035] = 1580, + [3036] = 1231, + [3037] = 3037, + [3038] = 505, + [3039] = 516, + [3040] = 513, + [3041] = 517, + [3042] = 1239, + [3043] = 515, + [3044] = 507, + [3045] = 514, + [3046] = 515, + [3047] = 514, + [3048] = 2793, + [3049] = 3049, + [3050] = 3050, + [3051] = 3051, + [3052] = 3052, + [3053] = 3053, + [3054] = 3054, + [3055] = 511, + [3056] = 3056, + [3057] = 3057, + [3058] = 2866, + [3059] = 3059, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 2807, + [3065] = 2921, + [3066] = 512, + [3067] = 1215, + [3068] = 1216, + [3069] = 508, + [3070] = 508, + [3071] = 505, + [3072] = 509, + [3073] = 510, + [3074] = 518, + [3075] = 517, + [3076] = 1851, + [3077] = 1857, + [3078] = 2784, + [3079] = 504, + [3080] = 501, + [3081] = 3081, + [3082] = 1616, + [3083] = 491, + [3084] = 490, + [3085] = 500, + [3086] = 3086, + [3087] = 3087, + [3088] = 3088, + [3089] = 3089, + [3090] = 506, + [3091] = 1529, + [3092] = 1529, + [3093] = 511, + [3094] = 516, + [3095] = 527, + [3096] = 513, + [3097] = 512, + [3098] = 505, + [3099] = 503, + [3100] = 527, + [3101] = 505, + [3102] = 1547, + [3103] = 2799, + [3104] = 3104, + [3105] = 502, + [3106] = 508, + [3107] = 1549, + [3108] = 517, + [3109] = 3109, + [3110] = 2914, + [3111] = 507, + [3112] = 518, + [3113] = 519, + [3114] = 504, + [3115] = 501, + [3116] = 1914, + [3117] = 500, + [3118] = 506, + [3119] = 1393, + [3120] = 497, + [3121] = 516, + [3122] = 2914, + [3123] = 496, + [3124] = 2921, + [3125] = 503, + [3126] = 494, + [3127] = 515, + [3128] = 514, + [3129] = 513, + [3130] = 515, + [3131] = 514, + [3132] = 502, + [3133] = 511, + [3134] = 3134, + [3135] = 509, + [3136] = 510, + [3137] = 516, + [3138] = 513, + [3139] = 512, + [3140] = 3140, + [3141] = 3141, + [3142] = 512, + [3143] = 1930, + [3144] = 511, + [3145] = 1397, + [3146] = 519, + [3147] = 3147, + [3148] = 2914, [3149] = 3149, - [3150] = 3149, - [3151] = 491, - [3152] = 2595, - [3153] = 2596, - [3154] = 481, - [3155] = 3020, - [3156] = 2765, - [3157] = 2866, - [3158] = 3158, - [3159] = 2629, - [3160] = 3160, + [3150] = 2921, + [3151] = 3151, + [3152] = 3060, + [3153] = 3054, + [3154] = 3154, + [3155] = 1397, + [3156] = 2845, + [3157] = 2855, + [3158] = 1795, + [3159] = 3056, + [3160] = 502, [3161] = 3161, - [3162] = 476, - [3163] = 3163, - [3164] = 2902, - [3165] = 2905, + [3162] = 507, + [3163] = 491, + [3164] = 2881, + [3165] = 490, [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, + [3167] = 511, + [3168] = 3168, + [3169] = 3057, + [3170] = 3104, + [3171] = 3171, + [3172] = 507, + [3173] = 3059, + [3174] = 2793, + [3175] = 509, + [3176] = 3049, + [3177] = 1580, + [3178] = 3060, + [3179] = 510, + [3180] = 1659, + [3181] = 2922, + [3182] = 3182, + [3183] = 3183, + [3184] = 3154, + [3185] = 2923, + [3186] = 3061, + [3187] = 3151, + [3188] = 3188, + [3189] = 1925, + [3190] = 509, + [3191] = 3191, + [3192] = 3166, + [3193] = 3062, + [3194] = 508, + [3195] = 3168, + [3196] = 3050, + [3197] = 3051, + [3198] = 519, + [3199] = 1851, + [3200] = 3050, + [3201] = 1795, + [3202] = 3104, + [3203] = 3052, + [3204] = 2799, + [3205] = 3104, + [3206] = 1857, + [3207] = 3171, + [3208] = 511, + [3209] = 3049, + [3210] = 3053, + [3211] = 3054, + [3212] = 491, + [3213] = 490, + [3214] = 1646, + [3215] = 3056, + [3216] = 1650, + [3217] = 3059, + [3218] = 3166, + [3219] = 3151, + [3220] = 3154, + [3221] = 1646, + [3222] = 3057, + [3223] = 2866, + [3224] = 3049, + [3225] = 3056, + [3226] = 3151, + [3227] = 3050, + [3228] = 3051, + [3229] = 3166, + [3230] = 3052, + [3231] = 3053, + [3232] = 3054, + [3233] = 3056, + [3234] = 3057, + [3235] = 3063, + [3236] = 3059, + [3237] = 3060, + [3238] = 3061, + [3239] = 3062, + [3240] = 3063, + [3241] = 3059, + [3242] = 515, + [3243] = 3051, + [3244] = 3161, + [3245] = 514, + [3246] = 2922, + [3247] = 1650, + [3248] = 3060, + [3249] = 3061, + [3250] = 510, + [3251] = 517, + [3252] = 3049, + [3253] = 3052, + [3254] = 3062, + [3255] = 3063, + [3256] = 3256, + [3257] = 2880, + [3258] = 2906, + [3259] = 2923, + [3260] = 2807, + [3261] = 3151, + [3262] = 3161, + [3263] = 3263, + [3264] = 3171, + [3265] = 3154, + [3266] = 2928, + [3267] = 527, + [3268] = 3268, + [3269] = 519, + [3270] = 2928, + [3271] = 3061, + [3272] = 2922, + [3273] = 3268, + [3274] = 3050, + [3275] = 2923, + [3276] = 527, + [3277] = 2880, + [3278] = 2833, + [3279] = 2928, + [3280] = 517, + [3281] = 3057, + [3282] = 3062, + [3283] = 2881, + [3284] = 3063, + [3285] = 491, + [3286] = 490, + [3287] = 3287, + [3288] = 3288, + [3289] = 3168, + [3290] = 3166, + [3291] = 3051, + [3292] = 3166, + [3293] = 3293, + [3294] = 3294, + [3295] = 3081, + [3296] = 3168, + [3297] = 2838, + [3298] = 3171, + [3299] = 3171, + [3300] = 3168, + [3301] = 505, + [3302] = 3302, + [3303] = 519, + [3304] = 504, + [3305] = 3171, + [3306] = 501, + [3307] = 1914, + [3308] = 3154, + [3309] = 3161, [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, - [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, + [3311] = 2906, + [3312] = 508, + [3313] = 3168, + [3314] = 3268, + [3315] = 3154, + [3316] = 516, + [3317] = 2784, + [3318] = 3052, + [3319] = 513, + [3320] = 512, + [3321] = 3053, + [3322] = 3166, + [3323] = 2845, + [3324] = 3104, + [3325] = 1393, + [3326] = 518, + [3327] = 3053, + [3328] = 3328, + [3329] = 3268, + [3330] = 3054, + [3331] = 3154, + [3332] = 3161, + [3333] = 3161, + [3334] = 3168, + [3335] = 3335, + [3336] = 500, + [3337] = 2922, + [3338] = 2923, + [3339] = 2928, + [3340] = 3340, + [3341] = 3341, + [3342] = 3342, + [3343] = 3081, + [3344] = 3171, + [3345] = 3345, + [3346] = 516, + [3347] = 3347, + [3348] = 3348, + [3349] = 2855, + [3350] = 3154, + [3351] = 503, + [3352] = 3166, + [3353] = 505, + [3354] = 527, + [3355] = 1930, + [3356] = 515, + [3357] = 3168, + [3358] = 3171, + [3359] = 514, + [3360] = 513, + [3361] = 506, + [3362] = 3166, + [3363] = 3154, + [3364] = 1580, + [3365] = 512, [3366] = 3366, - [3367] = 3350, + [3367] = 505, [3368] = 3368, - [3369] = 1320, - [3370] = 3370, + [3369] = 515, + [3370] = 514, [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, - [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, - [3513] = 3513, - [3514] = 3471, - [3515] = 3463, - [3516] = 1670, - [3517] = 3517, - [3518] = 3518, - [3519] = 3465, - [3520] = 1153, - [3521] = 3466, - [3522] = 3510, - [3523] = 3457, - [3524] = 3460, - [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, + [3372] = 3368, + [3373] = 3347, + [3374] = 3348, + [3375] = 2967, + [3376] = 511, + [3377] = 3377, + [3378] = 3147, + [3379] = 3149, + [3380] = 3380, + [3381] = 3368, + [3382] = 507, + [3383] = 3182, + [3384] = 3183, + [3385] = 3368, + [3386] = 2915, + [3387] = 3024, + [3388] = 2931, + [3389] = 2967, + [3390] = 2972, + [3391] = 2998, + [3392] = 3026, + [3393] = 3027, + [3394] = 3188, + [3395] = 3028, + [3396] = 3029, + [3397] = 510, + [3398] = 3149, + [3399] = 3368, + [3400] = 3380, + [3401] = 3030, + [3402] = 3368, + [3403] = 3031, + [3404] = 3032, + [3405] = 3368, + [3406] = 511, + [3407] = 3407, + [3408] = 3368, + [3409] = 3134, + [3410] = 1215, + [3411] = 1216, + [3412] = 3368, + [3413] = 3025, + [3414] = 2972, + [3415] = 3368, + [3416] = 3371, + [3417] = 3368, + [3418] = 3418, + [3419] = 3368, + [3420] = 3140, + [3421] = 516, + [3422] = 3418, + [3423] = 3141, + [3424] = 513, + [3425] = 3425, + [3426] = 2915, + [3427] = 3109, + [3428] = 3368, + [3429] = 2991, + [3430] = 509, + [3431] = 2995, + [3432] = 3368, + [3433] = 516, + [3434] = 513, + [3435] = 512, + [3436] = 3287, + [3437] = 512, + [3438] = 3288, + [3439] = 3293, + [3440] = 3294, + [3441] = 3302, + [3442] = 3368, + [3443] = 3328, + [3444] = 3335, + [3445] = 3340, + [3446] = 491, + [3447] = 3341, + [3448] = 3342, + [3449] = 510, + [3450] = 3256, + [3451] = 1580, + [3452] = 3310, + [3453] = 3345, + [3454] = 3191, + [3455] = 3407, + [3456] = 3368, + [3457] = 3024, + [3458] = 490, + [3459] = 3025, + [3460] = 3086, + [3461] = 3366, + [3462] = 3037, + [3463] = 3087, + [3464] = 3104, + [3465] = 2998, + [3466] = 3368, + [3467] = 3368, + [3468] = 505, + [3469] = 3088, + [3470] = 3089, + [3471] = 3368, + [3472] = 515, + [3473] = 3380, + [3474] = 3368, + [3475] = 3368, + [3476] = 505, + [3477] = 3368, + [3478] = 517, + [3479] = 3368, + [3480] = 3368, + [3481] = 2931, + [3482] = 3368, + [3483] = 3368, + [3484] = 3484, + [3485] = 3368, + [3486] = 3368, + [3487] = 515, + [3488] = 3368, + [3489] = 491, + [3490] = 527, + [3491] = 3368, + [3492] = 515, + [3493] = 514, + [3494] = 3368, + [3495] = 514, + [3496] = 3368, + [3497] = 507, + [3498] = 494, + [3499] = 508, + [3500] = 511, + [3501] = 3368, + [3502] = 490, + [3503] = 3368, + [3504] = 3407, + [3505] = 3368, + [3506] = 509, + [3507] = 510, + [3508] = 507, + [3509] = 516, + [3510] = 3368, + [3511] = 513, + [3512] = 512, + [3513] = 3026, + [3514] = 517, + [3515] = 3368, + [3516] = 508, + [3517] = 3368, + [3518] = 3368, + [3519] = 3368, + [3520] = 3031, + [3521] = 3368, + [3522] = 508, + [3523] = 3368, + [3524] = 3287, + [3525] = 3368, + [3526] = 3288, + [3527] = 3368, + [3528] = 3293, + [3529] = 3368, + [3530] = 3294, + [3531] = 3368, + [3532] = 3368, + [3533] = 3302, + [3534] = 3032, + [3535] = 3368, + [3536] = 491, + [3537] = 3368, + [3538] = 490, + [3539] = 3368, + [3540] = 3328, + [3541] = 3368, + [3542] = 3335, + [3543] = 3368, + [3544] = 3340, + [3545] = 3368, + [3546] = 505, + [3547] = 3368, + [3548] = 3341, + [3549] = 3027, + [3550] = 3368, + [3551] = 3134, + [3552] = 507, + [3553] = 3140, + [3554] = 3141, + [3555] = 3109, + [3556] = 3342, + [3557] = 3368, + [3558] = 3256, + [3559] = 3368, + [3560] = 3310, + [3561] = 508, + [3562] = 3368, + [3563] = 3345, + [3564] = 491, + [3565] = 3147, + [3566] = 3368, + [3567] = 3368, + [3568] = 490, + [3569] = 514, + [3570] = 3368, + [3571] = 3368, + [3572] = 3368, + [3573] = 3348, + [3574] = 3368, + [3575] = 3368, + [3576] = 2995, + [3577] = 491, + [3578] = 490, + [3579] = 516, + [3580] = 3366, + [3581] = 3037, + [3582] = 513, + [3583] = 527, + [3584] = 3028, + [3585] = 497, + [3586] = 3368, + [3587] = 512, + [3588] = 3368, + [3589] = 527, + [3590] = 511, + [3591] = 3029, + [3592] = 3484, + [3593] = 3368, + [3594] = 496, + [3595] = 3368, + [3596] = 3371, + [3597] = 3049, + [3598] = 3151, + [3599] = 3050, + [3600] = 3051, + [3601] = 3052, + [3602] = 3053, + [3603] = 3054, + [3604] = 3056, + [3605] = 3057, + [3606] = 3059, + [3607] = 3060, + [3608] = 3061, + [3609] = 3062, + [3610] = 3063, + [3611] = 3611, + [3612] = 2991, + [3613] = 3380, + [3614] = 3407, + [3615] = 3368, + [3616] = 2922, + [3617] = 2923, + [3618] = 2928, + [3619] = 509, + [3620] = 3371, + [3621] = 3418, + [3622] = 3030, + [3623] = 3368, + [3624] = 509, + [3625] = 3418, + [3626] = 510, + [3627] = 3182, + [3628] = 3183, + [3629] = 3188, + [3630] = 3191, + [3631] = 3086, + [3632] = 3611, + [3633] = 3087, + [3634] = 3088, + [3635] = 3089, + [3636] = 517, + [3637] = 491, + [3638] = 517, + [3639] = 3639, + [3640] = 490, + [3641] = 3368, + [3642] = 519, + [3643] = 495, + [3644] = 3611, + [3645] = 3484, + [3646] = 3347, + [3647] = 3647, + [3648] = 510, + [3649] = 517, + [3650] = 3650, + [3651] = 3651, + [3652] = 3651, + [3653] = 3650, + [3654] = 503, + [3655] = 491, + [3656] = 504, + [3657] = 3657, + [3658] = 502, + [3659] = 3659, + [3660] = 3660, + [3661] = 3647, + [3662] = 505, + [3663] = 491, + [3664] = 3650, + [3665] = 3657, + [3666] = 508, + [3667] = 491, + [3668] = 3650, + [3669] = 490, + [3670] = 3651, + [3671] = 516, + [3672] = 509, + [3673] = 506, + [3674] = 3651, + [3675] = 3657, + [3676] = 490, + [3677] = 513, + [3678] = 512, + [3679] = 491, + [3680] = 3657, + [3681] = 3659, + [3682] = 3660, + [3683] = 491, + [3684] = 3647, + [3685] = 490, + [3686] = 3659, + [3687] = 515, + [3688] = 3659, + [3689] = 500, + [3690] = 491, + [3691] = 3660, + [3692] = 501, + [3693] = 3647, + [3694] = 507, + [3695] = 514, + [3696] = 491, + [3697] = 491, + [3698] = 490, + [3699] = 490, + [3700] = 490, + [3701] = 518, + [3702] = 490, + [3703] = 490, + [3704] = 527, + [3705] = 511, + [3706] = 3660, + [3707] = 519, + [3708] = 1267, + [3709] = 3709, + [3710] = 3710, + [3711] = 494, [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, - [3798] = 3798, - [3799] = 3798, - [3800] = 3800, - [3801] = 3797, - [3802] = 3798, - [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, - [3843] = 3803, - [3844] = 3844, - [3845] = 3803, - [3846] = 3797, - [3847] = 3797, - [3848] = 3803, - [3849] = 3803, - [3850] = 3797, - [3851] = 3841, - [3852] = 3803, - [3853] = 3803, - [3854] = 3803, - [3855] = 3855, - [3856] = 3797, - [3857] = 3841, - [3858] = 3844, - [3859] = 3841, - [3860] = 3844, - [3861] = 3841, - [3862] = 3797, - [3863] = 3803, - [3864] = 3844, - [3865] = 3797, - [3866] = 3803, - [3867] = 3797, - [3868] = 3798, - [3869] = 3803, - [3870] = 3803, - [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, - [3903] = 3803, - [3904] = 3904, - [3905] = 3905, - [3906] = 3798, - [3907] = 3841, - [3908] = 3844, - [3909] = 3797, - [3910] = 3803, - [3911] = 3798, - [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, - [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, - [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, - [4129] = 3798, - [4130] = 3803, - [4131] = 3797, - [4132] = 3841, - [4133] = 1015, - [4134] = 465, - [4135] = 817, - [4136] = 466, - [4137] = 463, - [4138] = 818, - [4139] = 4139, - [4140] = 3905, - [4141] = 4141, - [4142] = 463, - [4143] = 464, - [4144] = 465, - [4145] = 464, - [4146] = 3800, - [4147] = 4147, - [4148] = 1122, - [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, + [3713] = 923, + [3714] = 925, + [3715] = 3712, + [3716] = 3716, + [3717] = 1167, + [3718] = 1215, + [3719] = 1216, + [3720] = 599, + [3721] = 496, + [3722] = 1078, + [3723] = 3723, + [3724] = 1580, + [3725] = 898, + [3726] = 899, + [3727] = 495, + [3728] = 3728, + [3729] = 3712, + [3730] = 497, + [3731] = 1166, + [3732] = 3712, + [3733] = 3733, + [3734] = 3734, + [3735] = 3735, + [3736] = 502, + [3737] = 490, + [3738] = 500, + [3739] = 3733, + [3740] = 3733, + [3741] = 3733, + [3742] = 506, + [3743] = 3733, + [3744] = 3733, + [3745] = 501, + [3746] = 509, + [3747] = 3733, + [3748] = 3733, + [3749] = 527, + [3750] = 504, + [3751] = 511, + [3752] = 3733, + [3753] = 518, + [3754] = 3733, + [3755] = 3733, + [3756] = 517, + [3757] = 505, + [3758] = 491, + [3759] = 3733, + [3760] = 3760, + [3761] = 3733, + [3762] = 516, + [3763] = 513, + [3764] = 3733, + [3765] = 512, + [3766] = 3733, + [3767] = 510, + [3768] = 3733, + [3769] = 3733, + [3770] = 507, + [3771] = 3733, + [3772] = 508, + [3773] = 3733, + [3774] = 3733, + [3775] = 515, + [3776] = 3733, + [3777] = 3777, + [3778] = 514, + [3779] = 3733, + [3780] = 3733, + [3781] = 3733, + [3782] = 503, + [3783] = 3733, + [3784] = 3733, + [3785] = 3785, + [3786] = 1549, + [3787] = 1239, + [3788] = 3788, + [3789] = 3788, + [3790] = 491, + [3791] = 3788, + [3792] = 3788, + [3793] = 490, + [3794] = 3794, + [3795] = 519, + [3796] = 1231, + [3797] = 3788, + [3798] = 1580, + [3799] = 3794, + [3800] = 491, + [3801] = 3794, + [3802] = 3788, + [3803] = 3794, + [3804] = 3794, + [3805] = 3794, + [3806] = 3794, + [3807] = 1547, + [3808] = 3794, + [3809] = 3788, + [3810] = 3788, + [3811] = 3788, + [3812] = 3794, + [3813] = 490, + [3814] = 1529, + [3815] = 3815, + [3816] = 3816, + [3817] = 3815, + [3818] = 3816, + [3819] = 3815, + [3820] = 3820, + [3821] = 3821, + [3822] = 3816, + [3823] = 3815, + [3824] = 3816, + [3825] = 3815, + [3826] = 3826, + [3827] = 3827, + [3828] = 3816, + [3829] = 3815, + [3830] = 3830, + [3831] = 3815, + [3832] = 3832, + [3833] = 3833, + [3834] = 3816, + [3835] = 3815, + [3836] = 3816, + [3837] = 3815, + [3838] = 3838, + [3839] = 3839, + [3840] = 3816, + [3841] = 3815, + [3842] = 3816, + [3843] = 3815, + [3844] = 3816, + [3845] = 3815, + [3846] = 3816, + [3847] = 3815, + [3848] = 3848, + [3849] = 3816, + [3850] = 3815, + [3851] = 3851, + [3852] = 3816, + [3853] = 3815, + [3854] = 3816, + [3855] = 3815, + [3856] = 3830, + [3857] = 1914, + [3858] = 3816, + [3859] = 3815, + [3860] = 3860, + [3861] = 3816, + [3862] = 3862, + [3863] = 3863, + [3864] = 3816, + [3865] = 3815, + [3866] = 3815, + [3867] = 3816, + [3868] = 3815, + [3869] = 3816, + [3870] = 1393, + [3871] = 3815, + [3872] = 3872, + [3873] = 3816, + [3874] = 3815, + [3875] = 3827, + [3876] = 3816, + [3877] = 3815, + [3878] = 3833, + [3879] = 3879, + [3880] = 3816, + [3881] = 3816, + [3882] = 3815, + [3883] = 3815, + [3884] = 3884, + [3885] = 3816, + [3886] = 3886, + [3887] = 3816, + [3888] = 3815, + [3889] = 3827, + [3890] = 3815, + [3891] = 3833, + [3892] = 3827, + [3893] = 3816, + [3894] = 3815, + [3895] = 3816, + [3896] = 3816, + [3897] = 3897, + [3898] = 3872, + [3899] = 3827, + [3900] = 527, + [3901] = 3901, + [3902] = 3816, + [3903] = 3815, + [3904] = 3833, + [3905] = 3815, + [3906] = 3815, + [3907] = 3815, + [3908] = 3908, + [3909] = 3820, + [3910] = 3816, + [3911] = 3815, + [3912] = 3816, + [3913] = 3901, + [3914] = 3827, + [3915] = 3833, + [3916] = 3916, + [3917] = 3816, + [3918] = 3816, + [3919] = 3815, + [3920] = 3815, + [3921] = 1930, + [3922] = 3901, + [3923] = 3916, + [3924] = 3816, + [3925] = 3815, + [3926] = 491, + [3927] = 3827, + [3928] = 3816, + [3929] = 3816, + [3930] = 490, + [3931] = 3815, + [3932] = 3816, + [3933] = 3815, + [3934] = 3815, + [3935] = 3827, + [3936] = 1397, + [3937] = 3937, + [3938] = 3833, + [3939] = 3939, + [3940] = 3816, + [3941] = 3815, + [3942] = 3827, + [3943] = 3943, + [3944] = 3872, + [3945] = 3816, + [3946] = 3815, + [3947] = 3816, + [3948] = 3948, + [3949] = 3816, + [3950] = 3879, + [3951] = 3830, + [3952] = 3952, + [3953] = 3815, + [3954] = 3879, + [3955] = 3815, + [3956] = 3833, + [3957] = 3827, + [3958] = 3827, + [3959] = 3959, + [3960] = 3860, + [3961] = 3816, + [3962] = 3827, + [3963] = 3833, + [3964] = 3848, + [3965] = 490, + [3966] = 3833, + [3967] = 3901, + [3968] = 3816, + [3969] = 3833, + [3970] = 3815, + [3971] = 491, + [3972] = 490, + [3973] = 3816, + [3974] = 3816, + [3975] = 3816, + [3976] = 3815, + [3977] = 3827, + [3978] = 3821, + [3979] = 3815, + [3980] = 3816, + [3981] = 3816, + [3982] = 3815, + [3983] = 3884, + [3984] = 3815, + [3985] = 1646, + [3986] = 3815, + [3987] = 3816, + [3988] = 3901, + [3989] = 3833, + [3990] = 3815, + [3991] = 3816, + [3992] = 3815, + [3993] = 3833, + [3994] = 3916, + [3995] = 3916, + [3996] = 3816, + [3997] = 3815, + [3998] = 3816, + [3999] = 3833, + [4000] = 3826, + [4001] = 3816, + [4002] = 3816, + [4003] = 3815, + [4004] = 3832, + [4005] = 3815, + [4006] = 3943, + [4007] = 3948, + [4008] = 3816, + [4009] = 3815, + [4010] = 3839, + [4011] = 3959, + [4012] = 3816, + [4013] = 491, + [4014] = 3816, + [4015] = 3833, + [4016] = 3815, + [4017] = 3848, + [4018] = 3839, + [4019] = 3815, + [4020] = 3827, + [4021] = 3862, + [4022] = 3816, + [4023] = 3815, + [4024] = 3816, + [4025] = 3816, + [4026] = 3815, + [4027] = 3886, + [4028] = 3816, + [4029] = 3815, + [4030] = 3815, + [4031] = 3860, + [4032] = 3816, + [4033] = 3833, + [4034] = 3884, + [4035] = 3816, + [4036] = 3815, + [4037] = 3886, + [4038] = 3833, + [4039] = 3897, + [4040] = 3897, + [4041] = 490, + [4042] = 3816, + [4043] = 3827, + [4044] = 3816, + [4045] = 3815, + [4046] = 3815, + [4047] = 599, + [4048] = 3863, + [4049] = 3908, + [4050] = 3820, + [4051] = 3916, + [4052] = 3821, + [4053] = 3826, + [4054] = 1650, + [4055] = 3816, + [4056] = 3815, + [4057] = 3816, + [4058] = 3815, + [4059] = 3832, + [4060] = 3943, + [4061] = 3815, + [4062] = 3833, + [4063] = 4063, + [4064] = 3816, + [4065] = 3827, + [4066] = 3815, + [4067] = 3816, + [4068] = 3815, + [4069] = 3908, + [4070] = 4070, + [4071] = 3827, + [4072] = 3816, + [4073] = 3816, + [4074] = 3815, + [4075] = 491, + [4076] = 3833, + [4077] = 3863, + [4078] = 1795, + [4079] = 3948, + [4080] = 3862, + [4081] = 3816, + [4082] = 3815, + [4083] = 3959, + [4084] = 3827, + [4085] = 3815, + [4086] = 4086, + [4087] = 4087, + [4088] = 4087, + [4089] = 4089, + [4090] = 4090, + [4091] = 4091, + [4092] = 491, + [4093] = 490, + [4094] = 4087, + [4095] = 4089, + [4096] = 4086, + [4097] = 4090, + [4098] = 4091, + [4099] = 4087, + [4100] = 4089, + [4101] = 4086, + [4102] = 4090, + [4103] = 4091, + [4104] = 4087, + [4105] = 4089, + [4106] = 4086, + [4107] = 4090, + [4108] = 4091, + [4109] = 4087, + [4110] = 4089, + [4111] = 4086, + [4112] = 4090, + [4113] = 4091, + [4114] = 4087, + [4115] = 4089, + [4116] = 4087, + [4117] = 4089, + [4118] = 4087, + [4119] = 4089, + [4120] = 4087, + [4121] = 4089, + [4122] = 4087, + [4123] = 4089, + [4124] = 4087, + [4125] = 4089, + [4126] = 4087, + [4127] = 4089, + [4128] = 4087, + [4129] = 4089, + [4130] = 4087, + [4131] = 4089, + [4132] = 4087, + [4133] = 4089, + [4134] = 4134, + [4135] = 4089, + [4136] = 4087, + [4137] = 4089, + [4138] = 4089, + [4139] = 4087, + [4140] = 4089, + [4141] = 4087, + [4142] = 4089, + [4143] = 4087, + [4144] = 4089, + [4145] = 4087, + [4146] = 4089, + [4147] = 4087, + [4148] = 4089, + [4149] = 4087, + [4150] = 4089, + [4151] = 4087, + [4152] = 4089, + [4153] = 4087, + [4154] = 4089, + [4155] = 4087, + [4156] = 4089, + [4157] = 4090, + [4158] = 4087, + [4159] = 4089, + [4160] = 4091, + [4161] = 4087, + [4162] = 4089, + [4163] = 4134, + [4164] = 491, + [4165] = 490, + [4166] = 4086, + [4167] = 491, + [4168] = 490, + [4169] = 491, + [4170] = 490, + [4171] = 4134, + [4172] = 4087, + [4173] = 4089, + [4174] = 4086, + [4175] = 4134, + [4176] = 4087, + [4177] = 4089, + [4178] = 4086, + [4179] = 4087, [4180] = 4180, - [4181] = 488, + [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, - [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, - [4352] = 486, - [4353] = 1027, - [4354] = 464, - [4355] = 470, - [4356] = 1029, - [4357] = 487, - [4358] = 4182, - [4359] = 485, - [4360] = 478, + [4183] = 4181, + [4184] = 4182, + [4185] = 4181, + [4186] = 4182, + [4187] = 4181, + [4188] = 4182, + [4189] = 4181, + [4190] = 4182, + [4191] = 4191, + [4192] = 4181, + [4193] = 4182, + [4194] = 4182, + [4195] = 4181, + [4196] = 4196, + [4197] = 4181, + [4198] = 4198, + [4199] = 4181, + [4200] = 4182, + [4201] = 4181, + [4202] = 4182, + [4203] = 4182, + [4204] = 4180, + [4205] = 4181, + [4206] = 4182, + [4207] = 4181, + [4208] = 4182, + [4209] = 4181, + [4210] = 4182, + [4211] = 4181, + [4212] = 4182, + [4213] = 4181, + [4214] = 4182, + [4215] = 4181, + [4216] = 4182, + [4217] = 4182, + [4218] = 4181, + [4219] = 4182, + [4220] = 4181, + [4221] = 4182, + [4222] = 4181, + [4223] = 4182, + [4224] = 4196, + [4225] = 4181, + [4226] = 4198, + [4227] = 4181, + [4228] = 4182, + [4229] = 4181, + [4230] = 4182, + [4231] = 4180, + [4232] = 4181, + [4233] = 4182, + [4234] = 4181, + [4235] = 4182, + [4236] = 4181, + [4237] = 4182, + [4238] = 4181, + [4239] = 4182, + [4240] = 4196, + [4241] = 4181, + [4242] = 4198, + [4243] = 4182, + [4244] = 4181, + [4245] = 4181, + [4246] = 4180, + [4247] = 4181, + [4248] = 4182, + [4249] = 4181, + [4250] = 4182, + [4251] = 4182, + [4252] = 4196, + [4253] = 4182, + [4254] = 4198, + [4255] = 4181, + [4256] = 4182, + [4257] = 495, + [4258] = 4181, + [4259] = 4182, + [4260] = 4180, + [4261] = 4181, + [4262] = 4196, + [4263] = 4182, + [4264] = 4198, + [4265] = 4180, + [4266] = 4182, + [4267] = 4196, + [4268] = 495, + [4269] = 4198, + [4270] = 4181, + [4271] = 4180, + [4272] = 4272, + [4273] = 4182, + [4274] = 4196, + [4275] = 4198, + [4276] = 4180, + [4277] = 4196, + [4278] = 4181, + [4279] = 4198, + [4280] = 4180, + [4281] = 4181, + [4282] = 4196, + [4283] = 4182, + [4284] = 4198, + [4285] = 4180, + [4286] = 4182, + [4287] = 4196, + [4288] = 4198, + [4289] = 4180, + [4290] = 4181, + [4291] = 4196, + [4292] = 4182, + [4293] = 4198, + [4294] = 4180, + [4295] = 4181, + [4296] = 4196, + [4297] = 4182, + [4298] = 4198, + [4299] = 4181, + [4300] = 4180, + [4301] = 4181, + [4302] = 4196, + [4303] = 4182, + [4304] = 4198, + [4305] = 4182, + [4306] = 4180, + [4307] = 4181, + [4308] = 4196, + [4309] = 4182, + [4310] = 4198, + [4311] = 4311, + [4312] = 4180, + [4313] = 4181, + [4314] = 4196, + [4315] = 4182, + [4316] = 4198, + [4317] = 4180, + [4318] = 4196, + [4319] = 4198, + [4320] = 4181, + [4321] = 4180, + [4322] = 4182, + [4323] = 4196, + [4324] = 4182, + [4325] = 4198, + [4326] = 4180, + [4327] = 4181, + [4328] = 4196, + [4329] = 4182, + [4330] = 4198, + [4331] = 4180, + [4332] = 4196, + [4333] = 4198, + [4334] = 4180, + [4335] = 4181, + [4336] = 4180, + [4337] = 4181, + [4338] = 4196, + [4339] = 4182, + [4340] = 4198, + [4341] = 4180, + [4342] = 4196, + [4343] = 4181, + [4344] = 4198, + [4345] = 4180, + [4346] = 4182, + [4347] = 4196, + [4348] = 4181, + [4349] = 4198, + [4350] = 4181, + [4351] = 4180, + [4352] = 4182, + [4353] = 4196, + [4354] = 4198, + [4355] = 4182, + [4356] = 4180, + [4357] = 4181, + [4358] = 4196, + [4359] = 4182, + [4360] = 4198, [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, - [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, - [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, - [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, + [4362] = 4181, + [4363] = 4196, + [4364] = 4182, + [4365] = 4198, + [4366] = 4181, + [4367] = 4196, + [4368] = 4198, + [4369] = 4180, + [4370] = 4181, + [4371] = 4181, + [4372] = 4180, + [4373] = 4180, + [4374] = 4180, + [4375] = 4182, + [4376] = 4180, + [4377] = 4180, + [4378] = 4181, + [4379] = 4180, + [4380] = 4180, + [4381] = 4182, + [4382] = 4180, + [4383] = 4180, + [4384] = 4180, + [4385] = 4180, + [4386] = 4180, + [4387] = 4180, + [4388] = 4180, + [4389] = 4180, + [4390] = 4180, + [4391] = 4181, + [4392] = 4180, + [4393] = 4182, + [4394] = 4181, + [4395] = 4180, + [4396] = 4182, + [4397] = 4180, + [4398] = 4180, + [4399] = 4180, + [4400] = 4180, + [4401] = 4180, + [4402] = 4180, + [4403] = 4181, + [4404] = 4180, + [4405] = 4180, + [4406] = 4182, + [4407] = 4180, + [4408] = 4180, + [4409] = 4180, + [4410] = 4180, + [4411] = 4180, + [4412] = 4198, + [4413] = 4180, + [4414] = 4180, + [4415] = 4180, + [4416] = 4181, + [4417] = 4180, + [4418] = 4182, + [4419] = 4180, + [4420] = 4180, + [4421] = 4421, + [4422] = 4180, + [4423] = 4180, + [4424] = 4424, + [4425] = 4180, + [4426] = 4181, + [4427] = 494, + [4428] = 4182, + [4429] = 4180, + [4430] = 4181, + [4431] = 4181, + [4432] = 4182, + [4433] = 4196, + [4434] = 4181, + [4435] = 4182, + [4436] = 4196, + [4437] = 4198, + [4438] = 4196, + [4439] = 4198, + [4440] = 4181, + [4441] = 4182, + [4442] = 4181, + [4443] = 4443, + [4444] = 4181, + [4445] = 4445, + [4446] = 4182, + [4447] = 4181, + [4448] = 4196, + [4449] = 4198, + [4450] = 4196, + [4451] = 4198, + [4452] = 4182, + [4453] = 4181, + [4454] = 4196, + [4455] = 4198, + [4456] = 4196, + [4457] = 4198, + [4458] = 4182, + [4459] = 4196, + [4460] = 4198, + [4461] = 4196, + [4462] = 4198, + [4463] = 4181, + [4464] = 4182, + [4465] = 4181, + [4466] = 4182, + [4467] = 4182, + [4468] = 4181, + [4469] = 4182, + [4470] = 4181, + [4471] = 4181, + [4472] = 4182, + [4473] = 4182, + [4474] = 4181, + [4475] = 4182, + [4476] = 4181, + [4477] = 4182, + [4478] = 4181, + [4479] = 4182, + [4480] = 4181, + [4481] = 494, + [4482] = 4182, + [4483] = 4181, + [4484] = 4181, + [4485] = 4182, + [4486] = 4182, + [4487] = 4181, + [4488] = 4182, + [4489] = 4181, + [4490] = 4182, + [4491] = 4182, + [4492] = 4181, + [4493] = 4182, + [4494] = 4180, + [4495] = 4181, + [4496] = 4181, + [4497] = 4182, + [4498] = 4181, + [4499] = 4181, + [4500] = 4182, + [4501] = 4182, + [4502] = 4181, + [4503] = 4182, + [4504] = 4182, + [4505] = 4181, + [4506] = 4181, + [4507] = 4182, + [4508] = 4424, + [4509] = 4445, + [4510] = 4182, + [4511] = 4181, + [4512] = 4182, + [4513] = 4181, + [4514] = 4182, + [4515] = 4181, + [4516] = 4182, + [4517] = 4181, + [4518] = 4182, + [4519] = 4181, + [4520] = 4196, + [4521] = 4182, + [4522] = 4198, + [4523] = 4181, + [4524] = 4196, + [4525] = 4198, + [4526] = 4424, + [4527] = 4445, + [4528] = 4182, + [4529] = 4181, + [4530] = 4182, + [4531] = 4182, + [4532] = 4181, + [4533] = 4182, + [4534] = 4181, + [4535] = 4181, + [4536] = 4196, + [4537] = 4182, + [4538] = 4198, + [4539] = 4181, + [4540] = 4196, + [4541] = 4198, + [4542] = 4182, + [4543] = 4424, + [4544] = 4445, + [4545] = 4182, + [4546] = 4180, + [4547] = 502, + [4548] = 517, + [4549] = 515, + [4550] = 514, + [4551] = 511, + [4552] = 899, + [4553] = 518, + [4554] = 505, + [4555] = 508, + [4556] = 504, + [4557] = 501, + [4558] = 1078, + [4559] = 495, + [4560] = 515, + [4561] = 514, + [4562] = 510, [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, - [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, + [4564] = 495, + [4565] = 500, + [4566] = 507, + [4567] = 511, + [4568] = 506, + [4569] = 509, + [4570] = 497, + [4571] = 510, + [4572] = 4272, + [4573] = 516, + [4574] = 517, + [4575] = 513, + [4576] = 512, + [4577] = 503, + [4578] = 516, + [4579] = 513, + [4580] = 512, + [4581] = 494, + [4582] = 4582, + [4583] = 1267, + [4584] = 923, + [4585] = 494, + [4586] = 925, + [4587] = 1166, + [4588] = 491, + [4589] = 4589, + [4590] = 495, + [4591] = 4591, + [4592] = 496, + [4593] = 490, + [4594] = 4594, + [4595] = 497, + [4596] = 1167, + [4597] = 4443, + [4598] = 518, + [4599] = 504, + [4600] = 501, + [4601] = 505, + [4602] = 507, + [4603] = 508, + [4604] = 500, + [4605] = 494, + [4606] = 506, + [4607] = 496, + [4608] = 4191, + [4609] = 898, + [4610] = 4610, [4611] = 4611, - [4612] = 4182, - [4613] = 4564, - [4614] = 1021, - [4615] = 491, - [4616] = 1153, - [4617] = 4293, - [4618] = 465, - [4619] = 466, - [4620] = 463, - [4621] = 1673, - [4622] = 4593, - [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, - [4658] = 4658, - [4659] = 485, + [4612] = 503, + [4613] = 4613, + [4614] = 502, + [4615] = 4615, + [4616] = 509, + [4617] = 4311, + [4618] = 4191, + [4619] = 503, + [4620] = 507, + [4621] = 511, + [4622] = 4443, + [4623] = 509, + [4624] = 505, + [4625] = 510, + [4626] = 4626, + [4627] = 4627, + [4628] = 4594, + [4629] = 517, + [4630] = 4630, + [4631] = 502, + [4632] = 2880, + [4633] = 4627, + [4634] = 2881, + [4635] = 4635, + [4636] = 4272, + [4637] = 508, + [4638] = 518, + [4639] = 518, + [4640] = 4640, + [4641] = 504, + [4642] = 501, + [4643] = 4443, + [4644] = 507, + [4645] = 511, + [4646] = 504, + [4647] = 509, + [4648] = 500, + [4649] = 500, + [4650] = 506, + [4651] = 510, + [4652] = 516, + [4653] = 495, + [4654] = 513, + [4655] = 512, + [4656] = 517, + [4657] = 4191, + [4658] = 503, + [4659] = 4627, [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, - [4687] = 4687, - [4688] = 474, - [4689] = 4676, - [4690] = 4522, - [4691] = 4676, - [4692] = 4676, - [4693] = 4693, - [4694] = 491, - [4695] = 4676, - [4696] = 1670, - [4697] = 4676, - [4698] = 4675, - [4699] = 4676, - [4700] = 1655, - [4701] = 4676, - [4702] = 4702, - [4703] = 4676, - [4704] = 4704, - [4705] = 4705, - [4706] = 4676, - [4707] = 4524, - [4708] = 4708, - [4709] = 4709, - [4710] = 4548, - [4711] = 4676, - [4712] = 4676, - [4713] = 4713, - [4714] = 1150, - [4715] = 4715, - [4716] = 4546, - [4717] = 4509, - [4718] = 1468, - [4719] = 4564, - [4720] = 4720, - [4721] = 4676, - [4722] = 4676, - [4723] = 4702, + [4661] = 2845, + [4662] = 502, + [4663] = 4635, + [4664] = 2855, + [4665] = 516, + [4666] = 513, + [4667] = 512, + [4668] = 4627, + [4669] = 1166, + [4670] = 1167, + [4671] = 495, + [4672] = 505, + [4673] = 507, + [4674] = 508, + [4675] = 4563, + [4676] = 519, + [4677] = 500, + [4678] = 509, + [4679] = 495, + [4680] = 4635, + [4681] = 517, + [4682] = 515, + [4683] = 514, + [4684] = 511, + [4685] = 506, + [4686] = 1529, + [4687] = 510, + [4688] = 4627, + [4689] = 1231, + [4690] = 4635, + [4691] = 1547, + [4692] = 4627, + [4693] = 516, + [4694] = 513, + [4695] = 512, + [4696] = 4635, + [4697] = 1239, + [4698] = 4635, + [4699] = 495, + [4700] = 4627, + [4701] = 4635, + [4702] = 494, + [4703] = 4311, + [4704] = 1547, + [4705] = 4627, + [4706] = 1549, + [4707] = 1549, + [4708] = 495, + [4709] = 519, + [4710] = 506, + [4711] = 1231, + [4712] = 4635, + [4713] = 4272, + [4714] = 4615, + [4715] = 501, + [4716] = 1078, + [4717] = 1239, + [4718] = 898, + [4719] = 899, + [4720] = 505, + [4721] = 4443, + [4722] = 4611, + [4723] = 1267, [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, - [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, - [4762] = 4762, - [4763] = 4658, - [4764] = 476, - [4765] = 479, - [4766] = 4766, - [4767] = 4528, - [4768] = 480, - [4769] = 4576, - [4770] = 4658, - [4771] = 4685, - [4772] = 4683, - [4773] = 4709, - [4774] = 4774, - [4775] = 481, - [4776] = 4514, - [4777] = 4777, - [4778] = 4778, - [4779] = 4676, - [4780] = 4780, - [4781] = 4676, - [4782] = 4766, - [4783] = 4778, - [4784] = 4708, - [4785] = 4678, - [4786] = 4777, - [4787] = 4676, - [4788] = 4762, - [4789] = 4724, - [4790] = 4676, - [4791] = 4675, - [4792] = 4792, - [4793] = 4676, - [4794] = 4756, - [4795] = 4795, - [4796] = 4676, - [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, - [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, + [4725] = 4615, + [4726] = 1078, + [4727] = 508, + [4728] = 503, + [4729] = 4191, + [4730] = 495, + [4731] = 4611, + [4732] = 519, + [4733] = 4272, + [4734] = 1267, + [4735] = 497, + [4736] = 515, + [4737] = 514, + [4738] = 495, + [4739] = 923, + [4740] = 496, + [4741] = 4311, + [4742] = 925, + [4743] = 504, + [4744] = 4744, + [4745] = 898, + [4746] = 494, + [4747] = 1529, + [4748] = 502, + [4749] = 501, + [4750] = 899, + [4751] = 497, + [4752] = 4591, + [4753] = 4753, + [4754] = 496, + [4755] = 4755, + [4756] = 495, + [4757] = 494, + [4758] = 4311, + [4759] = 923, + [4760] = 925, + [4761] = 4627, + [4762] = 515, + [4763] = 514, + [4764] = 4635, + [4765] = 4272, + [4766] = 518, + [4767] = 497, + [4768] = 4443, + [4769] = 496, + [4770] = 495, + [4771] = 4771, + [4772] = 519, + [4773] = 4610, + [4774] = 1078, + [4775] = 4775, + [4776] = 923, + [4777] = 2991, + [4778] = 4610, + [4779] = 4779, + [4780] = 925, + [4781] = 1547, + [4782] = 495, + [4783] = 511, + [4784] = 4784, + [4785] = 1166, + [4786] = 1167, + [4787] = 509, + [4788] = 495, + [4789] = 497, + [4790] = 496, + [4791] = 2995, + [4792] = 510, + [4793] = 517, + [4794] = 516, + [4795] = 513, + [4796] = 512, + [4797] = 497, + [4798] = 508, + [4799] = 516, + [4800] = 513, + [4801] = 512, + [4802] = 519, + [4803] = 497, + [4804] = 496, + [4805] = 519, + [4806] = 4610, + [4807] = 515, + [4808] = 514, + [4809] = 496, + [4810] = 4615, + [4811] = 1078, + [4812] = 1914, + [4813] = 519, + [4814] = 4814, + [4815] = 1547, + [4816] = 4611, + [4817] = 495, + [4818] = 1267, + [4819] = 1930, + [4820] = 505, + [4821] = 4611, + [4822] = 1267, + [4823] = 508, + [4824] = 1529, + [4825] = 4563, + [4826] = 4826, + [4827] = 1646, + [4828] = 516, + [4829] = 1650, + [4830] = 527, + [4831] = 513, + [4832] = 898, + [4833] = 899, + [4834] = 4640, + [4835] = 1393, + [4836] = 1547, + [4837] = 1549, + [4838] = 497, + [4839] = 1231, + [4840] = 496, + [4841] = 515, + [4842] = 494, + [4843] = 514, + [4844] = 4814, + [4845] = 923, + [4846] = 4610, + [4847] = 925, + [4848] = 1397, + [4849] = 1231, + [4850] = 4660, + [4851] = 503, + [4852] = 519, + [4853] = 1166, + [4854] = 1167, + [4855] = 4855, + [4856] = 497, + [4857] = 1549, + [4858] = 512, + [4859] = 1239, + [4860] = 527, + [4861] = 497, + [4862] = 496, + [4863] = 496, + [4864] = 3024, + [4865] = 4591, + [4866] = 495, + [4867] = 497, + [4868] = 496, + [4869] = 4563, + [4870] = 4272, + [4871] = 4563, + [4872] = 4443, + [4873] = 3025, + [4874] = 527, + [4875] = 500, + [4876] = 515, + [4877] = 514, + [4878] = 504, + [4879] = 1239, + [4880] = 501, + [4881] = 1549, + [4882] = 4744, + [4883] = 4883, + [4884] = 495, + [4885] = 1239, + [4886] = 4886, + [4887] = 1795, + [4888] = 1166, + [4889] = 505, + [4890] = 502, + [4891] = 1167, + [4892] = 4892, + [4893] = 505, + [4894] = 4615, + [4895] = 518, + [4896] = 1231, + [4897] = 4753, + [4898] = 504, + [4899] = 497, + [4900] = 4591, + [4901] = 496, + [4902] = 4594, + [4903] = 501, + [4904] = 1078, + [4905] = 4905, + [4906] = 507, + [4907] = 508, + [4908] = 4908, + [4909] = 500, + [4910] = 4910, + [4911] = 4724, + [4912] = 1166, + [4913] = 4610, + [4914] = 506, + [4915] = 4615, + [4916] = 1078, + [4917] = 4611, + [4918] = 1267, + [4919] = 898, + [4920] = 899, + [4921] = 923, + [4922] = 925, + [4923] = 4923, + [4924] = 4594, + [4925] = 1167, + [4926] = 511, + [4927] = 4814, + [4928] = 503, + [4929] = 898, + [4930] = 899, + [4931] = 4563, + [4932] = 4932, + [4933] = 4933, + [4934] = 4755, + [4935] = 4626, + [4936] = 4771, + [4937] = 518, + [4938] = 4938, + [4939] = 507, + [4940] = 4940, + [4941] = 502, + [4942] = 511, + [4943] = 4615, + [4944] = 1078, + [4945] = 4611, + [4946] = 1267, + [4947] = 898, + [4948] = 899, + [4949] = 923, + [4950] = 925, + [4951] = 509, + [4952] = 497, + [4953] = 496, + [4954] = 503, + [4955] = 509, + [4956] = 527, + [4957] = 510, + [4958] = 495, + [4959] = 500, + [4960] = 502, + [4961] = 517, + [4962] = 506, + [4963] = 510, + [4964] = 4591, + [4965] = 517, + [4966] = 4594, + [4967] = 4615, + [4968] = 518, + [4969] = 4611, + [4970] = 1267, + [4971] = 898, + [4972] = 899, + [4973] = 923, + [4974] = 925, + [4975] = 4591, + [4976] = 4594, + [4977] = 504, + [4978] = 501, + [4979] = 4630, + [4980] = 507, + [4981] = 506, + [4982] = 1795, + [4983] = 4983, + [4984] = 4984, + [4985] = 4985, + [4986] = 4640, + [4987] = 4626, + [4988] = 4988, + [4989] = 1914, + [4990] = 1231, + [4991] = 4991, + [4992] = 4992, + [4993] = 4993, + [4994] = 4994, + [4995] = 1239, + [4996] = 4855, + [4997] = 4753, + [4998] = 4724, [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, + [5000] = 1930, + [5001] = 1547, + [5002] = 5002, + [5003] = 4744, + [5004] = 519, + [5005] = 1549, + [5006] = 4755, + [5007] = 4826, + [5008] = 5008, + [5009] = 4775, + [5010] = 4630, + [5011] = 4640, + [5012] = 4626, + [5013] = 5013, + [5014] = 5014, + [5015] = 4771, + [5016] = 5002, + [5017] = 4660, + [5018] = 4892, + [5019] = 497, + [5020] = 505, + [5021] = 508, + [5022] = 496, [5023] = 5023, - [5024] = 5024, - [5025] = 5025, + [5024] = 4932, + [5025] = 4908, [5026] = 5026, - [5027] = 5027, - [5028] = 5028, - [5029] = 5029, - [5030] = 5030, - [5031] = 5031, + [5027] = 4753, + [5028] = 527, + [5029] = 504, + [5030] = 501, + [5031] = 1239, [5032] = 5032, - [5033] = 5033, - [5034] = 4147, - [5035] = 1015, - [5036] = 4161, - [5037] = 1096, - [5038] = 4152, - [5039] = 466, - [5040] = 463, - [5041] = 464, - [5042] = 5042, - [5043] = 5043, - [5044] = 810, - [5045] = 838, - [5046] = 465, - [5047] = 817, - [5048] = 818, - [5049] = 4141, - [5050] = 491, + [5033] = 4784, + [5034] = 1393, + [5035] = 5035, + [5036] = 4940, + [5037] = 527, + [5038] = 5002, + [5039] = 5039, + [5040] = 527, + [5041] = 5041, + [5042] = 4615, + [5043] = 1078, + [5044] = 1914, + [5045] = 4744, + [5046] = 898, + [5047] = 899, + [5048] = 1393, + [5049] = 1397, + [5050] = 5050, [5051] = 5051, [5052] = 5052, - [5053] = 466, - [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, + [5053] = 515, + [5054] = 514, + [5055] = 5055, + [5056] = 4755, + [5057] = 5008, + [5058] = 497, + [5059] = 5059, + [5060] = 496, + [5061] = 4630, + [5062] = 4640, + [5063] = 494, + [5064] = 4626, + [5065] = 4933, + [5066] = 497, + [5067] = 496, + [5068] = 4883, + [5069] = 4610, + [5070] = 4563, + [5071] = 4771, + [5072] = 4611, + [5073] = 4660, + [5074] = 1267, + [5075] = 1930, + [5076] = 923, + [5077] = 925, + [5078] = 1397, + [5079] = 518, + [5080] = 4910, + [5081] = 495, + [5082] = 4923, + [5083] = 4886, + [5084] = 4940, + [5085] = 5002, + [5086] = 497, + [5087] = 496, + [5088] = 495, + [5089] = 507, + [5090] = 4755, [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, - [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, - [5149] = 476, - [5150] = 479, + [5092] = 511, + [5093] = 5008, + [5094] = 509, + [5095] = 510, + [5096] = 5008, + [5097] = 517, + [5098] = 5098, + [5099] = 496, + [5100] = 5100, + [5101] = 5101, + [5102] = 4744, + [5103] = 500, + [5104] = 5104, + [5105] = 516, + [5106] = 5002, + [5107] = 4826, + [5108] = 513, + [5109] = 512, + [5110] = 506, + [5111] = 4932, + [5112] = 4933, + [5113] = 5008, + [5114] = 4784, + [5115] = 527, + [5116] = 519, + [5117] = 5117, + [5118] = 4775, + [5119] = 4771, + [5120] = 5002, + [5121] = 5121, + [5122] = 503, + [5123] = 4923, + [5124] = 5008, + [5125] = 5125, + [5126] = 5126, + [5127] = 5127, + [5128] = 4724, + [5129] = 1215, + [5130] = 1216, + [5131] = 1547, + [5132] = 5132, + [5133] = 5133, + [5134] = 4753, + [5135] = 5135, + [5136] = 5002, + [5137] = 5137, + [5138] = 519, + [5139] = 1549, + [5140] = 4724, + [5141] = 5141, + [5142] = 4892, + [5143] = 4886, + [5144] = 5144, + [5145] = 5145, + [5146] = 5008, + [5147] = 5002, + [5148] = 5148, + [5149] = 502, + [5150] = 5150, [5151] = 5151, - [5152] = 480, - [5153] = 481, - [5154] = 482, - [5155] = 483, - [5156] = 484, - [5157] = 5157, - [5158] = 466, - [5159] = 463, - [5160] = 5160, - [5161] = 464, - [5162] = 5162, - [5163] = 4182, - [5164] = 4186, - [5165] = 4238, - [5166] = 4233, - [5167] = 4269, - [5168] = 4286, - [5169] = 4288, - [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, + [5152] = 5002, + [5153] = 5008, + [5154] = 4779, + [5155] = 4744, + [5156] = 1529, + [5157] = 4905, + [5158] = 5158, + [5159] = 5159, + [5160] = 4615, + [5161] = 1078, + [5162] = 898, + [5163] = 899, + [5164] = 4611, + [5165] = 1267, + [5166] = 923, + [5167] = 925, + [5168] = 5168, + [5169] = 1646, + [5170] = 4755, + [5171] = 5008, + [5172] = 5172, + [5173] = 5173, + [5174] = 4591, + [5175] = 4594, + [5176] = 5176, + [5177] = 4660, + [5178] = 5178, + [5179] = 5179, + [5180] = 5180, + [5181] = 4615, + [5182] = 1078, + [5183] = 898, + [5184] = 899, + [5185] = 4611, + [5186] = 1267, + [5187] = 923, + [5188] = 925, [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, - [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, - [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, - [5251] = 5251, - [5252] = 810, - [5253] = 838, - [5254] = 5254, - [5255] = 5255, - [5256] = 471, - [5257] = 5257, - [5258] = 5258, - [5259] = 5259, - [5260] = 477, - [5261] = 1457, - [5262] = 5262, - [5263] = 1027, - [5264] = 5264, - [5265] = 5265, - [5266] = 1457, - [5267] = 5267, - [5268] = 5268, - [5269] = 5269, - [5270] = 817, - [5271] = 818, - [5272] = 5272, - [5273] = 5273, - [5274] = 5274, - [5275] = 470, - [5276] = 1029, - [5277] = 5277, - [5278] = 491, - [5279] = 1337, - [5280] = 478, - [5281] = 486, - [5282] = 5282, - [5283] = 5283, - [5284] = 487, - [5285] = 485, - [5286] = 475, - [5287] = 1411, - [5288] = 5288, - [5289] = 473, - [5290] = 477, - [5291] = 469, - [5292] = 4286, - [5293] = 5293, - [5294] = 471, - [5295] = 482, - [5296] = 5296, - [5297] = 476, - [5298] = 479, - [5299] = 1027, - [5300] = 5300, - [5301] = 5301, - [5302] = 480, - [5303] = 488, - [5304] = 483, - [5305] = 472, - [5306] = 5306, - [5307] = 481, - [5308] = 474, - [5309] = 484, - [5310] = 4186, - [5311] = 5311, - [5312] = 1029, - [5313] = 5313, - [5314] = 5314, - [5315] = 5315, - [5316] = 5316, - [5317] = 5317, - [5318] = 482, - [5319] = 483, - [5320] = 484, - [5321] = 470, - [5322] = 5322, - [5323] = 5323, - [5324] = 5324, - [5325] = 4288, - [5326] = 5326, - [5327] = 478, - [5328] = 486, - [5329] = 466, - [5330] = 469, - [5331] = 463, - [5332] = 464, + [5190] = 5190, + [5191] = 5191, + [5192] = 4630, + [5193] = 4640, + [5194] = 4626, + [5195] = 1231, + [5196] = 1650, + [5197] = 4615, + [5198] = 1078, + [5199] = 898, + [5200] = 899, + [5201] = 4611, + [5202] = 1267, + [5203] = 923, + [5204] = 925, + [5205] = 4630, + [5206] = 5206, + [5207] = 4771, + [5208] = 4660, + [5209] = 5209, + [5210] = 5210, + [5211] = 497, + [5212] = 5180, + [5213] = 4855, + [5214] = 5100, + [5215] = 5215, + [5216] = 5216, + [5217] = 5216, + [5218] = 5216, + [5219] = 5216, + [5220] = 5216, + [5221] = 5216, + [5222] = 4923, + [5223] = 5023, + [5224] = 5035, + [5225] = 5216, + [5226] = 5216, + [5227] = 5216, + [5228] = 4886, + [5229] = 5014, + [5230] = 5216, + [5231] = 5216, + [5232] = 4784, + [5233] = 4775, + [5234] = 5126, + [5235] = 5216, + [5236] = 4892, + [5237] = 5216, + [5238] = 5238, + [5239] = 4908, + [5240] = 505, + [5241] = 507, + [5242] = 508, + [5243] = 5216, + [5244] = 5216, + [5245] = 509, + [5246] = 5216, + [5247] = 517, + [5248] = 5216, + [5249] = 515, + [5250] = 514, + [5251] = 511, + [5252] = 1930, + [5253] = 510, + [5254] = 5051, + [5255] = 5159, + [5256] = 5168, + [5257] = 519, + [5258] = 5215, + [5259] = 5238, + [5260] = 516, + [5261] = 513, + [5262] = 512, + [5263] = 5216, + [5264] = 4826, + [5265] = 5173, + [5266] = 5091, + [5267] = 4883, + [5268] = 5216, + [5269] = 527, + [5270] = 4775, + [5271] = 527, + [5272] = 4905, + [5273] = 4892, + [5274] = 4940, + [5275] = 1547, + [5276] = 5216, + [5277] = 5216, + [5278] = 5278, + [5279] = 5216, + [5280] = 5101, + [5281] = 5117, + [5282] = 1549, + [5283] = 5216, + [5284] = 5216, + [5285] = 5133, + [5286] = 5135, + [5287] = 5141, + [5288] = 5144, + [5289] = 1397, + [5290] = 5216, + [5291] = 5148, + [5292] = 4983, + [5293] = 5216, + [5294] = 4923, + [5295] = 4886, + [5296] = 5216, + [5297] = 5150, + [5298] = 5158, + [5299] = 4910, + [5300] = 5216, + [5301] = 5216, + [5302] = 5216, + [5303] = 5216, + [5304] = 5216, + [5305] = 4826, + [5306] = 5216, + [5307] = 5216, + [5308] = 5216, + [5309] = 5216, + [5310] = 5216, + [5311] = 5216, + [5312] = 5172, + [5313] = 5176, + [5314] = 5178, + [5315] = 5216, + [5316] = 5216, + [5317] = 5179, + [5318] = 5215, + [5319] = 5121, + [5320] = 5238, + [5321] = 5216, + [5322] = 1393, + [5323] = 5278, + [5324] = 5216, + [5325] = 5216, + [5326] = 527, + [5327] = 5216, + [5328] = 5216, + [5329] = 4932, + [5330] = 4933, + [5331] = 5216, + [5332] = 5190, [5333] = 5333, - [5334] = 475, - [5335] = 5335, - [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, - [5361] = 5361, - [5362] = 5362, - [5363] = 5363, - [5364] = 5364, - [5365] = 469, - [5366] = 5366, - [5367] = 481, - [5368] = 5368, - [5369] = 5369, - [5370] = 471, - [5371] = 4238, - [5372] = 5372, - [5373] = 4233, - [5374] = 5374, - [5375] = 473, - [5376] = 5376, - [5377] = 476, - [5378] = 5378, - [5379] = 5379, - [5380] = 5380, - [5381] = 4182, - [5382] = 482, - [5383] = 5383, - [5384] = 484, - [5385] = 5385, - [5386] = 479, - [5387] = 5387, - [5388] = 1320, - [5389] = 5389, - [5390] = 488, - [5391] = 472, - [5392] = 480, - [5393] = 474, - [5394] = 1337, - [5395] = 4161, - [5396] = 4269, - [5397] = 1096, - [5398] = 5398, - [5399] = 5399, - [5400] = 5400, - [5401] = 5401, - [5402] = 5402, - [5403] = 5403, - [5404] = 483, - [5405] = 1457, - [5406] = 476, - [5407] = 1150, - [5408] = 1670, - [5409] = 491, - [5410] = 5410, - [5411] = 491, - [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, - [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, - [5616] = 5616, - [5617] = 460, - [5618] = 5618, - [5619] = 5619, - [5620] = 5619, + [5334] = 5216, + [5335] = 5191, + [5336] = 4784, + [5337] = 5337, + [5338] = 5216, + [5339] = 5216, + [5340] = 5216, + [5341] = 5216, + [5342] = 5039, + [5343] = 5050, + [5344] = 5216, + [5345] = 1231, + [5346] = 1930, + [5347] = 5216, + [5348] = 1397, + [5349] = 1239, + [5350] = 5216, + [5351] = 5216, + [5352] = 5216, + [5353] = 518, + [5354] = 5210, + [5355] = 5137, + [5356] = 5041, + [5357] = 5216, + [5358] = 4992, + [5359] = 5216, + [5360] = 504, + [5361] = 501, + [5362] = 5216, + [5363] = 5216, + [5364] = 5216, + [5365] = 5216, + [5366] = 5216, + [5367] = 5104, + [5368] = 5127, + [5369] = 1914, + [5370] = 5216, + [5371] = 1646, + [5372] = 5216, + [5373] = 4779, + [5374] = 5216, + [5375] = 4940, + [5376] = 4744, + [5377] = 4999, + [5378] = 4755, + [5379] = 1650, + [5380] = 4630, + [5381] = 5026, + [5382] = 5032, + [5383] = 4640, + [5384] = 5216, + [5385] = 4626, + [5386] = 4771, + [5387] = 4660, + [5388] = 5216, + [5389] = 500, + [5390] = 5333, + [5391] = 5278, + [5392] = 5216, + [5393] = 506, + [5394] = 5216, + [5395] = 5055, + [5396] = 4985, + [5397] = 4988, + [5398] = 5216, + [5399] = 5052, + [5400] = 5216, + [5401] = 5278, + [5402] = 5216, + [5403] = 5059, + [5404] = 5216, + [5405] = 5216, + [5406] = 1914, + [5407] = 5216, + [5408] = 5333, + [5409] = 1795, + [5410] = 503, + [5411] = 5216, + [5412] = 502, + [5413] = 4932, + [5414] = 5216, + [5415] = 5216, + [5416] = 1393, + [5417] = 4933, + [5418] = 5216, + [5419] = 4994, + [5420] = 4993, + [5421] = 5216, + [5422] = 5216, + [5423] = 5125, + [5424] = 5216, + [5425] = 5216, + [5426] = 5189, + [5427] = 527, + [5428] = 5039, + [5429] = 5050, + [5430] = 5430, + [5431] = 5430, + [5432] = 495, + [5433] = 495, + [5434] = 5126, + [5435] = 5127, + [5436] = 4994, + [5437] = 5091, + [5438] = 4940, + [5439] = 5439, + [5440] = 5159, + [5441] = 5173, + [5442] = 5091, + [5443] = 1914, + [5444] = 4983, + [5445] = 5445, + [5446] = 5121, + [5447] = 5137, + [5448] = 4992, + [5449] = 4923, + [5450] = 4886, + [5451] = 5430, + [5452] = 5104, + [5453] = 5051, + [5454] = 5430, + [5455] = 5439, + [5456] = 5055, + [5457] = 4826, + [5458] = 5091, + [5459] = 4985, + [5460] = 4988, + [5461] = 5439, + [5462] = 1393, + [5463] = 4932, + [5464] = 4933, + [5465] = 5430, + [5466] = 4784, + [5467] = 4775, + [5468] = 4892, + [5469] = 495, + [5470] = 1580, + [5471] = 4993, + [5472] = 4443, + [5473] = 5210, + [5474] = 4999, + [5475] = 4994, + [5476] = 5051, + [5477] = 5439, + [5478] = 5210, + [5479] = 4994, + [5480] = 1397, + [5481] = 5430, + [5482] = 5168, + [5483] = 5051, + [5484] = 5014, + [5485] = 5430, + [5486] = 5210, + [5487] = 5439, + [5488] = 5023, + [5489] = 5035, + [5490] = 5439, + [5491] = 5101, + [5492] = 1930, + [5493] = 5439, + [5494] = 5430, + [5495] = 5117, + [5496] = 5133, + [5497] = 5125, + [5498] = 5135, + [5499] = 5141, + [5500] = 5041, + [5501] = 5052, + [5502] = 5059, + [5503] = 5144, + [5504] = 5026, + [5505] = 5032, + [5506] = 5430, + [5507] = 5148, + [5508] = 5150, + [5509] = 5439, + [5510] = 5158, + [5511] = 5172, + [5512] = 5176, + [5513] = 5178, + [5514] = 5051, + [5515] = 5179, + [5516] = 5180, + [5517] = 5189, + [5518] = 5518, + [5519] = 519, + [5520] = 5190, + [5521] = 5191, + [5522] = 5439, + [5523] = 5091, + [5524] = 4272, + [5525] = 5100, + [5526] = 5526, + [5527] = 497, + [5528] = 494, + [5529] = 496, + [5530] = 5530, + [5531] = 5531, + [5532] = 4615, + [5533] = 1078, + [5534] = 4610, + [5535] = 5535, + [5536] = 5536, + [5537] = 5537, + [5538] = 5526, + [5539] = 5531, + [5540] = 5536, + [5541] = 4611, + [5542] = 1267, + [5543] = 5543, + [5544] = 5544, + [5545] = 495, + [5546] = 5546, + [5547] = 496, + [5548] = 5548, + [5549] = 5549, + [5550] = 5550, + [5551] = 497, + [5552] = 5552, + [5553] = 5552, + [5554] = 1166, + [5555] = 4272, + [5556] = 1215, + [5557] = 1216, + [5558] = 923, + [5559] = 5559, + [5560] = 497, + [5561] = 497, + [5562] = 496, + [5563] = 495, + [5564] = 496, + [5565] = 5549, + [5566] = 5051, + [5567] = 5091, + [5568] = 5559, + [5569] = 1167, + [5570] = 925, + [5571] = 494, + [5572] = 5530, + [5573] = 5535, + [5574] = 5559, + [5575] = 5537, + [5576] = 5537, + [5577] = 496, + [5578] = 5531, + [5579] = 898, + [5580] = 5548, + [5581] = 495, + [5582] = 5530, + [5583] = 5583, + [5584] = 5543, + [5585] = 5544, + [5586] = 5546, + [5587] = 495, + [5588] = 5588, + [5589] = 4443, + [5590] = 5543, + [5591] = 5544, + [5592] = 5546, + [5593] = 5548, + [5594] = 495, + [5595] = 5595, + [5596] = 5550, + [5597] = 5536, + [5598] = 5526, + [5599] = 5549, + [5600] = 4563, + [5601] = 5550, + [5602] = 527, + [5603] = 899, + [5604] = 497, + [5605] = 495, + [5606] = 5552, + [5607] = 5535, + [5608] = 4610, + [5609] = 4563, + [5610] = 4443, + [5611] = 4615, + [5612] = 1078, + [5613] = 4611, + [5614] = 1267, + [5615] = 898, + [5616] = 899, + [5617] = 923, + [5618] = 925, + [5619] = 4591, + [5620] = 4594, [5621] = 5621, - [5622] = 5619, - [5623] = 5621, - [5624] = 5621, - [5625] = 5621, - [5626] = 5619, - [5627] = 5621, - [5628] = 5619, - [5629] = 5621, - [5630] = 5619, - [5631] = 5621, - [5632] = 5619, - [5633] = 5621, - [5634] = 5619, - [5635] = 5621, - [5636] = 5621, - [5637] = 5619, - [5638] = 5621, - [5639] = 5619, - [5640] = 5621, - [5641] = 5619, - [5642] = 5619, - [5643] = 5621, - [5644] = 5619, - [5645] = 5621, - [5646] = 5619, - [5647] = 5621, - [5648] = 5621, - [5649] = 5619, - [5650] = 5621, - [5651] = 5619, - [5652] = 5621, - [5653] = 5619, - [5654] = 5619, - [5655] = 5619, - [5656] = 5621, - [5657] = 5619, - [5658] = 5621, - [5659] = 5621, - [5660] = 5619, - [5661] = 5619, - [5662] = 5621, - [5663] = 5621, - [5664] = 5619, - [5665] = 5621, - [5666] = 5619, - [5667] = 5621, - [5668] = 5619, - [5669] = 5619, - [5670] = 5621, - [5671] = 5619, - [5672] = 5619, - [5673] = 5621, - [5674] = 5619, - [5675] = 5621, - [5676] = 5621, - [5677] = 5619, - [5678] = 5619, - [5679] = 5621, - [5680] = 5619, - [5681] = 5621, - [5682] = 5619, - [5683] = 5621, - [5684] = 5619, - [5685] = 5621, - [5686] = 5619, - [5687] = 5619, - [5688] = 5621, - [5689] = 5621, - [5690] = 5619, - [5691] = 5621, - [5692] = 5621, - [5693] = 5621, - [5694] = 5619, - [5695] = 5621, - [5696] = 5619, - [5697] = 5619, - [5698] = 5621, - [5699] = 5619, - [5700] = 5621, - [5701] = 5621, - [5702] = 5619, - [5703] = 5621, - [5704] = 5621, - [5705] = 5619, - [5706] = 5619, - [5707] = 5621, - [5708] = 5619, - [5709] = 5621, - [5710] = 5619, - [5711] = 5621, - [5712] = 5621, - [5713] = 5619, - [5714] = 5621, - [5715] = 5619, - [5716] = 5619, - [5717] = 5621, - [5718] = 5621, - [5719] = 5619, - [5720] = 5621, - [5721] = 5619, - [5722] = 5621, - [5723] = 5619, - [5724] = 5621, - [5725] = 5619, - [5726] = 5619, - [5727] = 5619, - [5728] = 5621, - [5729] = 5619, - [5730] = 5621, - [5731] = 5619, - [5732] = 5621, - [5733] = 5619, - [5734] = 5621, - [5735] = 5619, - [5736] = 5621, - [5737] = 5621, - [5738] = 5619, - [5739] = 5621, - [5740] = 5619, - [5741] = 5621, - [5742] = 5619, - [5743] = 5621, - [5744] = 5744, - [5745] = 5621, - [5746] = 5619, - [5747] = 5621, - [5748] = 5619, - [5749] = 5621, - [5750] = 5619, - [5751] = 5621, - [5752] = 5619, - [5753] = 5621, - [5754] = 5619, - [5755] = 5621, - [5756] = 5619, - [5757] = 5619, - [5758] = 5621, - [5759] = 5619, - [5760] = 5621, - [5761] = 5619, - [5762] = 5621, - [5763] = 5621, - [5764] = 5619, - [5765] = 5619, - [5766] = 5621, - [5767] = 5619, - [5768] = 5619, - [5769] = 5621, - [5770] = 5619, - [5771] = 5619, - [5772] = 5621, - [5773] = 5621, - [5774] = 5774, - [5775] = 5774, + [5622] = 507, + [5623] = 5623, + [5624] = 5624, + [5625] = 502, + [5626] = 5626, + [5627] = 497, + [5628] = 5628, + [5629] = 496, + [5630] = 5630, + [5631] = 5631, + [5632] = 494, + [5633] = 5633, + [5634] = 1078, + [5635] = 898, + [5636] = 5626, + [5637] = 5637, + [5638] = 4626, + [5639] = 518, + [5640] = 899, + [5641] = 504, + [5642] = 501, + [5643] = 4594, + [5644] = 519, + [5645] = 4591, + [5646] = 505, + [5647] = 4660, + [5648] = 508, + [5649] = 500, + [5650] = 509, + [5651] = 506, + [5652] = 517, + [5653] = 509, + [5654] = 515, + [5655] = 514, + [5656] = 511, + [5657] = 5657, + [5658] = 5626, + [5659] = 510, + [5660] = 517, + [5661] = 516, + [5662] = 513, + [5663] = 512, + [5664] = 497, + [5665] = 5665, + [5666] = 503, + [5667] = 4563, + [5668] = 496, + [5669] = 5669, + [5670] = 497, + [5671] = 496, + [5672] = 4611, + [5673] = 5673, + [5674] = 494, + [5675] = 494, + [5676] = 497, + [5677] = 496, + [5678] = 5626, + [5679] = 5679, + [5680] = 5680, + [5681] = 4744, + [5682] = 5682, + [5683] = 495, + [5684] = 5684, + [5685] = 5685, + [5686] = 505, + [5687] = 515, + [5688] = 502, + [5689] = 5626, + [5690] = 514, + [5691] = 5691, + [5692] = 4610, + [5693] = 511, + [5694] = 5694, + [5695] = 923, + [5696] = 925, + [5697] = 1547, + [5698] = 898, + [5699] = 899, + [5700] = 4615, + [5701] = 5701, + [5702] = 4615, + [5703] = 1231, + [5704] = 1549, + [5705] = 518, + [5706] = 1078, + [5707] = 1267, + [5708] = 510, + [5709] = 5709, + [5710] = 923, + [5711] = 925, + [5712] = 1239, + [5713] = 1166, + [5714] = 1167, + [5715] = 5715, + [5716] = 504, + [5717] = 5626, + [5718] = 501, + [5719] = 5719, + [5720] = 5720, + [5721] = 507, + [5722] = 500, + [5723] = 5723, + [5724] = 506, + [5725] = 5725, + [5726] = 508, + [5727] = 4744, + [5728] = 4755, + [5729] = 4630, + [5730] = 5730, + [5731] = 4611, + [5732] = 4615, + [5733] = 1078, + [5734] = 898, + [5735] = 899, + [5736] = 4611, + [5737] = 1267, + [5738] = 923, + [5739] = 925, + [5740] = 1267, + [5741] = 516, + [5742] = 513, + [5743] = 512, + [5744] = 503, + [5745] = 5626, + [5746] = 4640, + [5747] = 5626, + [5748] = 4626, + [5749] = 5749, + [5750] = 5750, + [5751] = 4771, + [5752] = 5752, + [5753] = 5753, + [5754] = 518, + [5755] = 518, + [5756] = 5756, + [5757] = 5757, + [5758] = 505, + [5759] = 517, + [5760] = 1267, + [5761] = 505, + [5762] = 508, + [5763] = 504, + [5764] = 515, + [5765] = 504, + [5766] = 501, + [5767] = 514, + [5768] = 516, + [5769] = 501, + [5770] = 1239, + [5771] = 5771, + [5772] = 511, + [5773] = 527, + [5774] = 4630, + [5775] = 5775, [5776] = 5776, - [5777] = 5777, - [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, - [5794] = 5776, - [5795] = 5776, - [5796] = 5776, - [5797] = 5778, - [5798] = 5774, - [5799] = 5777, - [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, - [5818] = 5776, - [5819] = 5776, - [5820] = 5777, - [5821] = 5774, - [5822] = 5774, - [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, - [5837] = 5776, - [5838] = 5776, - [5839] = 5777, - [5840] = 5776, - [5841] = 5777, - [5842] = 5777, - [5843] = 5774, - [5844] = 5774, - [5845] = 5776, - [5846] = 5777, - [5847] = 5774, - [5848] = 5776, - [5849] = 5776, - [5850] = 5777, - [5851] = 5777, - [5852] = 5774, - [5853] = 5776, - [5854] = 5778, - [5855] = 5774, - [5856] = 5774, - [5857] = 5776, - [5858] = 5777, - [5859] = 5777, - [5860] = 5774, - [5861] = 5774, - [5862] = 5774, - [5863] = 5776, - [5864] = 5776, - [5865] = 5776, - [5866] = 5777, - [5867] = 5777, - [5868] = 5774, - [5869] = 5774, - [5870] = 5774, - [5871] = 5776, - [5872] = 5776, - [5873] = 5777, - [5874] = 5776, - [5875] = 5774, - [5876] = 5776, - [5877] = 5777, - [5878] = 5774, - [5879] = 5774, - [5880] = 5777, - [5881] = 5776, - [5882] = 5774, - [5883] = 5777, - [5884] = 5774, - [5885] = 5776, - [5886] = 5776, - [5887] = 5777, - [5888] = 5776, - [5889] = 5774, - [5890] = 5774, - [5891] = 5776, - [5892] = 5774, - [5893] = 5777, - [5894] = 5776, - [5895] = 5777, - [5896] = 5776, - [5897] = 5774, - [5898] = 5776, - [5899] = 5776, - [5900] = 5777, - [5901] = 5777, - [5902] = 5774, - [5903] = 5778, - [5904] = 5774, - [5905] = 5776, - [5906] = 5777, - [5907] = 5774, - [5908] = 5776, - [5909] = 5774, - [5910] = 5774, - [5911] = 5776, - [5912] = 5777, - [5913] = 5776, - [5914] = 5776, - [5915] = 5774, - [5916] = 5776, - [5917] = 5777, - [5918] = 5774, - [5919] = 5774, - [5920] = 5776, - [5921] = 5777, - [5922] = 5774, - [5923] = 5774, - [5924] = 5776, - [5925] = 5777, - [5926] = 5774, - [5927] = 5776, - [5928] = 5777, - [5929] = 5777, - [5930] = 5777, - [5931] = 5774, - [5932] = 5774, - [5933] = 5778, - [5934] = 5776, - [5935] = 5777, - [5936] = 5776, - [5937] = 5774, - [5938] = 5776, - [5939] = 5776, - [5940] = 5777, - [5941] = 5774, - [5942] = 5774, - [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, - [5958] = 5776, - [5959] = 5774, - [5960] = 5776, - [5961] = 5776, - [5962] = 5777, - [5963] = 5774, - [5964] = 5778, - [5965] = 5774, - [5966] = 5776, - [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, - [5996] = 5774, - [5997] = 5776, - [5998] = 5777, - [5999] = 5776, - [6000] = 6000, - [6001] = 6000, - [6002] = 6000, - [6003] = 6000, - [6004] = 476, - [6005] = 479, - [6006] = 6000, - [6007] = 6000, - [6008] = 6000, - [6009] = 6000, - [6010] = 6010, - [6011] = 6000, - [6012] = 6012, - [6013] = 6013, - [6014] = 6012, - [6015] = 6015, - [6016] = 6016, - [6017] = 6012, - [6018] = 6012, - [6019] = 6016, - [6020] = 6012, - [6021] = 6012, - [6022] = 6012, - [6023] = 6023, - [6024] = 6016, - [6025] = 6012, - [6026] = 6012, - [6027] = 6012, - [6028] = 6016, - [6029] = 6012, - [6030] = 6016, - [6031] = 6031, - [6032] = 6016, - [6033] = 6012, - [6034] = 6012, - [6035] = 6012, - [6036] = 6012, - [6037] = 6012, - [6038] = 6012, - [6039] = 6012, - [6040] = 6012, - [6041] = 6016, - [6042] = 6012, - [6043] = 6012, - [6044] = 6012, - [6045] = 6016, - [6046] = 6012, - [6047] = 6012, - [6048] = 6012, - [6049] = 6012, - [6050] = 6016, - [6051] = 6012, - [6052] = 6052, - [6053] = 6053, - [6054] = 6054, - [6055] = 482, - [6056] = 483, - [6057] = 6053, - [6058] = 6052, - [6059] = 6052, - [6060] = 484, - [6061] = 6052, - [6062] = 6054, - [6063] = 6063, - [6064] = 6053, - [6065] = 6052, - [6066] = 6054, - [6067] = 6054, - [6068] = 6054, - [6069] = 6069, - [6070] = 481, - [6071] = 6054, - [6072] = 6054, - [6073] = 6053, - [6074] = 6052, - [6075] = 474, - [6076] = 1045, - [6077] = 479, - [6078] = 6053, - [6079] = 6053, - [6080] = 480, - [6081] = 6053, - [6082] = 472, - [6083] = 476, - [6084] = 6052, - [6085] = 6085, - [6086] = 6053, - [6087] = 6052, - [6088] = 6054, - [6089] = 6089, - [6090] = 465, - [6091] = 6091, - [6092] = 6092, - [6093] = 6093, - [6094] = 6094, - [6095] = 6095, - [6096] = 6096, - [6097] = 6097, - [6098] = 464, - [6099] = 463, - [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, - [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, - [6152] = 6152, - [6153] = 6153, - [6154] = 6154, - [6155] = 6154, - [6156] = 6154, - [6157] = 6157, - [6158] = 6154, - [6159] = 6159, - [6160] = 6154, - [6161] = 6161, - [6162] = 6154, - [6163] = 6154, - [6164] = 6154, - [6165] = 6165, - [6166] = 6154, - [6167] = 6154, - [6168] = 6168, - [6169] = 6154, - [6170] = 6154, - [6171] = 6171, - [6172] = 6154, - [6173] = 6173, - [6174] = 6174, - [6175] = 6175, - [6176] = 6176, - [6177] = 6177, - [6178] = 6178, - [6179] = 6154, - [6180] = 6154, - [6181] = 6181, - [6182] = 6154, - [6183] = 6154, - [6184] = 6154, - [6185] = 6154, - [6186] = 6154, - [6187] = 6154, - [6188] = 6188, - [6189] = 6154, - [6190] = 6190, - [6191] = 6191, - [6192] = 6154, - [6193] = 6154, - [6194] = 6176, - [6195] = 6154, - [6196] = 6154, - [6197] = 6197, - [6198] = 465, - [6199] = 6199, - [6200] = 6177, - [6201] = 6154, - [6202] = 6154, - [6203] = 6154, - [6204] = 6204, - [6205] = 6205, - [6206] = 6206, - [6207] = 6154, - [6208] = 6208, - [6209] = 6154, - [6210] = 6154, - [6211] = 6154, - [6212] = 6154, - [6213] = 6154, - [6214] = 6154, - [6215] = 6154, - [6216] = 6216, - [6217] = 6154, - [6218] = 6176, - [6219] = 6177, - [6220] = 6154, - [6221] = 6154, - [6222] = 6177, - [6223] = 6223, - [6224] = 6224, - [6225] = 473, - [6226] = 6154, - [6227] = 6227, - [6228] = 6154, - [6229] = 6181, - [6230] = 6154, - [6231] = 6154, - [6232] = 6232, - [6233] = 491, - [6234] = 6154, - [6235] = 6154, - [6236] = 6154, - [6237] = 6154, - [6238] = 6154, - [6239] = 6239, - [6240] = 6240, - [6241] = 6154, - [6242] = 6242, - [6243] = 6154, - [6244] = 6154, - [6245] = 469, - [6246] = 6246, - [6247] = 6181, - [6248] = 6248, - [6249] = 6249, - [6250] = 6154, - [6251] = 6154, - [6252] = 6154, - [6253] = 6253, - [6254] = 6154, - [6255] = 6154, - [6256] = 471, - [6257] = 6154, - [6258] = 6154, - [6259] = 6154, - [6260] = 6154, - [6261] = 6176, - [6262] = 6154, - [6263] = 6154, - [6264] = 6154, - [6265] = 6265, - [6266] = 6154, - [6267] = 6267, - [6268] = 6154, - [6269] = 6154, - [6270] = 6181, - [6271] = 6154, - [6272] = 6272, - [6273] = 6154, - [6274] = 6154, - [6275] = 6275, - [6276] = 2495, - [6277] = 6277, - [6278] = 6278, - [6279] = 6279, - [6280] = 6280, - [6281] = 6281, - [6282] = 6282, - [6283] = 6283, - [6284] = 6284, - [6285] = 6285, - [6286] = 6286, - [6287] = 6287, - [6288] = 6288, - [6289] = 6289, - [6290] = 6290, - [6291] = 6287, - [6292] = 6292, - [6293] = 6279, - [6294] = 6294, - [6295] = 6295, + [5777] = 515, + [5778] = 514, + [5779] = 518, + [5780] = 1547, + [5781] = 5781, + [5782] = 5782, + [5783] = 5783, + [5784] = 5784, + [5785] = 503, + [5786] = 500, + [5787] = 506, + [5788] = 5788, + [5789] = 500, + [5790] = 1549, + [5791] = 4755, + [5792] = 503, + [5793] = 5793, + [5794] = 5794, + [5795] = 502, + [5796] = 5796, + [5797] = 510, + [5798] = 1549, + [5799] = 506, + [5800] = 5800, + [5801] = 507, + [5802] = 5802, + [5803] = 511, + [5804] = 5804, + [5805] = 5805, + [5806] = 5806, + [5807] = 925, + [5808] = 5808, + [5809] = 1231, + [5810] = 5810, + [5811] = 5811, + [5812] = 502, + [5813] = 5813, + [5814] = 503, + [5815] = 1078, + [5816] = 513, + [5817] = 509, + [5818] = 517, + [5819] = 510, + [5820] = 5820, + [5821] = 517, + [5822] = 5822, + [5823] = 5823, + [5824] = 5824, + [5825] = 5825, + [5826] = 502, + [5827] = 510, + [5828] = 5828, + [5829] = 5829, + [5830] = 5830, + [5831] = 1580, + [5832] = 500, + [5833] = 519, + [5834] = 1239, + [5835] = 1547, + [5836] = 516, + [5837] = 513, + [5838] = 512, + [5839] = 4640, + [5840] = 514, + [5841] = 5841, + [5842] = 5842, + [5843] = 5843, + [5844] = 516, + [5845] = 513, + [5846] = 512, + [5847] = 5847, + [5848] = 512, + [5849] = 5849, + [5850] = 506, + [5851] = 5851, + [5852] = 5852, + [5853] = 5853, + [5854] = 5854, + [5855] = 4611, + [5856] = 5856, + [5857] = 5857, + [5858] = 5858, + [5859] = 5859, + [5860] = 505, + [5861] = 507, + [5862] = 5862, + [5863] = 4744, + [5864] = 5864, + [5865] = 508, + [5866] = 519, + [5867] = 5867, + [5868] = 5868, + [5869] = 5869, + [5870] = 507, + [5871] = 504, + [5872] = 5872, + [5873] = 1529, + [5874] = 511, + [5875] = 5875, + [5876] = 5876, + [5877] = 898, + [5878] = 899, + [5879] = 5879, + [5880] = 5880, + [5881] = 5881, + [5882] = 5882, + [5883] = 923, + [5884] = 5884, + [5885] = 509, + [5886] = 1231, + [5887] = 4660, + [5888] = 5888, + [5889] = 497, + [5890] = 519, + [5891] = 4615, + [5892] = 496, + [5893] = 5893, + [5894] = 519, + [5895] = 515, + [5896] = 494, + [5897] = 5897, + [5898] = 508, + [5899] = 5899, + [5900] = 4626, + [5901] = 4771, + [5902] = 501, + [5903] = 509, + [5904] = 5904, + [5905] = 5905, + [5906] = 5906, + [5907] = 5907, + [5908] = 5908, + [5909] = 5909, + [5910] = 5910, + [5911] = 511, + [5912] = 5091, + [5913] = 5913, + [5914] = 527, + [5915] = 5915, + [5916] = 510, + [5917] = 1397, + [5918] = 502, + [5919] = 5919, + [5920] = 5920, + [5921] = 506, + [5922] = 495, + [5923] = 514, + [5924] = 5924, + [5925] = 5915, + [5926] = 509, + [5927] = 1549, + [5928] = 515, + [5929] = 5915, + [5930] = 519, + [5931] = 5931, + [5932] = 527, + [5933] = 527, + [5934] = 508, + [5935] = 5920, + [5936] = 507, + [5937] = 1914, + [5938] = 503, + [5939] = 504, + [5940] = 501, + [5941] = 5920, + [5942] = 500, + [5943] = 516, + [5944] = 5915, + [5945] = 1239, + [5946] = 5946, + [5947] = 5920, + [5948] = 1930, + [5949] = 5920, + [5950] = 5051, + [5951] = 5951, + [5952] = 1547, + [5953] = 505, + [5954] = 517, + [5955] = 512, + [5956] = 527, + [5957] = 513, + [5958] = 1393, + [5959] = 5915, + [5960] = 518, + [5961] = 1231, + [5962] = 5133, + [5963] = 5963, + [5964] = 5963, + [5965] = 491, + [5966] = 4784, + [5967] = 490, + [5968] = 4940, + [5969] = 1650, + [5970] = 5104, + [5971] = 5963, + [5972] = 5972, + [5973] = 898, + [5974] = 899, + [5975] = 5963, + [5976] = 5051, + [5977] = 4892, + [5978] = 5963, + [5979] = 5963, + [5980] = 923, + [5981] = 925, + [5982] = 4932, + [5983] = 1914, + [5984] = 1393, + [5985] = 5963, + [5986] = 5963, + [5987] = 4563, + [5988] = 4905, + [5989] = 1397, + [5990] = 4775, + [5991] = 4855, + [5992] = 5963, + [5993] = 4826, + [5994] = 1914, + [5995] = 4923, + [5996] = 4779, + [5997] = 1930, + [5998] = 497, + [5999] = 496, + [6000] = 494, + [6001] = 5963, + [6002] = 4933, + [6003] = 5168, + [6004] = 4883, + [6005] = 5101, + [6006] = 4886, + [6007] = 5117, + [6008] = 5135, + [6009] = 5141, + [6010] = 5144, + [6011] = 5148, + [6012] = 5150, + [6013] = 5158, + [6014] = 4910, + [6015] = 5172, + [6016] = 5176, + [6017] = 5178, + [6018] = 5179, + [6019] = 5180, + [6020] = 5189, + [6021] = 5190, + [6022] = 5191, + [6023] = 5039, + [6024] = 5050, + [6025] = 5091, + [6026] = 527, + [6027] = 4615, + [6028] = 1078, + [6029] = 1393, + [6030] = 1930, + [6031] = 4611, + [6032] = 1267, + [6033] = 1646, + [6034] = 1397, + [6035] = 1795, + [6036] = 4908, + [6037] = 5127, + [6038] = 5191, + [6039] = 4784, + [6040] = 5041, + [6041] = 5052, + [6042] = 5059, + [6043] = 5039, + [6044] = 1547, + [6045] = 5050, + [6046] = 5104, + [6047] = 511, + [6048] = 4892, + [6049] = 1231, + [6050] = 504, + [6051] = 501, + [6052] = 1397, + [6053] = 5126, + [6054] = 5032, + [6055] = 518, + [6056] = 4932, + [6057] = 500, + [6058] = 506, + [6059] = 503, + [6060] = 4940, + [6061] = 5159, + [6062] = 502, + [6063] = 5173, + [6064] = 4983, + [6065] = 4933, + [6066] = 5121, + [6067] = 5137, + [6068] = 4992, + [6069] = 5125, + [6070] = 5055, + [6071] = 4985, + [6072] = 4988, + [6073] = 5101, + [6074] = 516, + [6075] = 5117, + [6076] = 5133, + [6077] = 507, + [6078] = 1914, + [6079] = 5190, + [6080] = 4923, + [6081] = 1239, + [6082] = 1930, + [6083] = 517, + [6084] = 4993, + [6085] = 5100, + [6086] = 519, + [6087] = 5135, + [6088] = 513, + [6089] = 5141, + [6090] = 5144, + [6091] = 512, + [6092] = 4886, + [6093] = 5148, + [6094] = 5150, + [6095] = 5158, + [6096] = 5023, + [6097] = 505, + [6098] = 5035, + [6099] = 4999, + [6100] = 4775, + [6101] = 508, + [6102] = 1393, + [6103] = 515, + [6104] = 514, + [6105] = 5172, + [6106] = 509, + [6107] = 5176, + [6108] = 5178, + [6109] = 5179, + [6110] = 5180, + [6111] = 1549, + [6112] = 5014, + [6113] = 5189, + [6114] = 5168, + [6115] = 4826, + [6116] = 5026, + [6117] = 510, + [6118] = 527, + [6119] = 1397, + [6120] = 1930, + [6121] = 491, + [6122] = 490, + [6123] = 1914, + [6124] = 1393, + [6125] = 6125, + [6126] = 6126, + [6127] = 6127, + [6128] = 6127, + [6129] = 6129, + [6130] = 6127, + [6131] = 6129, + [6132] = 6127, + [6133] = 6129, + [6134] = 6127, + [6135] = 6127, + [6136] = 6129, + [6137] = 6127, + [6138] = 6129, + [6139] = 6129, + [6140] = 6127, + [6141] = 6129, + [6142] = 6129, + [6143] = 6129, + [6144] = 6127, + [6145] = 6129, + [6146] = 6127, + [6147] = 6129, + [6148] = 6127, + [6149] = 6129, + [6150] = 6127, + [6151] = 6129, + [6152] = 6127, + [6153] = 6129, + [6154] = 6127, + [6155] = 6129, + [6156] = 6127, + [6157] = 6129, + [6158] = 6127, + [6159] = 6129, + [6160] = 6127, + [6161] = 6129, + [6162] = 6127, + [6163] = 6129, + [6164] = 6127, + [6165] = 6129, + [6166] = 6127, + [6167] = 6129, + [6168] = 6127, + [6169] = 6129, + [6170] = 6127, + [6171] = 6129, + [6172] = 6127, + [6173] = 6127, + [6174] = 6129, + [6175] = 6127, + [6176] = 6129, + [6177] = 6127, + [6178] = 6129, + [6179] = 6127, + [6180] = 6129, + [6181] = 6127, + [6182] = 6129, + [6183] = 6127, + [6184] = 6129, + [6185] = 6127, + [6186] = 6129, + [6187] = 6127, + [6188] = 6129, + [6189] = 6129, + [6190] = 6129, + [6191] = 6127, + [6192] = 6127, + [6193] = 6129, + [6194] = 6129, + [6195] = 6127, + [6196] = 6129, + [6197] = 6127, + [6198] = 6129, + [6199] = 6129, + [6200] = 6127, + [6201] = 6127, + [6202] = 6129, + [6203] = 6127, + [6204] = 6129, + [6205] = 6127, + [6206] = 6129, + [6207] = 6127, + [6208] = 6127, + [6209] = 6129, + [6210] = 6129, + [6211] = 6129, + [6212] = 6127, + [6213] = 6129, + [6214] = 6127, + [6215] = 6129, + [6216] = 6127, + [6217] = 6129, + [6218] = 6129, + [6219] = 6129, + [6220] = 6127, + [6221] = 6127, + [6222] = 6129, + [6223] = 6129, + [6224] = 6127, + [6225] = 6127, + [6226] = 6129, + [6227] = 6129, + [6228] = 6127, + [6229] = 6129, + [6230] = 6127, + [6231] = 6129, + [6232] = 6127, + [6233] = 6127, + [6234] = 6129, + [6235] = 6127, + [6236] = 6127, + [6237] = 6129, + [6238] = 6129, + [6239] = 6127, + [6240] = 6127, + [6241] = 6127, + [6242] = 6127, + [6243] = 6129, + [6244] = 6129, + [6245] = 6127, + [6246] = 6127, + [6247] = 6129, + [6248] = 6129, + [6249] = 6127, + [6250] = 6127, + [6251] = 6129, + [6252] = 6129, + [6253] = 6127, + [6254] = 6127, + [6255] = 6129, + [6256] = 6129, + [6257] = 6127, + [6258] = 6129, + [6259] = 6129, + [6260] = 6127, + [6261] = 6129, + [6262] = 6127, + [6263] = 6129, + [6264] = 6127, + [6265] = 6127, + [6266] = 6129, + [6267] = 6127, + [6268] = 6129, + [6269] = 6129, + [6270] = 6127, + [6271] = 6129, + [6272] = 6127, + [6273] = 6127, + [6274] = 6129, + [6275] = 6129, + [6276] = 6276, + [6277] = 6127, + [6278] = 6127, + [6279] = 6129, + [6280] = 6127, + [6281] = 6129, + [6282] = 6127, + [6283] = 6129, + [6284] = 6127, + [6285] = 6127, + [6286] = 6129, + [6287] = 6127, + [6288] = 6127, + [6289] = 6129, + [6290] = 6127, + [6291] = 6129, + [6292] = 6127, + [6293] = 6129, + [6294] = 6127, + [6295] = 6129, [6296] = 6296, - [6297] = 6288, - [6298] = 6289, - [6299] = 6290, + [6297] = 6297, + [6298] = 6298, + [6299] = 6296, [6300] = 6300, - [6301] = 6301, - [6302] = 6279, - [6303] = 463, - [6304] = 483, - [6305] = 6305, - [6306] = 2565, - [6307] = 6307, - [6308] = 6300, - [6309] = 6309, - [6310] = 6310, - [6311] = 6311, - [6312] = 6312, - [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, - [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, - [6398] = 6398, - [6399] = 2595, - [6400] = 2596, - [6401] = 473, - [6402] = 477, - [6403] = 469, - [6404] = 471, - [6405] = 476, - [6406] = 479, - [6407] = 480, - [6408] = 481, - [6409] = 6409, - [6410] = 482, - [6411] = 483, - [6412] = 484, - [6413] = 6413, - [6414] = 6414, - [6415] = 487, - [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, - [6431] = 483, - [6432] = 484, - [6433] = 6433, - [6434] = 1673, - [6435] = 6435, - [6436] = 2587, - [6437] = 6437, - [6438] = 1468, - [6439] = 6439, - [6440] = 6440, - [6441] = 6441, - [6442] = 6442, - [6443] = 6443, - [6444] = 6444, - [6445] = 470, - [6446] = 478, - [6447] = 486, - [6448] = 6448, - [6449] = 487, - [6450] = 6450, - [6451] = 6450, - [6452] = 6450, - [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, - [6472] = 6472, - [6473] = 6473, - [6474] = 6457, - [6475] = 6475, - [6476] = 6457, - [6477] = 6361, - [6478] = 6478, - [6479] = 472, - [6480] = 6457, - [6481] = 6457, - [6482] = 6482, - [6483] = 6450, - [6484] = 491, - [6485] = 474, - [6486] = 6457, - [6487] = 6450, - [6488] = 6488, - [6489] = 6457, - [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, - [6521] = 6521, - [6522] = 6450, - [6523] = 6450, - [6524] = 2495, - [6525] = 2487, - [6526] = 6450, - [6527] = 6450, - [6528] = 473, - [6529] = 6450, - [6530] = 6450, - [6531] = 6450, - [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, - [6546] = 6546, - [6547] = 6450, - [6548] = 6450, - [6549] = 6450, - [6550] = 6450, + [6301] = 6300, + [6302] = 6296, + [6303] = 6298, + [6304] = 6296, + [6305] = 6300, + [6306] = 6297, + [6307] = 6297, + [6308] = 6298, + [6309] = 6297, + [6310] = 6298, + [6311] = 6296, + [6312] = 6298, + [6313] = 6297, + [6314] = 6296, + [6315] = 6296, + [6316] = 6297, + [6317] = 6298, + [6318] = 6297, + [6319] = 6298, + [6320] = 6296, + [6321] = 6298, + [6322] = 6297, + [6323] = 6296, + [6324] = 6300, + [6325] = 6298, + [6326] = 6297, + [6327] = 6297, + [6328] = 6298, + [6329] = 6298, + [6330] = 6298, + [6331] = 6296, + [6332] = 6296, + [6333] = 6296, + [6334] = 6297, + [6335] = 6296, + [6336] = 6298, + [6337] = 6297, + [6338] = 6297, + [6339] = 6297, + [6340] = 6298, + [6341] = 6296, + [6342] = 6298, + [6343] = 6296, + [6344] = 6296, + [6345] = 6297, + [6346] = 6296, + [6347] = 6297, + [6348] = 6296, + [6349] = 6298, + [6350] = 6296, + [6351] = 6296, + [6352] = 6297, + [6353] = 6296, + [6354] = 6297, + [6355] = 6296, + [6356] = 6297, + [6357] = 6297, + [6358] = 6297, + [6359] = 6298, + [6360] = 6298, + [6361] = 6296, + [6362] = 6297, + [6363] = 6300, + [6364] = 6296, + [6365] = 6297, + [6366] = 6296, + [6367] = 6298, + [6368] = 6297, + [6369] = 6297, + [6370] = 6297, + [6371] = 6298, + [6372] = 6296, + [6373] = 6298, + [6374] = 6298, + [6375] = 6296, + [6376] = 6297, + [6377] = 6297, + [6378] = 6296, + [6379] = 6297, + [6380] = 6300, + [6381] = 6298, + [6382] = 6296, + [6383] = 6297, + [6384] = 6296, + [6385] = 6296, + [6386] = 6297, + [6387] = 6298, + [6388] = 6297, + [6389] = 6298, + [6390] = 6297, + [6391] = 6296, + [6392] = 6297, + [6393] = 6297, + [6394] = 6296, + [6395] = 6298, + [6396] = 6298, + [6397] = 6296, + [6398] = 6298, + [6399] = 6297, + [6400] = 6298, + [6401] = 6297, + [6402] = 6298, + [6403] = 6296, + [6404] = 6296, + [6405] = 6296, + [6406] = 6296, + [6407] = 6297, + [6408] = 6297, + [6409] = 6300, + [6410] = 6298, + [6411] = 6297, + [6412] = 6298, + [6413] = 6296, + [6414] = 6296, + [6415] = 6296, + [6416] = 6296, + [6417] = 6296, + [6418] = 6296, + [6419] = 6297, + [6420] = 6297, + [6421] = 6298, + [6422] = 6297, + [6423] = 6298, + [6424] = 6297, + [6425] = 6296, + [6426] = 6296, + [6427] = 6297, + [6428] = 6296, + [6429] = 6298, + [6430] = 6297, + [6431] = 6298, + [6432] = 6297, + [6433] = 6298, + [6434] = 6297, + [6435] = 6298, + [6436] = 6296, + [6437] = 6296, + [6438] = 6296, + [6439] = 6296, + [6440] = 6296, + [6441] = 6297, + [6442] = 6297, + [6443] = 6298, + [6444] = 6297, + [6445] = 6298, + [6446] = 6298, + [6447] = 6296, + [6448] = 6296, + [6449] = 6297, + [6450] = 6296, + [6451] = 6298, + [6452] = 6297, + [6453] = 6297, + [6454] = 6296, + [6455] = 6298, + [6456] = 6297, + [6457] = 6296, + [6458] = 6297, + [6459] = 6298, + [6460] = 6297, + [6461] = 6296, + [6462] = 6297, + [6463] = 6297, + [6464] = 6298, + [6465] = 6296, + [6466] = 6296, + [6467] = 6296, + [6468] = 6296, + [6469] = 6297, + [6470] = 6298, + [6471] = 6298, + [6472] = 6298, + [6473] = 6298, + [6474] = 6296, + [6475] = 6297, + [6476] = 6297, + [6477] = 6298, + [6478] = 6297, + [6479] = 6296, + [6480] = 6298, + [6481] = 6297, + [6482] = 6298, + [6483] = 6298, + [6484] = 6296, + [6485] = 6297, + [6486] = 6297, + [6487] = 6298, + [6488] = 6296, + [6489] = 6296, + [6490] = 6297, + [6491] = 6297, + [6492] = 6298, + [6493] = 6297, + [6494] = 6296, + [6495] = 6297, + [6496] = 6296, + [6497] = 6298, + [6498] = 6297, + [6499] = 6298, + [6500] = 6297, + [6501] = 6297, + [6502] = 6298, + [6503] = 6297, + [6504] = 6296, + [6505] = 6298, + [6506] = 6300, + [6507] = 6297, + [6508] = 6297, + [6509] = 6298, + [6510] = 6296, + [6511] = 6296, + [6512] = 6296, + [6513] = 6298, + [6514] = 6296, + [6515] = 6296, + [6516] = 6296, + [6517] = 6297, + [6518] = 6297, + [6519] = 6298, + [6520] = 6297, + [6521] = 6298, + [6522] = 6298, + [6523] = 6296, + [6524] = 6300, + [6525] = 6297, + [6526] = 6298, + [6527] = 6297, + [6528] = 6298, + [6529] = 6298, + [6530] = 6296, + [6531] = 6297, + [6532] = 6296, + [6533] = 6297, + [6534] = 6298, + [6535] = 6298, + [6536] = 6296, + [6537] = 6298, + [6538] = 6296, + [6539] = 6296, + [6540] = 6297, + [6541] = 6298, + [6542] = 6296, + [6543] = 6296, + [6544] = 6544, + [6545] = 6544, + [6546] = 515, + [6547] = 514, + [6548] = 6544, + [6549] = 6544, + [6550] = 6544, [6551] = 6551, - [6552] = 6450, - [6553] = 6450, - [6554] = 6450, - [6555] = 6462, - [6556] = 6457, - [6557] = 6450, - [6558] = 6450, - [6559] = 6457, - [6560] = 6450, - [6561] = 6561, - [6562] = 6499, - [6563] = 6450, - [6564] = 6450, - [6565] = 6565, - [6566] = 6450, + [6552] = 6544, + [6553] = 6544, + [6554] = 6544, + [6555] = 6544, + [6556] = 6544, + [6557] = 6557, + [6558] = 6558, + [6559] = 6559, + [6560] = 6557, + [6561] = 6557, + [6562] = 6557, + [6563] = 6559, + [6564] = 6557, + [6565] = 6559, + [6566] = 6557, [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, + [6568] = 6557, + [6569] = 6557, + [6570] = 6557, + [6571] = 6557, + [6572] = 6557, + [6573] = 6557, + [6574] = 6557, + [6575] = 6557, + [6576] = 6557, + [6577] = 6557, + [6578] = 6557, + [6579] = 6557, + [6580] = 6557, + [6581] = 6557, + [6582] = 6559, + [6583] = 6583, + [6584] = 6557, [6585] = 6585, - [6586] = 6450, - [6587] = 6457, - [6588] = 6457, - [6589] = 6589, - [6590] = 6590, - [6591] = 482, - [6592] = 6462, - [6593] = 483, - [6594] = 484, - [6595] = 6457, - [6596] = 6450, - [6597] = 6450, - [6598] = 6450, - [6599] = 6599, - [6600] = 6450, - [6601] = 6450, + [6586] = 6559, + [6587] = 6557, + [6588] = 6557, + [6589] = 6557, + [6590] = 6557, + [6591] = 6557, + [6592] = 6557, + [6593] = 6557, + [6594] = 6559, + [6595] = 6557, + [6596] = 6559, + [6597] = 6559, + [6598] = 6557, + [6599] = 6559, + [6600] = 6600, + [6601] = 6601, [6602] = 6602, - [6603] = 6450, - [6604] = 6462, - [6605] = 6605, - [6606] = 6450, - [6607] = 6457, - [6608] = 6457, + [6603] = 6602, + [6604] = 6602, + [6605] = 6602, + [6606] = 515, + [6607] = 6600, + [6608] = 6600, [6609] = 6609, - [6610] = 2520, - [6611] = 6611, - [6612] = 6450, - [6613] = 6450, - [6614] = 6614, + [6610] = 6602, + [6611] = 510, + [6612] = 6600, + [6613] = 511, + [6614] = 1193, [6615] = 6615, - [6616] = 6450, - [6617] = 6617, - [6618] = 6462, - [6619] = 6619, - [6620] = 6620, - [6621] = 6621, - [6622] = 6622, - [6623] = 2565, - [6624] = 6457, - [6625] = 6450, - [6626] = 6450, - [6627] = 6450, - [6628] = 6439, - [6629] = 6629, + [6616] = 6600, + [6617] = 6600, + [6618] = 6602, + [6619] = 6609, + [6620] = 6602, + [6621] = 6600, + [6622] = 516, + [6623] = 6609, + [6624] = 6602, + [6625] = 503, + [6626] = 6600, + [6627] = 513, + [6628] = 512, + [6629] = 502, [6630] = 6630, - [6631] = 2588, - [6632] = 6630, - [6633] = 6633, - [6634] = 6633, - [6635] = 4536, - [6636] = 6633, - [6637] = 6633, - [6638] = 6638, - [6639] = 6639, + [6631] = 6600, + [6632] = 6609, + [6633] = 6602, + [6634] = 6609, + [6635] = 6609, + [6636] = 6609, + [6637] = 6609, + [6638] = 6609, + [6639] = 514, [6640] = 6640, - [6641] = 6633, - [6642] = 485, - [6643] = 2596, + [6641] = 6641, + [6642] = 495, + [6643] = 6643, [6644] = 6644, [6645] = 6645, - [6646] = 6429, - [6647] = 4509, - [6648] = 469, - [6649] = 4514, - [6650] = 6633, - [6651] = 6633, - [6652] = 6633, - [6653] = 6653, - [6654] = 6644, - [6655] = 6633, - [6656] = 6633, - [6657] = 6633, - [6658] = 6658, - [6659] = 6429, - [6660] = 6660, - [6661] = 6661, - [6662] = 4585, - [6663] = 6639, - [6664] = 6633, + [6646] = 6646, + [6647] = 6645, + [6648] = 6648, + [6649] = 6646, + [6650] = 6645, + [6651] = 6651, + [6652] = 496, + [6653] = 6646, + [6654] = 6654, + [6655] = 6645, + [6656] = 494, + [6657] = 6657, + [6658] = 6646, + [6659] = 497, + [6660] = 518, + [6661] = 515, + [6662] = 503, + [6663] = 513, + [6664] = 511, [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, - [6704] = 6704, + [6666] = 6666, + [6667] = 6667, + [6668] = 6668, + [6669] = 500, + [6670] = 508, + [6671] = 510, + [6672] = 506, + [6673] = 511, + [6674] = 6674, + [6675] = 514, + [6676] = 505, + [6677] = 514, + [6678] = 505, + [6679] = 512, + [6680] = 516, + [6681] = 511, + [6682] = 516, + [6683] = 510, + [6684] = 516, + [6685] = 6666, + [6686] = 504, + [6687] = 513, + [6688] = 508, + [6689] = 6666, + [6690] = 501, + [6691] = 512, + [6692] = 507, + [6693] = 512, + [6694] = 6666, + [6695] = 513, + [6696] = 509, + [6697] = 515, + [6698] = 517, + [6699] = 502, + [6700] = 519, + [6701] = 510, + [6702] = 6702, + [6703] = 6703, + [6704] = 6703, [6705] = 6705, - [6706] = 6706, - [6707] = 6707, - [6708] = 6708, - [6709] = 6706, + [6706] = 6703, + [6707] = 6703, + [6708] = 6703, + [6709] = 6703, [6710] = 6710, [6711] = 6711, [6712] = 6712, [6713] = 6713, - [6714] = 6705, - [6715] = 6715, - [6716] = 6716, - [6717] = 6716, - [6718] = 6718, - [6719] = 6710, - [6720] = 6720, - [6721] = 6711, - [6722] = 6716, - [6723] = 6718, - [6724] = 6724, - [6725] = 6705, - [6726] = 6711, - [6727] = 6706, - [6728] = 6710, + [6714] = 6714, + [6715] = 6703, + [6716] = 6703, + [6717] = 527, + [6718] = 6703, + [6719] = 6703, + [6720] = 6703, + [6721] = 6703, + [6722] = 6703, + [6723] = 6723, + [6724] = 6703, + [6725] = 6703, + [6726] = 6726, + [6727] = 6713, + [6728] = 6703, [6729] = 6729, - [6730] = 6718, - [6731] = 6706, + [6730] = 6703, + [6731] = 6703, [6732] = 6732, - [6733] = 6705, - [6734] = 6734, - [6735] = 6732, - [6736] = 6716, - [6737] = 6710, - [6738] = 6718, - [6739] = 6706, - [6740] = 6711, - [6741] = 6716, - [6742] = 6711, - [6743] = 6732, - [6744] = 6705, - [6745] = 6706, - [6746] = 6710, - [6747] = 6706, - [6748] = 6718, - [6749] = 6749, - [6750] = 6732, - [6751] = 6711, - [6752] = 6716, - [6753] = 6705, - [6754] = 6718, - [6755] = 6710, - [6756] = 6756, - [6757] = 6711, - [6758] = 6705, - [6759] = 6759, - [6760] = 6705, - [6761] = 6706, - [6762] = 6706, - [6763] = 6763, - [6764] = 6710, - [6765] = 6732, - [6766] = 6766, - [6767] = 6767, - [6768] = 6768, - [6769] = 6769, - [6770] = 6716, - [6771] = 6732, - [6772] = 6772, - [6773] = 6710, - [6774] = 6732, - [6775] = 6767, + [6733] = 6703, + [6734] = 6703, + [6735] = 6735, + [6736] = 6736, + [6737] = 6703, + [6738] = 6703, + [6739] = 6723, + [6740] = 6740, + [6741] = 6703, + [6742] = 6742, + [6743] = 6743, + [6744] = 6703, + [6745] = 6703, + [6746] = 6703, + [6747] = 6703, + [6748] = 6713, + [6749] = 6703, + [6750] = 6750, + [6751] = 6703, + [6752] = 6723, + [6753] = 6703, + [6754] = 6754, + [6755] = 6703, + [6756] = 6703, + [6757] = 6703, + [6758] = 6723, + [6759] = 6703, + [6760] = 6760, + [6761] = 6703, + [6762] = 6762, + [6763] = 6703, + [6764] = 6703, + [6765] = 6711, + [6766] = 507, + [6767] = 6703, + [6768] = 6703, + [6769] = 6703, + [6770] = 509, + [6771] = 517, + [6772] = 6703, + [6773] = 6773, + [6774] = 6703, + [6775] = 6703, [6776] = 6776, - [6777] = 6777, - [6778] = 6732, - [6779] = 6779, - [6780] = 6710, - [6781] = 6716, - [6782] = 6718, - [6783] = 6732, - [6784] = 6784, - [6785] = 6785, - [6786] = 6718, - [6787] = 6710, - [6788] = 6716, - [6789] = 6789, + [6777] = 6703, + [6778] = 6703, + [6779] = 6703, + [6780] = 6780, + [6781] = 6781, + [6782] = 6703, + [6783] = 6703, + [6784] = 6703, + [6785] = 6703, + [6786] = 6703, + [6787] = 6703, + [6788] = 6788, + [6789] = 6703, [6790] = 6790, - [6791] = 6711, - [6792] = 6792, - [6793] = 6705, - [6794] = 6710, - [6795] = 6706, - [6796] = 6718, - [6797] = 6716, - [6798] = 6732, + [6791] = 6703, + [6792] = 6711, + [6793] = 6703, + [6794] = 6703, + [6795] = 6703, + [6796] = 6703, + [6797] = 6711, + [6798] = 6703, [6799] = 6799, - [6800] = 6732, - [6801] = 6710, - [6802] = 6716, + [6800] = 6800, + [6801] = 6703, + [6802] = 6703, [6803] = 6803, - [6804] = 6716, + [6804] = 6703, [6805] = 6805, - [6806] = 6718, - [6807] = 6763, - [6808] = 6710, - [6809] = 6711, - [6810] = 6716, + [6806] = 6703, + [6807] = 6703, + [6808] = 6808, + [6809] = 6809, + [6810] = 6703, [6811] = 6811, - [6812] = 6812, - [6813] = 6813, - [6814] = 6814, - [6815] = 6710, - [6816] = 6718, + [6812] = 6703, + [6813] = 6703, + [6814] = 6703, + [6815] = 6703, + [6816] = 6816, [6817] = 6817, - [6818] = 6711, - [6819] = 6716, - [6820] = 6734, - [6821] = 6769, - [6822] = 6710, - [6823] = 6823, - [6824] = 6718, - [6825] = 6716, - [6826] = 6711, - [6827] = 6705, - [6828] = 6706, - [6829] = 6710, - [6830] = 6830, - [6831] = 6831, - [6832] = 6711, - [6833] = 6718, - [6834] = 6732, - [6835] = 6705, - [6836] = 6710, - [6837] = 6711, - [6838] = 6705, - [6839] = 6706, - [6840] = 6705, - [6841] = 6706, - [6842] = 6706, - [6843] = 6710, - [6844] = 6732, - [6845] = 6718, - [6846] = 6716, - [6847] = 6716, - [6848] = 6718, - [6849] = 6732, - [6850] = 6710, - [6851] = 6711, - [6852] = 6705, - [6853] = 6732, - [6854] = 6706, - [6855] = 6718, + [6818] = 6703, + [6819] = 6703, + [6820] = 6820, + [6821] = 6703, + [6822] = 6703, + [6823] = 6703, + [6824] = 6703, + [6825] = 6825, + [6826] = 6826, + [6827] = 6827, + [6828] = 495, + [6829] = 6829, + [6830] = 6703, + [6831] = 6703, + [6832] = 6713, + [6833] = 6833, + [6834] = 6834, + [6835] = 6835, + [6836] = 6836, + [6837] = 6837, + [6838] = 6833, + [6839] = 6839, + [6840] = 6840, + [6841] = 6841, + [6842] = 6842, + [6843] = 497, + [6844] = 6842, + [6845] = 6845, + [6846] = 6842, + [6847] = 6847, + [6848] = 6837, + [6849] = 2880, + [6850] = 6841, + [6851] = 6833, + [6852] = 6852, + [6853] = 2881, + [6854] = 516, + [6855] = 6855, [6856] = 6856, - [6857] = 6710, - [6858] = 6732, + [6857] = 6857, + [6858] = 6840, [6859] = 6859, - [6860] = 6710, - [6861] = 6712, - [6862] = 6862, - [6863] = 6716, - [6864] = 6710, - [6865] = 6716, - [6866] = 6718, - [6867] = 6718, - [6868] = 6716, - [6869] = 6718, + [6860] = 6860, + [6861] = 6841, + [6862] = 6845, + [6863] = 6863, + [6864] = 6860, + [6865] = 6865, + [6866] = 6855, + [6867] = 6834, + [6868] = 6836, + [6869] = 6869, [6870] = 6870, - [6871] = 6710, - [6872] = 6711, - [6873] = 6716, - [6874] = 6718, - [6875] = 6705, - [6876] = 6711, - [6877] = 6711, - [6878] = 6710, - [6879] = 6879, - [6880] = 6823, - [6881] = 6711, - [6882] = 6705, - [6883] = 6706, - [6884] = 6705, - [6885] = 6710, - [6886] = 6705, - [6887] = 6732, - [6888] = 6888, - [6889] = 6706, - [6890] = 6706, - [6891] = 6813, - [6892] = 6710, - [6893] = 6705, - [6894] = 6732, - [6895] = 6895, - [6896] = 6706, - [6897] = 6716, + [6871] = 6871, + [6872] = 6872, + [6873] = 6873, + [6874] = 6874, + [6875] = 6875, + [6876] = 6855, + [6877] = 6877, + [6878] = 6847, + [6879] = 6837, + [6880] = 6880, + [6881] = 6847, + [6882] = 6852, + [6883] = 6883, + [6884] = 6836, + [6885] = 6842, + [6886] = 2845, + [6887] = 6845, + [6888] = 6877, + [6889] = 6852, + [6890] = 6856, + [6891] = 6837, + [6892] = 6892, + [6893] = 6840, + [6894] = 496, + [6895] = 6841, + [6896] = 513, + [6897] = 6897, [6898] = 6898, - [6899] = 6710, - [6900] = 6706, - [6901] = 6716, - [6902] = 6718, - [6903] = 6718, - [6904] = 6711, - [6905] = 6705, - [6906] = 6710, - [6907] = 6706, - [6908] = 6732, - [6909] = 6732, - [6910] = 6711, - [6911] = 6732, - [6912] = 6732, - [6913] = 6710, - [6914] = 6711, - [6915] = 6716, - [6916] = 6718, - [6917] = 6716, - [6918] = 6718, - [6919] = 6817, - [6920] = 6710, - [6921] = 6888, - [6922] = 6767, - [6923] = 6711, - [6924] = 6716, - [6925] = 6895, - [6926] = 6718, - [6927] = 6710, - [6928] = 6928, - [6929] = 6711, - [6930] = 6705, - [6931] = 6706, - [6932] = 6814, - [6933] = 6705, - [6934] = 6710, - [6935] = 6732, - [6936] = 6706, - [6937] = 6817, - [6938] = 6938, - [6939] = 6716, - [6940] = 6711, - [6941] = 6710, - [6942] = 6732, - [6943] = 6718, - [6944] = 6716, - [6945] = 6718, + [6899] = 6842, + [6900] = 6834, + [6901] = 6840, + [6902] = 6845, + [6903] = 6836, + [6904] = 6847, + [6905] = 6905, + [6906] = 6906, + [6907] = 6855, + [6908] = 6847, + [6909] = 6909, + [6910] = 512, + [6911] = 6877, + [6912] = 6834, + [6913] = 6913, + [6914] = 6914, + [6915] = 6856, + [6916] = 6837, + [6917] = 6841, + [6918] = 6918, + [6919] = 6855, + [6920] = 6833, + [6921] = 6840, + [6922] = 6836, + [6923] = 6863, + [6924] = 6845, + [6925] = 6877, + [6926] = 6926, + [6927] = 6927, + [6928] = 494, + [6929] = 6852, + [6930] = 6860, + [6931] = 6931, + [6932] = 6932, + [6933] = 6933, + [6934] = 6856, + [6935] = 6863, + [6936] = 6863, + [6937] = 6856, + [6938] = 6860, + [6939] = 6877, + [6940] = 6833, + [6941] = 6834, + [6942] = 6942, + [6943] = 6943, + [6944] = 2855, + [6945] = 519, [6946] = 6946, - [6947] = 6711, - [6948] = 6710, - [6949] = 6705, - [6950] = 6706, - [6951] = 6951, - [6952] = 6729, - [6953] = 6759, - [6954] = 6954, - [6955] = 6710, - [6956] = 6705, - [6957] = 6716, - [6958] = 6711, - [6959] = 6705, - [6960] = 6960, - [6961] = 6718, - [6962] = 6710, - [6963] = 6706, - [6964] = 6705, + [6947] = 505, + [6948] = 507, + [6949] = 507, + [6950] = 508, + [6951] = 511, + [6952] = 519, + [6953] = 509, + [6954] = 510, + [6955] = 517, + [6956] = 6956, + [6957] = 6957, + [6958] = 516, + [6959] = 6959, + [6960] = 516, + [6961] = 513, + [6962] = 512, + [6963] = 1646, + [6964] = 509, [6965] = 6965, - [6966] = 6711, - [6967] = 6705, - [6968] = 6706, - [6969] = 6710, - [6970] = 6970, - [6971] = 6706, - [6972] = 6732, - [6973] = 6732, - [6974] = 6705, - [6975] = 6975, - [6976] = 6710, - [6977] = 6977, - [6978] = 6732, - [6979] = 6856, + [6966] = 500, + [6967] = 506, + [6968] = 517, + [6969] = 6969, + [6970] = 500, + [6971] = 6971, + [6972] = 6972, + [6973] = 6973, + [6974] = 514, + [6975] = 511, + [6976] = 512, + [6977] = 510, + [6978] = 1650, + [6979] = 2991, [6980] = 6980, - [6981] = 6859, - [6982] = 6706, - [6983] = 6710, - [6984] = 6716, - [6985] = 6718, - [6986] = 6711, - [6987] = 6776, - [6988] = 6777, - [6989] = 6732, - [6990] = 6710, - [6991] = 6960, - [6992] = 6716, - [6993] = 6718, - [6994] = 6711, - [6995] = 6711, - [6996] = 6785, - [6997] = 6710, - [6998] = 6705, - [6999] = 6706, - [7000] = 6789, + [6981] = 6981, + [6982] = 6982, + [6983] = 518, + [6984] = 2995, + [6985] = 6985, + [6986] = 6986, + [6987] = 3024, + [6988] = 6988, + [6989] = 503, + [6990] = 513, + [6991] = 516, + [6992] = 3025, + [6993] = 513, + [6994] = 6994, + [6995] = 6995, + [6996] = 512, + [6997] = 6997, + [6998] = 6998, + [6999] = 504, + [7000] = 7000, [7001] = 7001, - [7002] = 6710, - [7003] = 6792, - [7004] = 6710, - [7005] = 6705, - [7006] = 6732, - [7007] = 6706, - [7008] = 6706, - [7009] = 6712, - [7010] = 7010, - [7011] = 6710, - [7012] = 6732, - [7013] = 6716, - [7014] = 6803, - [7015] = 6732, - [7016] = 6805, - [7017] = 6705, - [7018] = 6710, - [7019] = 6763, - [7020] = 6706, - [7021] = 6732, - [7022] = 6718, - [7023] = 6813, - [7024] = 6814, - [7025] = 6710, - [7026] = 6716, - [7027] = 6718, - [7028] = 7028, - [7029] = 6711, - [7030] = 6734, - [7031] = 6769, - [7032] = 6710, - [7033] = 6823, - [7034] = 6705, - [7035] = 6706, - [7036] = 6716, - [7037] = 7037, - [7038] = 6732, - [7039] = 6710, - [7040] = 6830, - [7041] = 6831, - [7042] = 6718, - [7043] = 6716, - [7044] = 6711, + [7002] = 502, + [7003] = 7003, + [7004] = 515, + [7005] = 514, + [7006] = 501, + [7007] = 515, + [7008] = 7008, + [7009] = 7009, + [7010] = 502, + [7011] = 7008, + [7012] = 7012, + [7013] = 7013, + [7014] = 7012, + [7015] = 7008, + [7016] = 7008, + [7017] = 7009, + [7018] = 7018, + [7019] = 2845, + [7020] = 2855, + [7021] = 7012, + [7022] = 7022, + [7023] = 7023, + [7024] = 7008, + [7025] = 7025, + [7026] = 7008, + [7027] = 7008, + [7028] = 7008, + [7029] = 7029, + [7030] = 7030, + [7031] = 7008, + [7032] = 7032, + [7033] = 7033, + [7034] = 7008, + [7035] = 7009, + [7036] = 507, + [7037] = 7008, + [7038] = 7008, + [7039] = 511, + [7040] = 7040, + [7041] = 7009, + [7042] = 7042, + [7043] = 509, + [7044] = 510, [7045] = 7045, - [7046] = 6710, - [7047] = 6716, - [7048] = 6705, - [7049] = 6718, - [7050] = 6862, - [7051] = 6711, - [7052] = 6705, - [7053] = 6710, - [7054] = 6716, - [7055] = 6718, - [7056] = 6706, - [7057] = 6706, - [7058] = 6711, - [7059] = 6870, - [7060] = 6710, - [7061] = 6705, - [7062] = 6706, - [7063] = 6718, - [7064] = 6711, - [7065] = 6732, - [7066] = 6792, - [7067] = 6710, - [7068] = 6732, - [7069] = 6732, - [7070] = 6732, - [7071] = 6716, - [7072] = 6718, - [7073] = 6716, - [7074] = 6710, - [7075] = 6711, - [7076] = 6716, - [7077] = 6718, - [7078] = 6705, - [7079] = 6711, - [7080] = 6705, - [7081] = 6710, - [7082] = 6718, - [7083] = 6706, - [7084] = 6711, - [7085] = 6718, - [7086] = 6716, - [7087] = 6718, - [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, + [7046] = 517, + [7047] = 517, + [7048] = 7048, + [7049] = 7008, + [7050] = 7008, + [7051] = 2657, + [7052] = 7008, + [7053] = 7008, + [7054] = 7054, + [7055] = 7008, + [7056] = 7056, + [7057] = 7018, + [7058] = 7058, + [7059] = 7008, + [7060] = 7008, + [7061] = 7008, + [7062] = 7062, + [7063] = 7063, + [7064] = 7008, + [7065] = 7008, + [7066] = 7008, + [7067] = 7067, + [7068] = 7068, + [7069] = 7009, + [7070] = 516, + [7071] = 513, + [7072] = 512, + [7073] = 7073, + [7074] = 7008, + [7075] = 7008, + [7076] = 7076, + [7077] = 7008, + [7078] = 7008, + [7079] = 7018, + [7080] = 7080, + [7081] = 7009, + [7082] = 7008, + [7083] = 7008, + [7084] = 7009, + [7085] = 7085, + [7086] = 7086, + [7087] = 7008, + [7088] = 7008, + [7089] = 7089, + [7090] = 7090, + [7091] = 7018, + [7092] = 7009, + [7093] = 7093, + [7094] = 7009, + [7095] = 7009, + [7096] = 7096, + [7097] = 7008, + [7098] = 7098, + [7099] = 7008, + [7100] = 6873, + [7101] = 7008, [7102] = 7102, - [7103] = 6767, - [7104] = 7104, + [7103] = 7008, + [7104] = 7009, [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, + [7106] = 7009, + [7107] = 7009, + [7108] = 509, + [7109] = 7008, + [7110] = 7008, + [7111] = 7111, + [7112] = 6873, + [7113] = 527, + [7114] = 7114, + [7115] = 7008, + [7116] = 7008, + [7117] = 7033, + [7118] = 7008, + [7119] = 7008, + [7120] = 7008, + [7121] = 7121, + [7122] = 7009, + [7123] = 7123, + [7124] = 7008, + [7125] = 7009, + [7126] = 7008, + [7127] = 7008, + [7128] = 7128, + [7129] = 7008, [7130] = 7130, - [7131] = 6732, - [7132] = 7132, - [7133] = 6729, - [7134] = 7134, - [7135] = 6716, - [7136] = 6759, - [7137] = 7137, - [7138] = 6718, - [7139] = 6732, - [7140] = 6779, + [7131] = 7018, + [7132] = 7008, + [7133] = 7133, + [7134] = 7018, + [7135] = 7135, + [7136] = 7136, + [7137] = 7008, + [7138] = 7009, + [7139] = 7139, + [7140] = 7008, [7141] = 7141, - [7142] = 6711, - [7143] = 7143, - [7144] = 6856, + [7142] = 7008, + [7143] = 7009, + [7144] = 7144, [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, + [7146] = 7146, + [7147] = 7008, + [7148] = 7009, + [7149] = 7008, + [7150] = 7009, + [7151] = 7018, + [7152] = 7152, + [7153] = 7153, + [7154] = 7018, + [7155] = 7018, + [7156] = 7009, + [7157] = 7009, + [7158] = 7009, + [7159] = 7159, + [7160] = 7009, + [7161] = 7008, + [7162] = 7008, + [7163] = 7009, + [7164] = 2880, + [7165] = 503, + [7166] = 7008, + [7167] = 7008, + [7168] = 7008, + [7169] = 7008, + [7170] = 7009, + [7171] = 7008, + [7172] = 7008, + [7173] = 7008, + [7174] = 7008, + [7175] = 7008, + [7176] = 7176, + [7177] = 7033, + [7178] = 7178, + [7179] = 7008, + [7180] = 7008, + [7181] = 7008, [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, - [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, - [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, + [7183] = 507, + [7184] = 7008, + [7185] = 7008, + [7186] = 7186, + [7187] = 7187, + [7188] = 7009, + [7189] = 2881, + [7190] = 7008, + [7191] = 7008, + [7192] = 7008, + [7193] = 527, + [7194] = 7008, + [7195] = 7195, + [7196] = 7196, + [7197] = 7197, + [7198] = 7198, + [7199] = 7198, + [7200] = 7200, + [7201] = 7198, + [7202] = 7198, + [7203] = 7198, + [7204] = 7198, + [7205] = 509, + [7206] = 7198, + [7207] = 7198, + [7208] = 7198, + [7209] = 6969, + [7210] = 7198, + [7211] = 7198, + [7212] = 7198, + [7213] = 7198, + [7214] = 7198, + [7215] = 7198, + [7216] = 7198, + [7217] = 7198, + [7218] = 7218, + [7219] = 7218, + [7220] = 7220, + [7221] = 517, + [7222] = 7222, + [7223] = 4933, + [7224] = 7220, + [7225] = 2991, + [7226] = 518, + [7227] = 2995, + [7228] = 7228, + [7229] = 506, + [7230] = 7198, + [7231] = 6969, + [7232] = 7218, + [7233] = 7218, + [7234] = 6971, + [7235] = 7000, + [7236] = 4932, + [7237] = 7237, + [7238] = 6971, + [7239] = 7218, + [7240] = 7228, + [7241] = 7000, + [7242] = 7198, + [7243] = 7228, + [7244] = 7244, + [7245] = 3024, + [7246] = 7246, + [7247] = 3025, + [7248] = 2799, + [7249] = 7198, + [7250] = 2793, + [7251] = 7220, + [7252] = 7252, + [7253] = 7253, + [7254] = 7254, + [7255] = 7220, + [7256] = 7256, + [7257] = 507, + [7258] = 7198, + [7259] = 7198, + [7260] = 7244, + [7261] = 7198, + [7262] = 7218, + [7263] = 4826, + [7264] = 7264, + [7265] = 7265, + [7266] = 4784, + [7267] = 7267, + [7268] = 7198, + [7269] = 7198, + [7270] = 7244, + [7271] = 7198, + [7272] = 7272, + [7273] = 7273, + [7274] = 7244, + [7275] = 7228, + [7276] = 7276, + [7277] = 7277, + [7278] = 7278, + [7279] = 7276, + [7280] = 7280, + [7281] = 7281, + [7282] = 7282, + [7283] = 7282, + [7284] = 7277, + [7285] = 7285, + [7286] = 7277, + [7287] = 7287, + [7288] = 7288, + [7289] = 7277, + [7290] = 7278, + [7291] = 7276, + [7292] = 7282, + [7293] = 7276, + [7294] = 7280, + [7295] = 7287, + [7296] = 7296, + [7297] = 7288, + [7298] = 7298, + [7299] = 7299, + [7300] = 7277, + [7301] = 7282, + [7302] = 7302, + [7303] = 7278, + [7304] = 7304, + [7305] = 7276, + [7306] = 7306, + [7307] = 7307, + [7308] = 7308, + [7309] = 7277, + [7310] = 7282, + [7311] = 7311, + [7312] = 7280, + [7313] = 7313, + [7314] = 7287, [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, - [7360] = 6712, - [7361] = 6705, - [7362] = 6862, - [7363] = 6870, - [7364] = 6732, - [7365] = 6716, - [7366] = 6805, - [7367] = 6767, - [7368] = 6718, - [7369] = 7137, - [7370] = 6718, - [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, + [7316] = 7316, + [7317] = 7287, + [7318] = 7318, + [7319] = 7282, + [7320] = 7288, + [7321] = 7287, + [7322] = 7277, + [7323] = 7323, + [7324] = 7324, + [7325] = 7325, + [7326] = 7326, + [7327] = 7277, + [7328] = 7282, + [7329] = 7278, + [7330] = 7276, + [7331] = 7331, + [7332] = 7287, + [7333] = 7287, + [7334] = 7334, + [7335] = 7288, + [7336] = 7277, + [7337] = 7282, + [7338] = 7288, + [7339] = 7278, + [7340] = 7340, + [7341] = 7276, + [7342] = 7287, + [7343] = 7288, + [7344] = 7280, + [7345] = 7287, + [7346] = 7282, + [7347] = 7278, + [7348] = 7276, + [7349] = 7349, + [7350] = 7278, + [7351] = 7277, + [7352] = 7276, + [7353] = 7280, + [7354] = 7288, + [7355] = 7282, + [7356] = 7288, + [7357] = 7287, + [7358] = 7288, + [7359] = 7287, + [7360] = 7288, + [7361] = 7361, + [7362] = 7287, + [7363] = 7287, + [7364] = 7282, + [7365] = 7278, + [7366] = 7276, + [7367] = 7280, + [7368] = 7278, + [7369] = 7288, + [7370] = 7276, + [7371] = 7282, + [7372] = 7277, + [7373] = 7277, + [7374] = 7278, + [7375] = 7277, + [7376] = 7278, + [7377] = 7276, + [7378] = 7282, + [7379] = 7276, + [7380] = 7280, + [7381] = 7280, + [7382] = 7287, + [7383] = 7287, + [7384] = 7288, + [7385] = 7282, + [7386] = 7288, + [7387] = 7278, + [7388] = 7276, + [7389] = 7389, + [7390] = 7278, + [7391] = 7276, + [7392] = 7282, + [7393] = 7393, + [7394] = 7280, + [7395] = 7287, + [7396] = 7287, + [7397] = 7287, + [7398] = 7288, + [7399] = 7282, + [7400] = 7277, + [7401] = 7401, + [7402] = 7402, + [7403] = 7288, + [7404] = 7404, + [7405] = 7278, + [7406] = 7282, + [7407] = 7276, + [7408] = 7278, + [7409] = 7276, + [7410] = 7410, + [7411] = 7280, + [7412] = 7277, + [7413] = 7282, + [7414] = 7278, + [7415] = 7415, + [7416] = 7288, + [7417] = 7287, + [7418] = 7418, [7419] = 7419, - [7420] = 6965, - [7421] = 6710, - [7422] = 7145, - [7423] = 7423, - [7424] = 6705, - [7425] = 7425, + [7420] = 7282, + [7421] = 7421, + [7422] = 7422, + [7423] = 7288, + [7424] = 7276, + [7425] = 7277, [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, + [7427] = 7282, + [7428] = 7287, + [7429] = 7288, + [7430] = 7288, + [7431] = 7431, + [7432] = 7278, + [7433] = 7276, + [7434] = 7282, + [7435] = 7435, + [7436] = 7278, + [7437] = 7280, + [7438] = 7438, + [7439] = 7276, + [7440] = 7280, + [7441] = 7282, + [7442] = 7287, + [7443] = 7288, + [7444] = 7287, + [7445] = 7278, + [7446] = 7276, + [7447] = 7287, + [7448] = 7282, + [7449] = 7288, + [7450] = 7287, + [7451] = 7288, + [7452] = 7452, + [7453] = 7278, + [7454] = 7276, + [7455] = 7282, + [7456] = 7278, + [7457] = 7280, + [7458] = 7287, + [7459] = 7276, + [7460] = 7288, + [7461] = 7280, + [7462] = 7282, + [7463] = 7334, + [7464] = 7278, + [7465] = 7276, + [7466] = 7277, + [7467] = 7277, + [7468] = 7468, + [7469] = 7282, + [7470] = 7470, + [7471] = 7471, + [7472] = 7277, + [7473] = 7473, + [7474] = 7287, + [7475] = 7288, + [7476] = 7282, + [7477] = 7282, + [7478] = 7278, + [7479] = 7276, + [7480] = 7287, + [7481] = 7288, + [7482] = 7280, + [7483] = 7282, + [7484] = 7287, + [7485] = 7287, + [7486] = 7287, + [7487] = 7288, + [7488] = 7488, + [7489] = 7393, + [7490] = 7282, + [7491] = 7278, + [7492] = 7287, + [7493] = 7288, + [7494] = 7276, + [7495] = 7287, + [7496] = 7278, + [7497] = 7282, + [7498] = 7276, + [7499] = 7280, + [7500] = 7500, + [7501] = 7288, + [7502] = 7288, + [7503] = 7503, + [7504] = 7282, + [7505] = 7278, + [7506] = 7506, [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] = 7277, + [7509] = 7276, + [7510] = 7287, + [7511] = 7282, + [7512] = 7288, + [7513] = 7280, + [7514] = 7278, + [7515] = 7276, + [7516] = 7516, + [7517] = 7287, + [7518] = 7282, + [7519] = 7277, + [7520] = 7288, + [7521] = 7311, + [7522] = 7349, + [7523] = 7277, + [7524] = 7278, + [7525] = 7282, + [7526] = 7287, + [7527] = 7288, + [7528] = 7278, + [7529] = 7287, + [7530] = 7288, + [7531] = 7278, + [7532] = 7282, + [7533] = 7276, + [7534] = 7288, + [7535] = 7276, + [7536] = 7278, + [7537] = 7278, + [7538] = 7287, + [7539] = 7282, + [7540] = 7276, + [7541] = 7280, + [7542] = 7288, + [7543] = 7280, + [7544] = 7278, + [7545] = 7276, + [7546] = 7282, + [7547] = 7277, + [7548] = 7288, + [7549] = 7276, + [7550] = 7278, + [7551] = 7551, + [7552] = 7276, + [7553] = 7282, + [7554] = 7554, + [7555] = 7555, + [7556] = 7556, + [7557] = 7280, + [7558] = 7558, + [7559] = 7470, + [7560] = 7282, + [7561] = 7277, + [7562] = 7287, + [7563] = 7288, + [7564] = 7473, + [7565] = 7288, + [7566] = 7566, + [7567] = 7282, + [7568] = 7568, + [7569] = 7569, + [7570] = 7393, + [7571] = 7278, + [7572] = 7288, + [7573] = 7288, + [7574] = 7282, + [7575] = 7575, + [7576] = 7278, + [7577] = 7287, + [7578] = 7276, + [7579] = 7280, + [7580] = 7288, + [7581] = 7282, + [7582] = 7287, + [7583] = 7277, + [7584] = 7278, + [7585] = 7276, + [7586] = 7280, + [7587] = 7393, + [7588] = 7282, + [7589] = 7276, + [7590] = 7277, + [7591] = 7277, + [7592] = 7277, + [7593] = 7280, + [7594] = 7287, + [7595] = 7282, + [7596] = 7438, + [7597] = 7278, + [7598] = 7282, + [7599] = 7438, + [7600] = 7600, + [7601] = 7516, + [7602] = 7282, + [7603] = 7282, + [7604] = 7288, + [7605] = 7389, + [7606] = 7606, + [7607] = 7607, + [7608] = 7608, + [7609] = 7282, + [7610] = 7277, + [7611] = 7568, + [7612] = 7276, + [7613] = 7287, + [7614] = 7614, + [7615] = 7334, + [7616] = 7282, + [7617] = 7288, + [7618] = 7618, + [7619] = 7287, + [7620] = 7620, + [7621] = 7287, + [7622] = 7288, + [7623] = 7282, + [7624] = 7276, + [7625] = 7288, + [7626] = 7278, + [7627] = 7276, + [7628] = 7280, + [7629] = 7558, + [7630] = 7282, + [7631] = 7278, + [7632] = 7500, + [7633] = 7503, + [7634] = 7278, + [7635] = 7276, + [7636] = 7277, + [7637] = 7282, + [7638] = 7566, + [7639] = 7438, + [7640] = 7280, + [7641] = 7641, + [7642] = 7642, + [7643] = 7575, + [7644] = 7282, + [7645] = 7288, + [7646] = 7287, + [7647] = 7647, + [7648] = 7288, + [7649] = 7278, + [7650] = 7650, + [7651] = 7282, + [7652] = 7276, + [7653] = 7278, + [7654] = 7276, + [7655] = 7280, + [7656] = 7614, + [7657] = 7277, + [7658] = 7282, + [7659] = 7618, + [7660] = 7660, + [7661] = 7280, + [7662] = 7278, + [7663] = 7663, + [7664] = 7664, + [7665] = 7282, + [7666] = 7278, + [7667] = 7667, + [7668] = 7287, + [7669] = 7276, + [7670] = 7277, + [7671] = 7288, + [7672] = 7282, + [7673] = 7280, + [7674] = 7276, + [7675] = 7278, + [7676] = 7287, + [7677] = 7276, + [7678] = 7280, + [7679] = 7282, + [7680] = 7506, + [7681] = 7681, + [7682] = 7277, + [7683] = 7288, + [7684] = 7287, + [7685] = 7568, + [7686] = 7282, + [7687] = 7288, + [7688] = 7278, + [7689] = 7276, + [7690] = 7280, + [7691] = 7280, + [7692] = 7311, + [7693] = 7282, + [7694] = 7349, + [7695] = 7277, + [7696] = 7278, + [7697] = 7663, + [7698] = 7664, + [7699] = 7699, + [7700] = 7282, + [7701] = 7667, + [7702] = 7276, + [7703] = 7280, + [7704] = 7278, + [7705] = 7705, + [7706] = 7706, + [7707] = 7282, + [7708] = 7277, + [7709] = 7276, + [7710] = 7280, + [7711] = 7287, + [7712] = 7288, + [7713] = 7277, + [7714] = 7280, + [7715] = 7278, + [7716] = 7276, + [7717] = 7287, + [7718] = 7280, + [7719] = 7288, + [7720] = 7278, + [7721] = 7287, + [7722] = 7663, + [7723] = 7288, + [7724] = 7568, + [7725] = 7278, + [7726] = 7276, + [7727] = 7277, + [7728] = 7280, + [7729] = 7278, + [7730] = 7276, + [7731] = 7277, + [7732] = 7280, + [7733] = 7277, + [7734] = 7276, + [7735] = 7735, + [7736] = 7277, + [7737] = 7470, + [7738] = 7287, + [7739] = 7276, + [7740] = 7334, + [7741] = 7741, + [7742] = 7288, + [7743] = 7506, + [7744] = 7681, + [7745] = 7277, + [7746] = 7746, + [7747] = 7278, + [7748] = 7278, + [7749] = 7334, + [7750] = 7276, + [7751] = 7287, + [7752] = 7288, + [7753] = 7558, + [7754] = 7276, + [7755] = 7311, + [7756] = 7756, + [7757] = 7287, + [7758] = 7288, + [7759] = 7470, + [7760] = 7760, + [7761] = 7761, + [7762] = 7278, + [7763] = 7600, + [7764] = 7764, + [7765] = 7280, + [7766] = 7280, + [7767] = 7287, + [7768] = 7287, + [7769] = 7488, + [7770] = 7288, + [7771] = 7287, + [7772] = 7278, + [7773] = 7600, + [7774] = 7516, + [7775] = 7277, + [7776] = 7776, + [7777] = 7282, + [7778] = 7276, + [7779] = 7389, + [7780] = 7280, + [7781] = 7607, + [7782] = 7608, + [7783] = 7278, + [7784] = 7276, + [7785] = 7280, + [7786] = 7277, + [7787] = 7288, + [7788] = 7282, + [7789] = 7280, + [7790] = 7280, + [7791] = 7277, + [7792] = 7500, + [7793] = 7503, + [7794] = 7276, + [7795] = 7278, + [7796] = 7276, + [7797] = 7280, + [7798] = 7280, + [7799] = 7641, + [7800] = 7667, + [7801] = 7600, + [7802] = 7287, + [7803] = 7647, + [7804] = 7760, + [7805] = 7277, + [7806] = 7650, + [7807] = 7277, + [7808] = 7667, + [7809] = 7566, + [7810] = 7288, + [7811] = 7288, + [7812] = 7756, + [7813] = 7287, + [7814] = 7681, + [7815] = 7288, + [7816] = 7278, + [7817] = 7558, + [7818] = 7287, + [7819] = 7278, + [7820] = 7288, + [7821] = 7276, + [7822] = 7650, + [7823] = 7823, + [7824] = 7824, + [7825] = 7280, + [7826] = 7334, + [7827] = 7278, + [7828] = 7280, + [7829] = 7280, + [7830] = 7276, + [7831] = 7280, + [7832] = 7832, + [7833] = 7277, + [7834] = 7277, + [7835] = 7835, + [7836] = 7287, + [7837] = 7607, + [7838] = 7568, + [7839] = 7575, + [7840] = 7840, + [7841] = 7841, + [7842] = 7566, + [7843] = 7614, + [7844] = 7276, + [7845] = 7664, + [7846] = 7608, + [7847] = 7618, + [7848] = 7280, + [7849] = 7288, + [7850] = 7287, + [7851] = 7278, + [7852] = 7287, + [7853] = 7288, + [7854] = 7334, + [7855] = 7288, + [7856] = 7288, + [7857] = 7278, + [7858] = 7276, + [7859] = 7280, + [7860] = 7282, + [7861] = 7287, + [7862] = 7288, + [7863] = 7277, + [7864] = 7864, + [7865] = 7276, + [7866] = 7866, + [7867] = 7278, + [7868] = 7287, + [7869] = 7288, + [7870] = 7276, + [7871] = 7278, + [7872] = 7276, + [7873] = 7280, + [7874] = 7280, + [7875] = 7278, + [7876] = 7276, + [7877] = 7473, + [7878] = 7277, + [7879] = 7280, + [7880] = 7280, + [7881] = 7287, + [7882] = 7277, + [7883] = 7277, + [7884] = 7277, + [7885] = 7506, + [7886] = 7470, + [7887] = 7764, + [7888] = 7888, + [7889] = 7889, + [7890] = 7288, + [7891] = 7681, + [7892] = 7516, + [7893] = 7349, + [7894] = 7287, + [7895] = 7287, + [7896] = 7277, + [7897] = 7756, + [7898] = 7898, + [7899] = 7288, + [7900] = 7470, + [7901] = 7760, + [7902] = 7287, + [7903] = 7288, + [7904] = 7600, + [7905] = 7764, + [7906] = 7277, + [7907] = 7278, + [7908] = 7575, + [7909] = 7488, + [7910] = 7276, + [7911] = 7288, + [7912] = 7280, + [7913] = 7278, + [7914] = 7278, + [7915] = 7276, + [7916] = 7280, + [7917] = 7277, + [7918] = 7614, + [7919] = 7618, + [7920] = 7277, + [7921] = 7647, + [7922] = 7600, + [7923] = 7516, + [7924] = 7282, + [7925] = 7389, + [7926] = 7607, + [7927] = 7608, + [7928] = 7278, + [7929] = 7276, + [7930] = 7287, + [7931] = 7288, + [7932] = 7277, + [7933] = 7311, + [7934] = 7349, + [7935] = 7282, + [7936] = 7936, + [7937] = 7282, + [7938] = 7278, + [7939] = 7287, + [7940] = 7287, + [7941] = 7500, + [7942] = 7503, + [7943] = 7278, + [7944] = 7288, + [7945] = 7288, + [7946] = 7276, + [7947] = 7278, + [7948] = 7276, + [7949] = 7641, + [7950] = 7278, + [7951] = 7276, + [7952] = 7280, + [7953] = 7642, + [7954] = 7954, + [7955] = 7277, + [7956] = 7280, + [7957] = 7647, + [7958] = 7280, + [7959] = 7280, + [7960] = 7650, + [7961] = 7277, + [7962] = 7349, + [7963] = 7963, + [7964] = 7311, + [7965] = 7965, + [7966] = 7277, + [7967] = 7568, + [7968] = 7287, + [7969] = 7277, + [7970] = 7288, + [7971] = 7276, + [7972] = 7972, + [7973] = 7287, + [7974] = 7288, + [7975] = 7280, + [7976] = 7278, + [7977] = 7977, + [7978] = 7278, + [7979] = 7276, + [7980] = 7276, + [7981] = 7280, + [7982] = 7287, + [7983] = 7288, + [7984] = 7280, + [7985] = 7278, + [7986] = 7277, + [7987] = 7287, + [7988] = 7288, + [7989] = 7614, + [7990] = 7276, + [7991] = 7278, + [7992] = 7280, + [7993] = 7287, + [7994] = 7278, + [7995] = 7516, + [7996] = 7288, + [7997] = 7997, + [7998] = 7334, + [7999] = 7756, + [8000] = 7277, + [8001] = 7287, + [8002] = 7470, + [8003] = 7760, + [8004] = 8004, + [8005] = 7276, + [8006] = 7600, + [8007] = 7764, + [8008] = 7277, + [8009] = 7516, + [8010] = 7516, + [8011] = 7488, + [8012] = 7282, + [8013] = 7287, + [8014] = 7287, + [8015] = 7288, + [8016] = 7280, + [8017] = 7278, + [8018] = 7276, + [8019] = 7280, + [8020] = 7288, + [8021] = 7663, + [8022] = 7277, + [8023] = 7500, + [8024] = 7568, + [8025] = 7503, + [8026] = 7278, + [8027] = 7276, + [8028] = 7568, + [8029] = 7470, + [8030] = 7760, + [8031] = 7600, + [8032] = 7764, + [8033] = 7641, + [8034] = 7642, + [8035] = 7488, + [8036] = 7280, + [8037] = 7287, + [8038] = 7647, + [8039] = 7287, + [8040] = 7288, + [8041] = 7618, + [8042] = 7278, + [8043] = 7276, + [8044] = 7280, + [8045] = 7650, + [8046] = 7282, + [8047] = 7277, + [8048] = 7287, + [8049] = 7288, + [8050] = 7277, + [8051] = 7278, + [8052] = 7276, + [8053] = 7470, + [8054] = 7760, + [8055] = 7600, + [8056] = 7277, + [8057] = 7280, + [8058] = 7278, + [8059] = 7760, + [8060] = 7760, + [8061] = 7760, + [8062] = 7760, + [8063] = 7760, + [8064] = 7760, + [8065] = 7760, + [8066] = 7760, + [8067] = 7760, + [8068] = 7760, + [8069] = 7760, + [8070] = 7760, + [8071] = 7760, + [8072] = 7760, + [8073] = 7760, + [8074] = 7760, + [8075] = 7760, + [8076] = 7760, + [8077] = 7760, + [8078] = 7760, + [8079] = 7760, + [8080] = 7760, + [8081] = 7760, + [8082] = 7760, + [8083] = 7760, + [8084] = 7760, + [8085] = 7760, + [8086] = 7760, + [8087] = 7760, + [8088] = 7760, + [8089] = 7760, + [8090] = 7760, + [8091] = 7760, + [8092] = 7760, + [8093] = 7760, + [8094] = 7760, + [8095] = 7760, + [8096] = 7760, + [8097] = 7760, + [8098] = 7760, + [8099] = 7760, + [8100] = 7760, + [8101] = 7760, + [8102] = 7760, + [8103] = 7760, + [8104] = 7760, + [8105] = 7760, + [8106] = 7760, + [8107] = 7760, + [8108] = 7760, + [8109] = 7760, + [8110] = 7760, + [8111] = 7760, + [8112] = 7760, + [8113] = 7760, + [8114] = 7760, + [8115] = 7760, + [8116] = 7760, + [8117] = 7760, + [8118] = 7760, + [8119] = 7760, + [8120] = 7760, + [8121] = 7760, + [8122] = 7760, + [8123] = 7760, + [8124] = 7706, + [8125] = 7277, + [8126] = 7277, + [8127] = 7664, + [8128] = 7287, + [8129] = 7288, + [8130] = 7276, + [8131] = 7280, + [8132] = 7276, + [8133] = 7706, + [8134] = 7278, + [8135] = 7473, + [8136] = 7641, + [8137] = 7642, + [8138] = 7288, + [8139] = 7568, + [8140] = 7706, + [8141] = 7706, + [8142] = 7706, + [8143] = 7706, + [8144] = 7706, + [8145] = 7706, + [8146] = 7706, + [8147] = 7706, + [8148] = 7706, + [8149] = 7706, + [8150] = 7706, + [8151] = 7706, + [8152] = 7706, + [8153] = 7706, + [8154] = 7706, + [8155] = 7706, + [8156] = 7706, + [8157] = 7706, + [8158] = 7706, + [8159] = 7706, + [8160] = 7706, + [8161] = 7706, + [8162] = 7706, + [8163] = 7706, + [8164] = 7706, + [8165] = 7706, + [8166] = 7706, + [8167] = 7706, + [8168] = 7706, + [8169] = 7706, + [8170] = 7706, + [8171] = 7706, + [8172] = 7706, + [8173] = 7706, + [8174] = 7706, + [8175] = 7706, + [8176] = 7706, + [8177] = 7706, + [8178] = 7706, + [8179] = 7706, + [8180] = 7706, + [8181] = 7706, + [8182] = 7706, + [8183] = 7706, + [8184] = 7706, + [8185] = 7706, + [8186] = 7706, + [8187] = 7706, + [8188] = 7706, + [8189] = 7706, + [8190] = 7706, + [8191] = 7706, + [8192] = 7706, + [8193] = 7706, + [8194] = 7706, + [8195] = 7706, + [8196] = 7706, + [8197] = 7706, + [8198] = 7706, + [8199] = 7706, + [8200] = 7706, + [8201] = 7706, + [8202] = 7706, + [8203] = 7706, + [8204] = 7706, + [8205] = 7706, + [8206] = 7706, + [8207] = 7706, + [8208] = 7642, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -10361,10401 +10999,11183 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(541); + if (eof) ADVANCE(589); ADVANCE_MAP( - '!', 815, - '"', 783, - '#', 820, - '$', 776, - '%', 641, - '&', 595, - '\'', 485, - '(', 648, - ')', 649, - '*', 819, - '+', 764, - ',', 551, - '-', 762, - '.', 940, - '/', 636, - ':', 757, - ';', 548, - '<', 601, - '=', 822, - '>', 610, - '?', 832, - '@', 817, - '[', 668, - '\\', 298, - ']', 669, - '^', 589, - '_', 937, - '`', 851, - 'e', 947, - 'i', 946, - '{', 660, - '|', 586, - '}', 773, - '~', 766, + '!', 875, + '"', 843, + '#', 880, + '$', 836, + '%', 689, + '&', 643, + '\'', 521, + '(', 696, + ')', 697, + '*', 879, + '+', 824, + ',', 599, + '-', 822, + '.', 1004, + '/', 684, + ':', 817, + ';', 596, + '<', 649, + '=', 882, + '>', 658, + '?', 892, + '@', 877, + '[', 716, + '\\', 326, + ']', 717, + '^', 637, + '_', 1001, + '`', 911, + 'e', 1011, + 'i', 1010, + '{', 708, + '|', 634, + '}', 833, + '~', 826, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(769); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(829); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 1: - if (lookahead == '\n') SKIP(397); + if (lookahead == '\n') SKIP(433); END_STATE(); case 2: - if (lookahead == '\n') SKIP(412); + if (lookahead == '\n') SKIP(449); END_STATE(); case 3: - if (lookahead == '\n') SKIP(413); + if (lookahead == '\n') SKIP(448); END_STATE(); case 4: - if (lookahead == '\n') SKIP(414); + if (lookahead == '\n') SKIP(450); END_STATE(); case 5: if (lookahead == '\n') SKIP(6); END_STATE(); case 6: ADVANCE_MAP( - '\n', 682, - '!', 664, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - ')', 649, - '*', 632, - '+', 765, - '-', 763, - '/', 638, - '0', 797, - ';', 549, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '\\', 304, - '^', 590, - '`', 851, - '|', 586, - '~', 766, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 730, + '!', 712, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + ')', 697, + '*', 680, + '+', 825, + '-', 823, + '/', 686, + '0', 857, + ';', 597, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '\\', 332, + '^', 638, + '`', 911, + '|', 634, + '~', 826, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 7: - if (lookahead == '\n') SKIP(399); + if (lookahead == '\n') SKIP(451); END_STATE(); case 8: - if (lookahead == '\n') SKIP(415); + if (lookahead == '\n') SKIP(435); END_STATE(); case 9: - if (lookahead == '\n') SKIP(416); + if (lookahead == '\n') SKIP(452); END_STATE(); case 10: - if (lookahead == '\n') SKIP(400); + if (lookahead == '\n') SKIP(436); END_STATE(); case 11: - if (lookahead == '\n') SKIP(401); + if (lookahead == '\n') SKIP(437); END_STATE(); case 12: ADVANCE_MAP( - '\n', 683, - '!', 664, - '"', 783, - '#', 811, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - ')', 649, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 801, - ';', 549, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '@', 936, + '\n', 731, + '!', 712, + '"', 843, + '#', 871, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + ')', 697, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 861, + ';', 597, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '@', 1000, '\\', 14, - '^', 590, - '_', 938, - '`', 850, - '|', 586, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '^', 638, + '_', 1002, + '`', 910, + '|', 634, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(875); + if (lookahead == '\n') ADVANCE(935); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(875); + if (lookahead == '\n') ADVANCE(935); if (lookahead == '\r') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12); - if (lookahead != 0) ADVANCE(949); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\n') ADVANCE(998); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\n') ADVANCE(998); if (lookahead == '\r') ADVANCE(15); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\n') ADVANCE(998); if (lookahead == '\r') ADVANCE(15); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(949); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1013); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\n') ADVANCE(977); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\n') ADVANCE(977); if (lookahead == '\r') ADVANCE(18); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(398); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(434); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 20: - if (lookahead == '\n') SKIP(156); + if (lookahead == '\n') SKIP(159); END_STATE(); case 21: - if (lookahead == '\n') SKIP(420); + if (lookahead == '\n') SKIP(456); END_STATE(); case 22: - if (lookahead == '\n') SKIP(417); + if (lookahead == '\n') SKIP(453); END_STATE(); case 23: - if (lookahead == '\n') SKIP(236); + if (lookahead == '\n') SKIP(252); END_STATE(); case 24: - if (lookahead == '\n') SKIP(239); + if (lookahead == '\n') SKIP(255); END_STATE(); case 25: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(258); END_STATE(); case 26: - if (lookahead == '\n') SKIP(245); + if (lookahead == '\n') SKIP(261); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(877); + if (lookahead == '\n') ADVANCE(937); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(877); + if (lookahead == '\n') ADVANCE(937); if (lookahead == '\r') ADVANCE(27); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(216); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(231); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(879); + if (lookahead == '\n') SKIP(264); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(879); - if (lookahead == '\r') ADVANCE(29); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(235); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(267); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(881); + if (lookahead == '\n') ADVANCE(939); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(881); + if (lookahead == '\n') ADVANCE(939); if (lookahead == '\r') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(238); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(251); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 33: - if (lookahead == '\n') SKIP(248); + if (lookahead == '\n') ADVANCE(941); END_STATE(); case 34: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') ADVANCE(941); + if (lookahead == '\r') ADVANCE(33); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(254); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 35: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') ADVANCE(943); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') ADVANCE(943); if (lookahead == '\r') ADVANCE(35); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(257); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 37: - if (lookahead == '\n') SKIP(254); + if (lookahead == '\n') SKIP(270); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\n') SKIP(273); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(887); - if (lookahead == '\r') ADVANCE(38); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(247); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(276); END_STATE(); case 40: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(949); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(949); if (lookahead == '\r') ADVANCE(40); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(266); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 42: - if (lookahead == '\n') SKIP(257); + if (lookahead == '\n') ADVANCE(951); END_STATE(); case 43: - if (lookahead == '\n') SKIP(451); + if (lookahead == '\n') ADVANCE(951); + if (lookahead == '\r') ADVANCE(42); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(269); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 44: - if (lookahead == '\n') SKIP(260); + if (lookahead == '\n') SKIP(279); END_STATE(); case 45: - if (lookahead == '\n') SKIP(455); + if (lookahead == '\n') SKIP(487); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\n') SKIP(282); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(893); - if (lookahead == '\r') ADVANCE(46); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(285); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\n') SKIP(491); 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(957); END_STATE(); case 50: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') ADVANCE(957); + if (lookahead == '\r') ADVANCE(49); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(278); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\n') ADVANCE(959); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\n') ADVANCE(959); if (lookahead == '\r') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(268); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(281); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 53: - if (lookahead == '\n') ADVANCE(904); + if (lookahead == '\n') SKIP(294); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(904); - if (lookahead == '\r') ADVANCE(53); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(273); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(964); END_STATE(); case 55: - if (lookahead == '\n') SKIP(464); + if (lookahead == '\n') ADVANCE(964); + if (lookahead == '\r') ADVANCE(54); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(289); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\n') ADVANCE(967); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\n') ADVANCE(967); if (lookahead == '\r') ADVANCE(56); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(405); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(295); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\n') SKIP(500); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(907); - if (lookahead == '\r') ADVANCE(58); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(279); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(979); END_STATE(); case 60: - if (lookahead == '\n') SKIP(458); + if (lookahead == '\n') ADVANCE(979); + if (lookahead == '\r') ADVANCE(59); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(441); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\n') ADVANCE(971); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\n') ADVANCE(971); if (lookahead == '\r') ADVANCE(61); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(406); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(303); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 63: - if (lookahead == '\n') SKIP(454); + if (lookahead == '\n') SKIP(494); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\n') ADVANCE(980); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\n') ADVANCE(980); if (lookahead == '\r') ADVANCE(64); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(407); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(442); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 66: - if (lookahead == '\n') SKIP(452); + if (lookahead == '\n') SKIP(490); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(981); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(981); if (lookahead == '\r') ADVANCE(67); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(281); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(443); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\n') SKIP(488); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(924); - if (lookahead == '\r') ADVANCE(69); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(424); + if (lookahead == '\n') ADVANCE(972); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\n') ADVANCE(972); + if (lookahead == '\r') ADVANCE(70); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(305); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(923); - if (lookahead == '\r') ADVANCE(71); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(423); + if (lookahead == '\n') ADVANCE(988); END_STATE(); case 73: - if (lookahead == '\n') SKIP(460); + if (lookahead == '\n') ADVANCE(988); + if (lookahead == '\r') ADVANCE(72); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(460); END_STATE(); case 74: - if (lookahead == '\n') SKIP(428); + if (lookahead == '\n') ADVANCE(982); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(918); + if (lookahead == '\n') ADVANCE(982); + if (lookahead == '\r') ADVANCE(74); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(444); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(918); - if (lookahead == '\r') ADVANCE(75); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(408); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(986); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\n') ADVANCE(986); + if (lookahead == '\r') ADVANCE(76); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(458); 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(464); END_STATE(); case 79: - if (lookahead == '\n') SKIP(418); + if (lookahead == '\n') SKIP(496); END_STATE(); case 80: - if (lookahead == '\n') SKIP(429); + if (lookahead == '\n') ADVANCE(987); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(926); + if (lookahead == '\n') ADVANCE(987); + if (lookahead == '\r') ADVANCE(80); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(459); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(926); - if (lookahead == '\r') ADVANCE(81); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(426); + if (lookahead == '\n') ADVANCE(990); END_STATE(); case 83: - if (lookahead == '\n') SKIP(419); + if (lookahead == '\n') ADVANCE(990); + if (lookahead == '\r') ADVANCE(82); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(462); END_STATE(); case 84: - if (lookahead == '\n') SKIP(431); + if (lookahead == '\n') SKIP(454); END_STATE(); case 85: - if (lookahead == '\n') SKIP(437); + if (lookahead == '\n') SKIP(465); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(914); + if (lookahead == '\n') SKIP(455); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(914); - if (lookahead == '\r') ADVANCE(86); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(404); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(468); END_STATE(); case 88: - if (lookahead == '\n') SKIP(432); + if (lookahead == '\n') ADVANCE(978); END_STATE(); case 89: - if (lookahead == '\n') SKIP(294); + if (lookahead == '\n') ADVANCE(978); + if (lookahead == '\r') ADVANCE(88); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(440); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 90: - if (lookahead == '\n') SKIP(434); + if (lookahead == '\n') SKIP(473); END_STATE(); case 91: - if (lookahead == '\n') SKIP(92); + if (lookahead == '\n') SKIP(469); END_STATE(); case 92: - ADVANCE_MAP( - '\n', 684, - '!', 500, - '#', 857, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - ';', 547, - '<', 609, - '=', 555, - '>', 614, - ); - if (lookahead == '\\') SKIP(361); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(92); + if (lookahead == '\n') SKIP(322); END_STATE(); case 93: - ADVANCE_MAP( - '\n', 684, - '"', 783, - '#', 857, - '$', 780, - '&', 593, - '(', 647, - '+', 494, - ',', 550, - '-', 496, - '0', 804, - ';', 547, - ); - if (lookahead == '\\') SKIP(375); - if (lookahead == '`') ADVANCE(850); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(93); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(650); + if (lookahead == '\n') SKIP(471); END_STATE(); case 94: - ADVANCE_MAP( - '\n', 684, - '#', 857, - '$', 778, - '&', 483, - '(', 647, - '-', 498, - '0', 803, - ':', 756, - '<', 605, - '>', 612, - ); - if (lookahead == '\\') SKIP(385); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(510); - if (lookahead == '}') ADVANCE(813); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(94); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '\n') SKIP(95); END_STATE(); case 95: - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(596); - if (lookahead == ';') ADVANCE(548); - if (lookahead == '<') ADVANCE(606); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(374); - if (lookahead == '`') ADVANCE(504); - if (lookahead == 'e') ADVANCE(508); - if (lookahead == '|') ADVANCE(587); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ADVANCE_MAP( + '\n', 732, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + ',', 598, + '-', 677, + '/', 687, + ';', 595, + '<', 657, + '=', 603, + '>', 662, + ); + if (lookahead == '\\') SKIP(396); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '|') ADVANCE(636); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(95); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(596); - if (lookahead == ';') ADVANCE(548); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(376); - if (lookahead == '`') ADVANCE(504); - if (lookahead == 'e') ADVANCE(508); - if (lookahead == '|') ADVANCE(587); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ADVANCE_MAP( + '\n', 732, + '"', 843, + '#', 917, + '$', 840, + '&', 641, + '(', 695, + '+', 530, + ',', 598, + '-', 532, + '0', 864, + ';', 595, + ); + if (lookahead == '\\') SKIP(411); + if (lookahead == '`') ADVANCE(910); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(866); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(698); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(483); - if (lookahead == '<') ADVANCE(605); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(386); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(510); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ADVANCE_MAP( + '\n', 732, + '#', 917, + '$', 838, + '&', 519, + '(', 695, + '-', 534, + '0', 863, + ':', 816, + '<', 653, + '>', 660, + ); + if (lookahead == '\\') SKIP(420); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(546); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(97); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(865); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(593); - if (lookahead == ';') ADVANCE(549); - if (lookahead == '\\') SKIP(389); - if (lookahead == '`') ADVANCE(504); - if (lookahead == 'i') ADVANCE(507); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ';') ADVANCE(596); + if (lookahead == '<') ADVANCE(654); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(409); + if (lookahead == '`') ADVANCE(540); + if (lookahead == 'e') ADVANCE(544); + if (lookahead == '|') ADVANCE(635); if (('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(98); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(876); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ';') ADVANCE(596); + if (lookahead == '<') ADVANCE(655); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(410); + if (lookahead == '`') ADVANCE(540); + if (lookahead == 'e') ADVANCE(544); + if (lookahead == '|') ADVANCE(635); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(99); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(876); - if (lookahead == '\r') ADVANCE(99); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(202); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(519); + if (lookahead == '<') ADVANCE(653); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(421); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(546); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(100); END_STATE(); case 101: - if (lookahead == '\n') SKIP(436); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(641); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '\\') SKIP(425); + if (lookahead == '`') ADVANCE(540); + if (lookahead == 'i') ADVANCE(543); + if (('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(841); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(101); END_STATE(); case 102: - if (lookahead == '\n') SKIP(433); + if (lookahead == '\n') ADVANCE(936); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(880); + if (lookahead == '\n') ADVANCE(936); + if (lookahead == '\r') ADVANCE(102); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(208); 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') ADVANCE(940); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(882); + if (lookahead == '\n') ADVANCE(940); + if (lookahead == '\r') ADVANCE(104); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(253); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(882); - if (lookahead == '\r') ADVANCE(105); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(240); + if (lookahead == '\n') SKIP(467); END_STATE(); case 107: - if (lookahead == '\n') SKIP(466); + if (lookahead == '\n') SKIP(470); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') SKIP(502); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(888); - if (lookahead == '\r') ADVANCE(108); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(249); + if (lookahead == '\n') ADVANCE(944); END_STATE(); case 110: - if (lookahead == '\n') SKIP(296); + if (lookahead == '\n') ADVANCE(944); + if (lookahead == '\r') ADVANCE(109); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(259); END_STATE(); case 111: - if (lookahead == '\n') SKIP(476); + if (lookahead == '\n') ADVANCE(948); END_STATE(); case 112: - if (lookahead == '\n') SKIP(467); + if (lookahead == '\n') ADVANCE(948); + if (lookahead == '\r') ADVANCE(111); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(265); END_STATE(); case 113: - if (lookahead == '\n') SKIP(472); + if (lookahead == '\n') SKIP(512); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\n') SKIP(324); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(911); - if (lookahead == '\r') ADVANCE(114); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(287); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(503); END_STATE(); case 116: - if (lookahead == '\n') SKIP(445); + if (lookahead == '\n') SKIP(508); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\n') ADVANCE(975); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\n') ADVANCE(975); if (lookahead == '\r') ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(438); + lookahead == ' ') SKIP(311); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(896); + if (lookahead == '\n') SKIP(481); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(896); - if (lookahead == '\r') ADVANCE(119); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(261); + if (lookahead == '\n') ADVANCE(956); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\n') ADVANCE(956); + if (lookahead == '\r') ADVANCE(120); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(277); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(928); - if (lookahead == '\r') ADVANCE(121); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(439); + if (lookahead == '\n') ADVANCE(991); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\n') ADVANCE(991); + if (lookahead == '\r') ADVANCE(122); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(474); END_STATE(); case 124: - if (lookahead == '\n') ADVANCE(921); - if (lookahead == '\r') ADVANCE(123); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(411); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(992); END_STATE(); case 125: - if (lookahead == '\n') SKIP(473); + if (lookahead == '\n') ADVANCE(992); + if (lookahead == '\r') ADVANCE(124); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(475); END_STATE(); case 126: - if (lookahead == '\n') ADVANCE(912); + if (lookahead == '\n') SKIP(509); 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(985); END_STATE(); case 128: - if (lookahead == '\n') SKIP(95); + if (lookahead == '\n') ADVANCE(985); + if (lookahead == '\r') ADVANCE(127); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(447); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 129: - if (lookahead == '\n') SKIP(93); + if (lookahead == '\n') ADVANCE(976); END_STATE(); case 130: - if (lookahead == '\n') SKIP(468); + if (lookahead == '\n') ADVANCE(976); + if (lookahead == '\r') ADVANCE(129); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(313); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 131: - if (lookahead == '\n') SKIP(448); + if (lookahead == '\n') SKIP(98); END_STATE(); case 132: - if (lookahead == '\n') SKIP(480); + if (lookahead == '\n') SKIP(96); END_STATE(); case 133: - if (lookahead == '\n') SKIP(477); + if (lookahead == '\n') SKIP(504); END_STATE(); case 134: - if (lookahead == '\n') SKIP(478); + if (lookahead == '\n') SKIP(484); END_STATE(); case 135: - if (lookahead == '\n') SKIP(469); + if (lookahead == '\n') SKIP(516); END_STATE(); case 136: - if (lookahead == '\n') SKIP(481); + if (lookahead == '\n') SKIP(513); END_STATE(); case 137: - if (lookahead == '\n') SKIP(94); + if (lookahead == '\n') SKIP(514); END_STATE(); case 138: - if (lookahead == '\n') SKIP(97); + if (lookahead == '\n') SKIP(517); END_STATE(); case 139: - if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\n') SKIP(505); END_STATE(); case 140: - if (lookahead == '\n') ADVANCE(902); - if (lookahead == '\r') ADVANCE(139); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(270); + if (lookahead == '\n') SKIP(97); END_STATE(); case 141: - if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\n') SKIP(100); END_STATE(); case 142: - if (lookahead == '\n') ADVANCE(931); - if (lookahead == '\r') ADVANCE(141); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(442); + if (lookahead == '\n') ADVANCE(962); END_STATE(); case 143: - if (lookahead == '\n') SKIP(449); + if (lookahead == '\n') ADVANCE(962); + if (lookahead == '\r') ADVANCE(142); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(286); END_STATE(); case 144: - if (lookahead == '\n') ADVANCE(788); - if (lookahead == '\r') ADVANCE(785); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(788); - if (lookahead != 0) ADVANCE(792); + if (lookahead == '\n') ADVANCE(995); END_STATE(); case 145: - if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\n') ADVANCE(995); + if (lookahead == '\r') ADVANCE(144); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(478); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(932); - if (lookahead == '\r') ADVANCE(145); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(444); + if (lookahead == '\n') SKIP(485); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(789); - if (lookahead == '\r') ADVANCE(786); + if (lookahead == '\n') ADVANCE(848); + if (lookahead == '\r') ADVANCE(845); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(789); - if (lookahead != 0) ADVANCE(792); + lookahead == ' ') ADVANCE(848); + if (lookahead != 0) ADVANCE(852); END_STATE(); case 148: - if (lookahead == '\n') SKIP(479); + if (lookahead == '\n') ADVANCE(996); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(933); + if (lookahead == '\n') ADVANCE(996); + if (lookahead == '\r') ADVANCE(148); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(480); END_STATE(); case 150: - if (lookahead == '\n') ADVANCE(933); - if (lookahead == '\r') ADVANCE(149); + if (lookahead == '\n') ADVANCE(849); + if (lookahead == '\r') ADVANCE(846); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(447); + lookahead == ' ') ADVANCE(849); + if (lookahead != 0) ADVANCE(852); END_STATE(); case 151: - if (lookahead == '\n') SKIP(98); + if (lookahead == '\n') SKIP(515); END_STATE(); case 152: - if (lookahead == '\n') SKIP(470); + if (lookahead == '\n') ADVANCE(997); END_STATE(); case 153: - if (lookahead == '\n') SKIP(471); + if (lookahead == '\n') ADVANCE(997); + if (lookahead == '\r') ADVANCE(152); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(483); END_STATE(); case 154: - if (lookahead == '\n') SKIP(482); + if (lookahead == '\n') SKIP(506); END_STATE(); case 155: - if (lookahead == '\n') SKIP(402); + if (lookahead == '\n') SKIP(101); END_STATE(); case 156: - ADVANCE_MAP( - '\n', 685, - '!', 942, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - ')', 649, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 797, - ';', 549, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '\\', 312, - '^', 590, - '`', 851, - '|', 586, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(156); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(507); END_STATE(); case 157: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(518); END_STATE(); case 158: - if (lookahead == '\n') SKIP(421); + if (lookahead == '\n') SKIP(438); END_STATE(); case 159: - if (lookahead == '\n') SKIP(274); + ADVANCE_MAP( + '\n', 733, + '!', 1006, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + ')', 697, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 857, + ';', 597, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '\\', 340, + '^', 638, + '`', 911, + '|', 634, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 160: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(249); END_STATE(); case 161: - if (lookahead == '\n') SKIP(278); + if (lookahead == '\n') SKIP(457); END_STATE(); case 162: - if (lookahead == '\n') SKIP(282); + if (lookahead == '\n') SKIP(298); END_STATE(); case 163: - if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\n') SKIP(300); END_STATE(); case 164: - if (lookahead == '\n') ADVANCE(885); - if (lookahead == '\r') ADVANCE(163); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(244); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(302); END_STATE(); case 165: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') SKIP(304); END_STATE(); case 166: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(308); END_STATE(); case 167: - if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\n') SKIP(312); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(889); - if (lookahead == '\r') ADVANCE(167); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(945); END_STATE(); case 169: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') ADVANCE(945); + if (lookahead == '\r') ADVANCE(168); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(260); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 170: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') SKIP(316); END_STATE(); case 171: - if (lookahead == '\n') SKIP(290); + if (lookahead == '\n') SKIP(306); END_STATE(); case 172: - if (lookahead == '\n') SKIP(456); + if (lookahead == '\n') SKIP(318); END_STATE(); case 173: - if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\n') ADVANCE(953); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\n') ADVANCE(953); if (lookahead == '\r') ADVANCE(173); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(265); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(272); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 175: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(310); END_STATE(); case 176: - if (lookahead == '\n') SKIP(465); + if (lookahead == '\n') SKIP(314); END_STATE(); case 177: - if (lookahead == '\n') SKIP(459); + if (lookahead == '\n') SKIP(315); END_STATE(); case 178: - if (lookahead == '\n') SKIP(457); + if (lookahead == '\n') SKIP(492); END_STATE(); case 179: - if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\n') ADVANCE(963); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\n') ADVANCE(963); if (lookahead == '\r') ADVANCE(179); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(285); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(287); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 181: - if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\n') SKIP(323); END_STATE(); case 182: - if (lookahead == '\n') ADVANCE(925); - if (lookahead == '\r') ADVANCE(181); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(425); + if (lookahead == '\n') SKIP(501); END_STATE(); case 183: - if (lookahead == '\n') SKIP(462); + if (lookahead == '\n') SKIP(495); END_STATE(); case 184: - if (lookahead == '\n') ADVANCE(878); + if (lookahead == '\n') SKIP(493); END_STATE(); case 185: - if (lookahead == '\n') ADVANCE(878); - if (lookahead == '\r') ADVANCE(184); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(234); + if (lookahead == '\n') ADVANCE(974); END_STATE(); case 186: - if (lookahead == '\n') SKIP(430); + if (lookahead == '\n') ADVANCE(974); + if (lookahead == '\r') ADVANCE(185); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(309); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 187: - if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\n') ADVANCE(989); END_STATE(); case 188: - if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\n') ADVANCE(989); if (lookahead == '\r') ADVANCE(187); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(243); + lookahead == ' ') SKIP(461); END_STATE(); case 189: - if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\n') SKIP(498); END_STATE(); case 190: - if (lookahead == '\n') ADVANCE(894); - if (lookahead == '\r') ADVANCE(189); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258); + if (lookahead == '\n') ADVANCE(938); END_STATE(); case 191: - if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\n') ADVANCE(938); + if (lookahead == '\r') ADVANCE(190); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(250); END_STATE(); case 192: - if (lookahead == '\n') ADVANCE(890); - if (lookahead == '\r') ADVANCE(191); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252); + if (lookahead == '\n') ADVANCE(942); END_STATE(); case 193: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') ADVANCE(942); + if (lookahead == '\r') ADVANCE(192); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(256); END_STATE(); case 194: - if (lookahead == '\n') ADVANCE(929); + if (lookahead == '\n') SKIP(472); END_STATE(); case 195: - if (lookahead == '\n') ADVANCE(929); - if (lookahead == '\r') ADVANCE(194); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(440); + if (lookahead == '\n') ADVANCE(950); END_STATE(); case 196: - if (lookahead == '\n') ADVANCE(898); + if (lookahead == '\n') ADVANCE(950); + if (lookahead == '\r') ADVANCE(195); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(268); END_STATE(); case 197: - if (lookahead == '\n') ADVANCE(898); - if (lookahead == '\r') ADVANCE(196); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(264); + if (lookahead == '\n') ADVANCE(954); END_STATE(); case 198: - if (lookahead == '\n') ADVANCE(930); + if (lookahead == '\n') ADVANCE(954); + if (lookahead == '\r') ADVANCE(197); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(274); END_STATE(); case 199: - if (lookahead == '\n') ADVANCE(930); - if (lookahead == '\r') ADVANCE(198); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(441); + if (lookahead == '\n') SKIP(325); END_STATE(); case 200: - if (lookahead == '\n') SKIP(96); + if (lookahead == '\n') ADVANCE(958); END_STATE(); case 201: - if (lookahead == '\n') SKIP(403); + if (lookahead == '\n') ADVANCE(958); + if (lookahead == '\r') ADVANCE(200); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(280); END_STATE(); case 202: - ADVANCE_MAP( - '\n', 686, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 100, - '_', 939, - 'e', 872, - '|', 587, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '\n') ADVANCE(993); END_STATE(); case 203: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') ADVANCE(993); + if (lookahead == '\r') ADVANCE(202); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(476); END_STATE(); case 204: - if (lookahead == '\n') SKIP(292); + if (lookahead == '\n') ADVANCE(994); END_STATE(); case 205: - if (lookahead == '\n') SKIP(293); + if (lookahead == '\n') ADVANCE(994); + if (lookahead == '\r') ADVANCE(204); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(477); END_STATE(); case 206: - if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\n') SKIP(99); END_STATE(); case 207: - if (lookahead == '\n') ADVANCE(905); - if (lookahead == '\r') ADVANCE(206); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(275); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(439); END_STATE(); case 208: - if (lookahead == '\n') SKIP(461); + ADVANCE_MAP( + '\n', 734, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 103, + '_', 1003, + 'e', 932, + '|', 635, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(208); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 209: - if (lookahead == '\n') SKIP(453); + if (lookahead == '\n') ADVANCE(947); END_STATE(); case 210: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') ADVANCE(947); + if (lookahead == '\r') ADVANCE(209); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(263); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 211: - if (lookahead == '\n') ADVANCE(886); - if (lookahead == '\r') ADVANCE(210); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246); + if (lookahead == '\n') SKIP(317); END_STATE(); case 212: - if (lookahead == '\n') ADVANCE(900); + if (lookahead == '\n') ADVANCE(955); END_STATE(); case 213: - if (lookahead == '\n') ADVANCE(900); + if (lookahead == '\n') ADVANCE(955); if (lookahead == '\r') ADVANCE(212); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(275); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 214: - if (lookahead == '\n') ADVANCE(892); + if (lookahead == '\n') SKIP(319); END_STATE(); case 215: - if (lookahead == '\n') ADVANCE(892); - if (lookahead == '\r') ADVANCE(214); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(255); + if (lookahead == '\n') SKIP(321); END_STATE(); case 216: - ADVANCE_MAP( - '\n', 687, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 28, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216); - 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 (lookahead == '\n') SKIP(320); END_STATE(); case 217: - if (lookahead == '\n') SKIP(263); + if (lookahead == '\n') ADVANCE(965); END_STATE(); case 218: - if (lookahead == '\n') SKIP(266); + if (lookahead == '\n') ADVANCE(965); + if (lookahead == '\r') ADVANCE(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(291); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 219: - if (lookahead == '\n') SKIP(272); + if (lookahead == '\n') SKIP(497); END_STATE(); case 220: - if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\n') SKIP(489); END_STATE(); case 221: - if (lookahead == '\n') ADVANCE(897); - if (lookahead == '\r') ADVANCE(220); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(946); END_STATE(); case 222: - if (lookahead == '\n') ADVANCE(903); + if (lookahead == '\n') ADVANCE(946); + if (lookahead == '\r') ADVANCE(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(262); END_STATE(); case 223: - if (lookahead == '\n') ADVANCE(903); - if (lookahead == '\r') ADVANCE(222); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(271); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(960); END_STATE(); case 224: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(960); + if (lookahead == '\r') ADVANCE(223); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(283); END_STATE(); case 225: - if (lookahead == '\n') ADVANCE(906); - if (lookahead == '\r') ADVANCE(224); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(277); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(969); END_STATE(); case 226: - if (lookahead == '\n') SKIP(463); + if (lookahead == '\n') ADVANCE(969); + if (lookahead == '\r') ADVANCE(225); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(299); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 227: - if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\n') ADVANCE(952); END_STATE(); case 228: - if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\n') ADVANCE(952); if (lookahead == '\r') ADVANCE(227); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(409); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(271); END_STATE(); case 229: - if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\n') ADVANCE(970); END_STATE(); case 230: - if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\n') ADVANCE(970); if (lookahead == '\r') ADVANCE(229); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(283); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(301); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 231: - if (lookahead == '\n') ADVANCE(920); + ADVANCE_MAP( + '\n', 735, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 28, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 232: - if (lookahead == '\n') ADVANCE(920); - if (lookahead == '\r') ADVANCE(231); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(410); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(288); END_STATE(); case 233: - ADVANCE_MAP( - '\n', 688, - '!', 942, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - ')', 649, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 797, - ';', 549, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '\\', 313, - '^', 590, - '`', 850, - '|', 586, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(290); END_STATE(); case 234: - ADVANCE_MAP( - '\n', 689, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 185, - '_', 939, - 'e', 872, - '|', 587, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '\n') SKIP(292); END_STATE(); case 235: - ADVANCE_MAP( - '\n', 690, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 30, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235); - 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 (lookahead == '\n') SKIP(296); END_STATE(); case 236: - ADVANCE_MAP( - '\n', 691, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '\\', 317, - '`', 850, - 'e', 947, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (lookahead == '\n') ADVANCE(961); END_STATE(); case 237: - ADVANCE_MAP( - '\n', 692, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 104, - '_', 939, - '|', 587, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '\n') ADVANCE(961); + if (lookahead == '\r') ADVANCE(236); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(284); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 238: - ADVANCE_MAP( - '\n', 693, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 32, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(238); - 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 (lookahead == '\n') ADVANCE(966); END_STATE(); case 239: - ADVANCE_MAP( - '\n', 694, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '\\', 318, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (lookahead == '\n') ADVANCE(966); + if (lookahead == '\r') ADVANCE(238); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(293); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 240: - ADVANCE_MAP( - '\n', 695, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 106, - '_', 939, - '`', 850, - '|', 587, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(240); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '\n') ADVANCE(968); END_STATE(); case 241: - ADVANCE_MAP( - '\n', 696, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 36, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(241); - 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 (lookahead == '\n') ADVANCE(968); + if (lookahead == '\r') ADVANCE(240); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(297); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 242: - ADVANCE_MAP( - '\n', 697, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '\\', 319, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(242); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') SKIP(499); END_STATE(); case 243: - ADVANCE_MAP( - '\n', 698, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 188, - '_', 939, - '|', 587, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '\n') ADVANCE(983); END_STATE(); case 244: - ADVANCE_MAP( - '\n', 699, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 164, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244); - 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 (lookahead == '\n') ADVANCE(983); + if (lookahead == '\r') ADVANCE(243); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(445); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 245: - ADVANCE_MAP( - '\n', 700, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 798, - ';', 548, - '<', 604, - '>', 611, - '\\', 320, - '`', 850, - 'e', 861, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (lookahead == '\n') ADVANCE(973); END_STATE(); case 246: - ADVANCE_MAP( - '\n', 701, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 211, - '_', 939, - '|', 587, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (lookahead == '\n') ADVANCE(973); + if (lookahead == '\r') ADVANCE(245); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(307); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 247: - ADVANCE_MAP( - '\n', 702, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 39, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\n') ADVANCE(984); END_STATE(); case 248: - ADVANCE_MAP( - '\n', 703, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 798, - ';', 548, - '<', 604, - '>', 611, - '\\', 321, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (lookahead == '\n') ADVANCE(984); + if (lookahead == '\r') ADVANCE(247); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(446); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 249: ADVANCE_MAP( - '\n', 704, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - ')', 649, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 109, - '_', 939, - '|', 587, + '\n', 736, + '!', 1006, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + ')', 697, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 857, + ';', 597, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '\\', 341, + '^', 638, + '`', 910, + '|', 634, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 250: ADVANCE_MAP( - '\n', 705, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 168, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 737, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 191, + '_', 1003, + 'e', 932, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 251: ADVANCE_MAP( - '\n', 706, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 798, - ';', 549, - '<', 604, - '>', 611, - '\\', 322, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 738, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 32, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 252: ADVANCE_MAP( - '\n', 707, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - ')', 649, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 192, - '_', 939, - '|', 587, + '\n', 739, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '\\', 345, + '`', 910, + 'e', 1011, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(252); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 253: ADVANCE_MAP( - '\n', 708, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 41, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 740, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 105, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 254: ADVANCE_MAP( - '\n', 709, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '>', 611, - '\\', 323, - '`', 850, - 'e', 947, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 741, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 34, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 255: ADVANCE_MAP( - '\n', 710, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 215, - '_', 939, - '|', 587, + '\n', 742, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '\\', 346, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 256: ADVANCE_MAP( - '\n', 711, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 47, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 743, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 193, + '_', 1003, + '|', 635, + '}', 709, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 257: ADVANCE_MAP( - '\n', 712, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '>', 611, - '\\', 324, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 744, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 36, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 258: ADVANCE_MAP( - '\n', 713, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 190, - '_', 939, - '`', 850, - '|', 587, + '\n', 745, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '\\', 347, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 259: ADVANCE_MAP( - '\n', 714, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 49, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 746, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 110, + '_', 1003, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 260: ADVANCE_MAP( - '\n', 715, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '>', 611, - '\\', 326, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 747, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 169, + '_', 1002, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 261: ADVANCE_MAP( - '\n', 716, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 120, - '_', 939, - '|', 587, + '\n', 748, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '\\', 348, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 262: ADVANCE_MAP( - '\n', 717, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 221, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 749, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 222, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(262); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 263: ADVANCE_MAP( - '\n', 718, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 604, - '>', 611, - '\\', 393, - '`', 850, - 'e', 947, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 750, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 210, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 264: ADVANCE_MAP( - '\n', 719, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 197, - '_', 939, - '|', 587, + '\n', 751, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 858, + ';', 596, + '<', 652, + '>', 659, + '\\', 349, + '`', 910, + 'e', 921, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(264); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 265: ADVANCE_MAP( - '\n', 720, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 174, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 752, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + ')', 697, + '*', 679, + '-', 674, + ';', 597, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 112, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(265); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 266: ADVANCE_MAP( - '\n', 721, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 604, - '>', 611, - '\\', 394, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 753, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 41, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(266); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 267: ADVANCE_MAP( - '\n', 722, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 605, - '>', 612, - '?', 754, - '@', 935, - '\\', 213, - '_', 939, - '|', 510, + '\n', 754, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 858, + ';', 596, + '<', 652, + '>', 659, + '\\', 350, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(267); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 268: ADVANCE_MAP( - '\n', 723, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 52, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 755, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 196, + '_', 1003, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 269: ADVANCE_MAP( - '\n', 724, - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '\\', 328, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 756, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 43, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 270: ADVANCE_MAP( - '\n', 725, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 593, - '*', 631, - '-', 626, - ';', 549, - '?', 754, - '@', 935, - '\\', 140, - '_', 939, - 'i', 871, + '\n', 757, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 858, + ';', 597, + '<', 652, + '>', 659, + '\\', 351, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(270); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 271: ADVANCE_MAP( - '\n', 726, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 223, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 758, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 228, + '_', 1003, + '|', 635, + '}', 709, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(271); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 272: ADVANCE_MAP( - '\n', 727, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 604, - '>', 611, - '\\', 395, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 759, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 174, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(272); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 273: ADVANCE_MAP( - '\n', 728, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 54, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 760, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '>', 659, + '\\', 352, + '`', 910, + 'e', 1011, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(273); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 274: ADVANCE_MAP( - '\n', 729, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '\\', 330, - '`', 851, - 'e', 947, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 761, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + ')', 697, + '*', 679, + '-', 674, + ';', 597, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 198, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(274); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 275: ADVANCE_MAP( - '\n', 730, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 207, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 762, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 213, + '_', 1002, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(275); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 276: ADVANCE_MAP( - '\n', 731, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '\\', 332, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 763, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 858, + ';', 597, + '<', 652, + '>', 659, + '\\', 353, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(276); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 277: ADVANCE_MAP( - '\n', 732, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 225, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 764, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 121, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(277); - 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 (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 278: ADVANCE_MAP( - '\n', 733, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '\\', 334, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 765, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 50, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(278); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 279: ADVANCE_MAP( - '\n', 734, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 59, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 766, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '>', 659, + '\\', 354, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(279); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 280: ADVANCE_MAP( - '\n', 735, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '>', 611, - '\\', 336, - '`', 851, - 'e', 947, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 767, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 201, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(280); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 281: ADVANCE_MAP( - '\n', 736, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 68, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 768, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 52, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(281); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 282: ADVANCE_MAP( - '\n', 737, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 798, - ';', 548, - '<', 604, - '>', 611, - '\\', 337, - '`', 851, - 'e', 861, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 769, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '>', 659, + '\\', 356, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 283: ADVANCE_MAP( - '\n', 738, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 230, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 770, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 653, + '>', 660, + '?', 814, + '@', 999, + '\\', 224, + '_', 1003, + '|', 546, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 284: ADVANCE_MAP( - '\n', 739, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 603, - '>', 611, - '\\', 341, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 771, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 237, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(284); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 285: ADVANCE_MAP( - '\n', 740, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 602, - '>', 611, - '?', 755, - '@', 936, - '\\', 180, - '_', 938, - '`', 850, - '|', 510, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 772, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '>', 659, + '\\', 357, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 286: ADVANCE_MAP( - '\n', 741, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 798, - ';', 548, - '<', 604, - '>', 611, - '\\', 342, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 773, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 641, + '*', 679, + '-', 674, + ';', 597, + '?', 814, + '@', 999, + '\\', 143, + '_', 1003, + 'i', 931, ); 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 (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); case 287: ADVANCE_MAP( - '\n', 742, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 593, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 489, - '>', 490, - '?', 755, - '@', 936, - '\\', 115, - '_', 938, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 774, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 180, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 288: ADVANCE_MAP( - '\n', 743, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 604, - '>', 611, - '\\', 344, - '`', 851, - 'e', 947, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 775, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 652, + '>', 659, + '\\', 428, + '`', 910, + 'e', 1011, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 289: ADVANCE_MAP( - '\n', 744, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 489, - '>', 490, - '?', 755, - '@', 936, - '\\', 127, - '_', 938, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 776, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 55, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 290: ADVANCE_MAP( - '\n', 745, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '>', 611, - '\\', 345, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 777, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 652, + '>', 659, + '\\', 429, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(290); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 291: ADVANCE_MAP( - '\n', 746, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 798, - ';', 549, - '<', 604, - '>', 611, - '\\', 346, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 778, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 218, + '_', 1002, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(291); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 292: ADVANCE_MAP( - '\n', 747, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '-', 941, - '0', 797, - ';', 548, - '<', 604, - '>', 611, - '\\', 347, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 779, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 597, + '<', 652, + '>', 659, + '\\', 430, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 293: ADVANCE_MAP( - '\n', 748, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 604, - '>', 611, - '\\', 349, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 780, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 239, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(293); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 294: ADVANCE_MAP( - '\n', 749, - '"', 783, - '#', 857, - '$', 776, - '&', 593, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - ';', 549, - '<', 489, - '>', 490, - '\\', 355, - '`', 850, - 'e', 947, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 650, + '>', 659, + '\\', 359, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(294); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + lookahead != ';' && + lookahead != '<') ADVANCE(1013); END_STATE(); case 295: ADVANCE_MAP( - '\n', 750, - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '\\', 365, - '`', 851, - '|', 510, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 782, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 57, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(295); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(1013); END_STATE(); case 296: ADVANCE_MAP( - '\n', 751, - '"', 783, - '#', 857, - '$', 776, - '&', 593, - '\'', 485, - '-', 941, - '0', 797, - ';', 549, - '<', 489, - '>', 490, - '\\', 368, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 783, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 652, + '>', 659, + '\\', 431, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(296); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 297: ADVANCE_MAP( - '\n', 752, - '"', 783, - '#', 857, - '$', 776, - '&', 593, - '\'', 485, - '-', 941, - '0', 797, - ';', 549, - '<', 489, - '>', 490, - '\\', 378, - '`', 851, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 784, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 241, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 298: - if (lookahead == '\r') SKIP(1); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(397); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 785, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '\\', 362, + '`', 911, + 'e', 1011, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(298); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 299: - if (lookahead == '\r') ADVANCE(784); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0) ADVANCE(792); + ADVANCE_MAP( + '\n', 786, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 226, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(299); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 300: - if (lookahead == '\r') ADVANCE(793); - if (lookahead != 0) ADVANCE(792); + ADVANCE_MAP( + '\n', 787, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '\\', 363, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(300); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 301: - if (lookahead == '\r') SKIP(2); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(412); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 788, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 230, + '_', 1002, + '`', 910, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(301); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); case 302: - if (lookahead == '\r') SKIP(3); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(413); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 789, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '\\', 365, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(302); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 303: - if (lookahead == '\r') SKIP(4); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(414); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 790, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 62, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(303); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(1013); END_STATE(); case 304: - if (lookahead == '\r') SKIP(5); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(6); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 791, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '\\', 367, + '`', 911, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(304); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 305: - if (lookahead == '\r') SKIP(7); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(399); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 792, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 71, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(305); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(1013); END_STATE(); case 306: - if (lookahead == '\r') SKIP(8); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(415); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 793, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '>', 659, + '\\', 368, + '`', 911, + 'e', 1011, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(306); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 307: - if (lookahead == '\r') SKIP(9); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(416); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 794, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 246, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(307); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(1013); END_STATE(); case 308: - if (lookahead == '\r') SKIP(155); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(402); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 795, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 858, + ';', 596, + '<', 652, + '>', 659, + '\\', 369, + '`', 911, + 'e', 921, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(308); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 309: - if (lookahead == '\r') SKIP(10); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(400); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 796, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 650, + '>', 659, + '?', 815, + '@', 1000, + '\\', 186, + '_', 1002, + '`', 910, + '|', 546, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(1013); END_STATE(); case 310: - if (lookahead == '\r') SKIP(201); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(403); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 797, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 651, + '>', 659, + '\\', 372, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(310); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 311: - if (lookahead == '\r') SKIP(11); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(401); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 798, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 641, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 525, + '>', 526, + '?', 815, + '@', 1000, + '\\', 118, + '_', 1002, + '`', 910, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(311); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); case 312: - if (lookahead == '\r') SKIP(20); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(156); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 799, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 858, + ';', 596, + '<', 652, + '>', 659, + '\\', 374, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(312); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 313: - if (lookahead == '\r') SKIP(157); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(233); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 800, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 525, + '>', 526, + '?', 815, + '@', 1000, + '\\', 130, + '_', 1002, + '`', 910, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(313); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); case 314: - if (lookahead == '\r') SKIP(21); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(420); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 801, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '>', 659, + '\\', 376, + '`', 911, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 315: - if (lookahead == '\r') SKIP(158); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(421); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 802, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '>', 659, + '\\', 377, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(315); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 316: - if (lookahead == '\r') SKIP(22); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(417); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 803, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 858, + ';', 597, + '<', 652, + '>', 659, + '\\', 378, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(316); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 317: - if (lookahead == '\r') SKIP(23); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(236); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 804, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 652, + '>', 659, + '\\', 379, + '`', 911, + 'e', 1011, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(317); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 318: - if (lookahead == '\r') SKIP(24); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 805, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 858, + ';', 597, + '<', 652, + '>', 659, + '\\', 380, + '`', 911, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(318); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 319: - if (lookahead == '\r') SKIP(25); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 806, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 596, + '<', 652, + '>', 659, + '\\', 381, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(319); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 320: - if (lookahead == '\r') SKIP(26); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 807, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 652, + '>', 659, + '\\', 383, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(320); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 321: - if (lookahead == '\r') SKIP(33); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 808, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '-', 1005, + '0', 857, + ';', 597, + '<', 652, + '>', 659, + '\\', 384, + '`', 911, + '|', 635, + '}', 709, + '[', 841, + ']', 841, + '{', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(321); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); case 322: - if (lookahead == '\r') SKIP(34); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(251); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 809, + '"', 843, + '#', 917, + '$', 836, + '&', 641, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + ';', 597, + '<', 525, + '>', 526, + '\\', 391, + '`', 910, + 'e', 1011, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(322); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); case 323: - if (lookahead == '\r') SKIP(37); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 810, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 650, + '>', 659, + '\\', 401, + '`', 911, + '|', 546, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(323); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(1013); END_STATE(); case 324: - if (lookahead == '\r') SKIP(42); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(257); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 811, + '"', 843, + '#', 917, + '$', 836, + '&', 641, + '\'', 521, + '-', 1005, + '0', 857, + ';', 597, + '<', 525, + '>', 526, + '\\', 404, + '`', 910, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(324); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); case 325: - if (lookahead == '\r') SKIP(43); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(451); - if (lookahead != 0) ADVANCE(949); + ADVANCE_MAP( + '\n', 812, + '"', 843, + '#', 917, + '$', 836, + '&', 641, + '\'', 521, + '-', 1005, + '0', 857, + ';', 597, + '<', 525, + '>', 526, + '\\', 413, + '`', 911, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(325); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); case 326: - if (lookahead == '\r') SKIP(44); + if (lookahead == '\r') SKIP(1); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(260); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(433); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 327: - if (lookahead == '\r') SKIP(45); + if (lookahead == '\r') ADVANCE(844); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(455); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') ADVANCE(850); + if (lookahead != 0) ADVANCE(852); END_STATE(); case 328: - if (lookahead == '\r') SKIP(50); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(269); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\r') ADVANCE(853); + if (lookahead != 0) ADVANCE(852); END_STATE(); case 329: - if (lookahead == '\r') SKIP(55); + if (lookahead == '\r') SKIP(2); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(464); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(449); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 330: - if (lookahead == '\r') SKIP(159); + if (lookahead == '\r') SKIP(3); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(274); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(448); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 331: - if (lookahead == '\r') SKIP(60); + if (lookahead == '\r') SKIP(4); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(458); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(450); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 332: - if (lookahead == '\r') SKIP(160); + if (lookahead == '\r') SKIP(5); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(276); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(6); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 333: - if (lookahead == '\r') SKIP(63); + if (lookahead == '\r') SKIP(7); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(454); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(451); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 334: - if (lookahead == '\r') SKIP(161); + if (lookahead == '\r') SKIP(8); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(278); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(435); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 335: - if (lookahead == '\r') SKIP(66); + if (lookahead == '\r') SKIP(9); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(452); - if (lookahead != 0) ADVANCE(949); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 336: - if (lookahead == '\r') SKIP(169); + if (lookahead == '\r') SKIP(158); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(280); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(438); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 337: - if (lookahead == '\r') SKIP(162); + if (lookahead == '\r') SKIP(10); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(282); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(436); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 338: - if (lookahead == '\r') SKIP(73); + if (lookahead == '\r') SKIP(207); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(460); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(439); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 339: - if (lookahead == '\r') SKIP(74); + if (lookahead == '\r') SKIP(11); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(428); + lookahead == ' ') SKIP(437); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 340: - if (lookahead == '\r') SKIP(79); + if (lookahead == '\r') SKIP(20); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(418); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(159); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 341: - if (lookahead == '\r') SKIP(170); + if (lookahead == '\r') SKIP(160); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(284); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(249); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 342: - if (lookahead == '\r') SKIP(165); + if (lookahead == '\r') SKIP(21); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(286); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(456); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 343: - if (lookahead == '\r') SKIP(80); + if (lookahead == '\r') SKIP(161); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(429); + lookahead == ' ') SKIP(457); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 344: - if (lookahead == '\r') SKIP(203); + if (lookahead == '\r') SKIP(22); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(288); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(453); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 345: - if (lookahead == '\r') SKIP(171); + if (lookahead == '\r') SKIP(23); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(290); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(252); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 346: - if (lookahead == '\r') SKIP(166); + if (lookahead == '\r') SKIP(24); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(291); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(255); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 347: - if (lookahead == '\r') SKIP(204); + if (lookahead == '\r') SKIP(25); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(292); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(258); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 348: - if (lookahead == '\r') SKIP(83); + if (lookahead == '\r') SKIP(26); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(419); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(261); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 349: - if (lookahead == '\r') SKIP(205); + if (lookahead == '\r') SKIP(29); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(293); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(264); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 350: - if (lookahead == '\r') SKIP(172); + if (lookahead == '\r') SKIP(30); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(456); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(267); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 351: - if (lookahead == '\r') SKIP(84); + if (lookahead == '\r') SKIP(37); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(431); + lookahead == ' ') SKIP(270); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 352: - if (lookahead == '\r') SKIP(177); + if (lookahead == '\r') SKIP(38); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(459); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(273); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 353: - if (lookahead == '\r') SKIP(85); + if (lookahead == '\r') SKIP(39); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(437); + lookahead == ' ') SKIP(276); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 354: - if (lookahead == '\r') SKIP(88); + if (lookahead == '\r') SKIP(44); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(432); + lookahead == ' ') SKIP(279); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 355: - if (lookahead == '\r') SKIP(89); + if (lookahead == '\r') SKIP(45); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(294); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(487); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 356: - if (lookahead == '\r') SKIP(176); + if (lookahead == '\r') SKIP(46); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(465); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(282); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 357: - if (lookahead == '\r') SKIP(178); + if (lookahead == '\r') SKIP(47); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(457); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(285); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 358: - if (lookahead == '\r') SKIP(208); + if (lookahead == '\r') SKIP(48); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(461); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(491); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 359: - if (lookahead == '\r') SKIP(90); + if (lookahead == '\r') SKIP(53); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(434); + lookahead == ' ') SKIP(294); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 360: - if (lookahead == '\r') SKIP(183); + if (lookahead == '\r') SKIP(58); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(462); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(500); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 361: - if (lookahead == '\r') SKIP(91); + if (lookahead == '\r') SKIP(63); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(92); + lookahead == ' ') SKIP(494); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 362: - if (lookahead == '\r') SKIP(101); + if (lookahead == '\r') SKIP(162); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(436); + lookahead == ' ') SKIP(298); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 363: - if (lookahead == '\r') SKIP(102); + if (lookahead == '\r') SKIP(163); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(433); + lookahead == ' ') SKIP(300); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 364: - if (lookahead == '\r') SKIP(186); + if (lookahead == '\r') SKIP(66); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(430); + lookahead == ' ') SKIP(490); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 365: - if (lookahead == '\r') SKIP(175); + if (lookahead == '\r') SKIP(164); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(295); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(302); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 366: - if (lookahead == '\r') SKIP(107); + if (lookahead == '\r') SKIP(69); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(466); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(488); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 367: - if (lookahead == '\r') SKIP(209); + if (lookahead == '\r') SKIP(165); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(453); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(304); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 368: - if (lookahead == '\r') SKIP(110); + if (lookahead == '\r') SKIP(171); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(296); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(306); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 369: - if (lookahead == '\r') SKIP(111); + if (lookahead == '\r') SKIP(166); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(476); + lookahead == ' ') SKIP(308); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 370: - if (lookahead == '\r') SKIP(112); + if (lookahead == '\r') SKIP(78); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(467); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(464); END_STATE(); case 371: - if (lookahead == '\r') SKIP(113); + if (lookahead == '\r') SKIP(79); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(472); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(496); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 372: - if (lookahead == '\r') SKIP(116); + if (lookahead == '\r') SKIP(175); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(445); + lookahead == ' ') SKIP(310); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 373: - if (lookahead == '\r') SKIP(125); + if (lookahead == '\r') SKIP(84); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(473); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(454); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 374: - if (lookahead == '\r') SKIP(128); + if (lookahead == '\r') SKIP(167); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(95); + lookahead == ' ') SKIP(312); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 375: - if (lookahead == '\r') SKIP(129); + if (lookahead == '\r') SKIP(85); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(93); + lookahead == ' ') SKIP(465); END_STATE(); case 376: - if (lookahead == '\r') SKIP(200); + if (lookahead == '\r') SKIP(176); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(96); + lookahead == ' ') SKIP(314); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 377: - if (lookahead == '\r') SKIP(130); + if (lookahead == '\r') SKIP(177); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(468); + lookahead == ' ') SKIP(315); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 378: - if (lookahead == '\r') SKIP(193); + if (lookahead == '\r') SKIP(170); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(297); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(316); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 379: - if (lookahead == '\r') SKIP(131); + if (lookahead == '\r') SKIP(211); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(448); + lookahead == ' ') SKIP(317); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 380: - if (lookahead == '\r') SKIP(132); + if (lookahead == '\r') SKIP(172); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(480); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(318); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 381: - if (lookahead == '\r') SKIP(133); + if (lookahead == '\r') SKIP(214); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(477); + lookahead == ' ') SKIP(319); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 382: - if (lookahead == '\r') SKIP(134); + if (lookahead == '\r') SKIP(86); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(478); + lookahead == ' ') SKIP(455); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 383: - if (lookahead == '\r') SKIP(135); + if (lookahead == '\r') SKIP(216); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(469); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(320); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 384: - if (lookahead == '\r') SKIP(136); + if (lookahead == '\r') SKIP(215); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(481); + lookahead == ' ') SKIP(321); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 385: - if (lookahead == '\r') SKIP(137); + if (lookahead == '\r') SKIP(178); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(94); + lookahead == ' ') SKIP(492); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 386: - if (lookahead == '\r') SKIP(138); + if (lookahead == '\r') SKIP(87); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(97); + lookahead == ' ') SKIP(468); END_STATE(); case 387: - if (lookahead == '\r') SKIP(143); + if (lookahead == '\r') SKIP(90); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(449); + lookahead == ' ') SKIP(473); END_STATE(); case 388: - if (lookahead == '\r') SKIP(148); + if (lookahead == '\r') SKIP(183); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(479); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(495); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 389: - if (lookahead == '\r') SKIP(151); + if (lookahead == '\r') SKIP(91); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(98); + lookahead == ' ') SKIP(469); END_STATE(); case 390: - if (lookahead == '\r') SKIP(152); + if (lookahead == '\r') SKIP(184); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(470); + lookahead == ' ') SKIP(493); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 391: - if (lookahead == '\r') SKIP(153); + if (lookahead == '\r') SKIP(92); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(471); + lookahead == ' ') SKIP(322); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 392: - if (lookahead == '\r') SKIP(154); + if (lookahead == '\r') SKIP(182); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(482); + lookahead == ' ') SKIP(501); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 393: - if (lookahead == '\r') SKIP(217); + if (lookahead == '\r') SKIP(219); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(263); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(497); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 394: - if (lookahead == '\r') SKIP(218); + if (lookahead == '\r') SKIP(93); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(266); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(471); END_STATE(); case 395: - if (lookahead == '\r') SKIP(219); + if (lookahead == '\r') SKIP(189); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(272); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(498); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 396: - if (lookahead == '\r') SKIP(226); + if (lookahead == '\r') SKIP(94); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(463); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(95); END_STATE(); case 397: - ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 811, - '$', 776, - '%', 641, - '&', 595, - '\'', 485, - '(', 648, - ')', 649, - '*', 632, - '+', 764, - ',', 551, - '-', 762, - '/', 636, - ':', 759, - ';', 548, - '<', 601, - '=', 557, - '>', 610, - '?', 755, - '@', 936, - '[', 668, - '\\', 298, - ']', 669, - '^', 589, - '_', 937, - '`', 851, - 'e', 947, - 'i', 946, - '{', 660, - '|', 586, - '}', 813, - '~', 766, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(397); - if (lookahead != 0) ADVANCE(949); + if (lookahead == '\r') SKIP(106); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(467); END_STATE(); case 398: - ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 811, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 801, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '@', 936, - '\\', 19, - ']', 669, - '^', 590, - '_', 938, - '`', 850, - '|', 586, - '[', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '}' < lookahead)) ADVANCE(949); + if (lookahead == '\r') SKIP(107); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(470); END_STATE(); case 399: - ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - '*', 632, - '+', 765, - '-', 763, - '/', 638, - '0', 797, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '\\', 305, - ']', 669, - '^', 590, - '`', 851, - '|', 586, - '~', 766, - '[', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(399); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + if (lookahead == '\r') SKIP(194); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(472); END_STATE(); case 400: - ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 594, - '\'', 485, - '(', 647, - ')', 649, - '*', 632, - '+', 765, - '-', 763, - '/', 638, - '0', 797, - '<', 608, - '=', 554, - '>', 613, - '?', 755, - '\\', 309, - '^', 590, - '`', 851, - '|', 588, - '~', 766, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(400); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + if (lookahead == '\r') SKIP(108); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(502); + if (lookahead != 0) ADVANCE(1013); END_STATE(); case 401: - ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 594, - '\'', 485, - '(', 647, - '*', 632, - '+', 765, - '-', 763, - '/', 638, - '0', 797, - ':', 759, - '<', 608, - '=', 554, - '>', 613, - '?', 755, - '\\', 311, - '^', 590, - '`', 851, - '|', 588, - '~', 766, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); + if (lookahead == '\r') SKIP(181); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(323); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 402: + if (lookahead == '\r') SKIP(220); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(489); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 403: + if (lookahead == '\r') SKIP(113); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(512); + END_STATE(); + case 404: + if (lookahead == '\r') SKIP(114); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(324); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 405: + if (lookahead == '\r') SKIP(115); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(503); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 406: + if (lookahead == '\r') SKIP(116); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(508); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 407: + if (lookahead == '\r') SKIP(119); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(481); + END_STATE(); + case 408: + if (lookahead == '\r') SKIP(126); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(509); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 409: + if (lookahead == '\r') SKIP(131); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(98); + END_STATE(); + case 410: + if (lookahead == '\r') SKIP(206); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(99); + END_STATE(); + case 411: + if (lookahead == '\r') SKIP(132); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(96); + END_STATE(); + case 412: + if (lookahead == '\r') SKIP(133); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(504); + END_STATE(); + case 413: + if (lookahead == '\r') SKIP(199); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(325); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 414: + if (lookahead == '\r') SKIP(134); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(484); + END_STATE(); + case 415: + if (lookahead == '\r') SKIP(135); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(516); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 416: + if (lookahead == '\r') SKIP(136); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(513); + END_STATE(); + case 417: + if (lookahead == '\r') SKIP(137); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(514); + END_STATE(); + case 418: + if (lookahead == '\r') SKIP(138); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(517); + END_STATE(); + case 419: + if (lookahead == '\r') SKIP(139); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(505); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 420: + if (lookahead == '\r') SKIP(140); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(97); + END_STATE(); + case 421: + if (lookahead == '\r') SKIP(141); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(100); + END_STATE(); + case 422: + if (lookahead == '\r') SKIP(146); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(485); + END_STATE(); + case 423: + if (lookahead == '\r') SKIP(151); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(515); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 424: + if (lookahead == '\r') SKIP(154); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(506); + END_STATE(); + case 425: + if (lookahead == '\r') SKIP(155); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(101); + END_STATE(); + case 426: + if (lookahead == '\r') SKIP(156); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(507); + END_STATE(); + case 427: + if (lookahead == '\r') SKIP(157); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(518); + END_STATE(); + case 428: + if (lookahead == '\r') SKIP(232); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(288); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 429: + if (lookahead == '\r') SKIP(233); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(290); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 430: + if (lookahead == '\r') SKIP(234); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(292); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 431: + if (lookahead == '\r') SKIP(235); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(296); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 432: + if (lookahead == '\r') SKIP(242); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(499); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 433: + ADVANCE_MAP( + '!', 712, + '"', 843, + '#', 871, + '$', 836, + '%', 689, + '&', 643, + '\'', 521, + '(', 696, + ')', 697, + '*', 680, + '+', 824, + ',', 599, + '-', 822, + '/', 684, + ':', 819, + ';', 596, + '<', 649, + '=', 605, + '>', 658, + '?', 815, + '@', 1000, + '[', 716, + '\\', 326, + ']', 717, + '^', 637, + '_', 1001, + '`', 911, + 'e', 1011, + 'i', 1010, + '{', 708, + '|', 634, + '}', 873, + '~', 826, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(433); + if (lookahead != 0) ADVANCE(1013); + END_STATE(); + case 434: + ADVANCE_MAP( + '!', 712, + '"', 843, + '#', 871, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 861, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '@', 1000, + '\\', 19, + ']', 717, + '^', 638, + '_', 1002, + '`', 910, + '|', 634, + '[', 841, + '{', 841, + '}', 841, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(401); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(434); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < '/' || '?' < lookahead)) ADVANCE(949); + (lookahead < ';' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 402: + case 435: ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 594, - '\'', 485, - '(', 647, - '*', 632, - '+', 765, - '-', 763, - '/', 638, - '0', 797, - '<', 608, - '=', 554, - '>', 613, - '?', 755, - '\\', 308, - ']', 669, - '^', 590, - '`', 851, - '|', 588, - '~', 766, - '[', 781, - '{', 781, - '}', 781, + '!', 712, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + '*', 680, + '+', 825, + '-', 823, + '/', 686, + '0', 857, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '\\', 334, + ']', 717, + '^', 638, + '`', 911, + '|', 634, + '~', 826, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(402); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(435); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < ';' || '?' < lookahead)) ADVANCE(1013); END_STATE(); - case 403: + case 436: + ADVANCE_MAP( + '!', 712, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 642, + '\'', 521, + '(', 695, + ')', 697, + '*', 680, + '+', 825, + '-', 823, + '/', 686, + '0', 857, + '<', 656, + '=', 602, + '>', 661, + '?', 815, + '\\', 337, + '^', 638, + '`', 911, + '|', 636, + '~', 826, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(436); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < ';' || '?' < lookahead)) ADVANCE(1013); + END_STATE(); + case 437: ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 594, - '\'', 485, - '(', 647, - '*', 632, - '+', 765, - '-', 763, - '/', 638, - '0', 797, - '<', 608, - '=', 554, - '>', 613, - '?', 755, - '\\', 310, - ']', 782, - '^', 590, - '`', 851, - '|', 588, - '~', 766, - '[', 781, - '{', 781, - '}', 781, + '!', 712, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 642, + '\'', 521, + '(', 695, + '*', 680, + '+', 825, + '-', 823, + '/', 686, + '0', 857, + ':', 819, + '<', 656, + '=', 602, + '>', 661, + '?', 815, + '\\', 339, + '^', 638, + '`', 911, + '|', 636, + '~', 826, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(403); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(437); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < '/' || '?' < lookahead)) ADVANCE(1013); END_STATE(); - case 404: + case 438: + ADVANCE_MAP( + '!', 712, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 642, + '\'', 521, + '(', 695, + '*', 680, + '+', 825, + '-', 823, + '/', 686, + '0', 857, + '<', 656, + '=', 602, + '>', 661, + '?', 815, + '\\', 336, + ']', 717, + '^', 638, + '`', 911, + '|', 636, + '~', 826, + '[', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(438); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(1013); + END_STATE(); + case 439: + ADVANCE_MAP( + '!', 712, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 642, + '\'', 521, + '(', 695, + '*', 680, + '+', 825, + '-', 823, + '/', 686, + '0', 857, + '<', 656, + '=', 602, + '>', 661, + '?', 815, + '\\', 338, + ']', 842, + '^', 638, + '`', 911, + '|', 636, + '~', 826, + '[', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(439); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(1013); + END_STATE(); + case 440: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 502, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 602, - '>', 611, - '?', 755, - '@', 936, - '\\', 87, - '_', 938, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 538, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 650, + '>', 659, + '?', 815, + '@', 1000, + '\\', 89, + '_', 1002, + '`', 910, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(404); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(440); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 405: + case 441: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 57, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 60, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(405); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(441); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + (lookahead < ';' || ']' < lookahead)) ADVANCE(1013); END_STATE(); - case 406: + case 442: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 62, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 65, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(406); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(442); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(949); + (lookahead < ';' || ']' < lookahead)) ADVANCE(1013); END_STATE(); - case 407: + case 443: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 65, - ']', 669, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 68, + ']', 717, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(443); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 408: + case 444: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 76, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 75, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(408); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 409: + case 445: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 228, - ']', 669, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 244, + ']', 717, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(445); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 410: + case 446: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 232, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 248, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(446); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 411: + case 447: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - '<', 489, - '>', 490, - '?', 755, - '@', 936, - '\\', 124, - '_', 938, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + '<', 525, + '>', 526, + '?', 815, + '@', 1000, + '\\', 128, + '_', 1002, + '`', 910, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(447); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 412: + case 448: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - ')', 649, - '-', 941, - '0', 797, - ';', 484, - '<', 602, - '>', 611, - '[', 668, - '\\', 301, - '`', 850, - '{', 660, - '|', 584, - ']', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 696, + ')', 697, + '+', 825, + '-', 823, + '0', 857, + '<', 650, + '>', 659, + '[', 716, + '\\', 330, + '`', 910, + '{', 708, + '|', 632, + '~', 826, + ']', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(412); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(448); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(1013); END_STATE(); - case 413: + case 449: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - ')', 493, - '+', 765, - '-', 763, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 302, - '`', 850, - '{', 660, - '|', 585, - '~', 766, - ']', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 696, + ')', 697, + '-', 1005, + '0', 857, + ';', 520, + '<', 650, + '>', 659, + '[', 716, + '\\', 329, + '`', 910, + '{', 708, + '|', 633, + ']', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(413); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead == ' ') SKIP(449); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); - case 414: + case 450: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - '+', 765, - '-', 763, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 303, - ']', 669, - '`', 850, - '{', 660, - '}', 781, - '~', 766, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 696, + ')', 529, + '+', 825, + '-', 823, + '0', 857, + '<', 650, + '>', 659, + '[', 716, + '\\', 331, + ']', 717, + '`', 910, + '{', 708, + '}', 841, + '~', 826, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(414); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1013); END_STATE(); - case 415: + case 451: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - '-', 941, - '0', 797, - ';', 484, - '<', 602, - '>', 611, - '[', 668, - '\\', 306, - '`', 850, - 'e', 947, - '{', 660, - ']', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 696, + '-', 1005, + '0', 857, + ';', 520, + '<', 650, + '>', 659, + '[', 716, + '\\', 333, + '`', 910, + 'e', 1011, + '{', 708, + ']', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(451); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 416: + case 452: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 307, - ']', 781, - '`', 850, - '{', 660, - '}', 661, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 696, + '-', 1005, + '0', 857, + '<', 650, + '>', 659, + '[', 716, + '\\', 335, + ']', 841, + '`', 910, + '{', 708, + '}', 709, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(416); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(452); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 417: + case 453: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 647, - '+', 765, - '-', 763, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 316, - '`', 850, - '~', 766, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 695, + '+', 825, + '-', 823, + '0', 857, + '<', 650, + '>', 659, + '[', 716, + '\\', 344, + '`', 910, + '~', 826, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(417); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(453); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1013); END_STATE(); - case 418: + case 454: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 648, - '+', 765, - '-', 763, - '0', 797, - '<', 489, - '>', 490, - '\\', 340, - '`', 850, - '{', 660, - '~', 766, - '[', 781, - ']', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '\'', 521, + '(', 696, + '+', 825, + '-', 823, + '0', 857, + '<', 525, + '>', 526, + '\\', 373, + '`', 910, + '{', 708, + '~', 826, + '[', 841, + ']', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(418); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(454); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1013); END_STATE(); - case 419: + case 455: ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 647, - '+', 765, - '-', 763, - '0', 797, - '<', 489, - '>', 490, - '\\', 348, - '`', 850, - '~', 766, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '\'', 521, + '(', 695, + '+', 825, + '-', 823, + '0', 857, + '<', 525, + '>', 526, + '\\', 382, + '`', 910, + '~', 826, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(455); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(949); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1013); END_STATE(); - case 420: + case 456: ADVANCE_MAP( - '!', 942, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 797, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '\\', 314, - ']', 669, - '^', 590, - '`', 851, - '|', 586, - '[', 781, - '{', 781, - '}', 781, + '!', 1006, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 857, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '\\', 342, + ']', 717, + '^', 638, + '`', 911, + '|', 634, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(420); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(456); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < ';' || '?' < lookahead)) ADVANCE(1013); END_STATE(); - case 421: + case 457: ADVANCE_MAP( - '!', 942, - '"', 783, - '#', 857, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 797, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '\\', 315, - ']', 669, - '^', 590, - '`', 850, - '|', 586, - '[', 781, - '{', 781, - '}', 781, + '!', 1006, + '"', 843, + '#', 917, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 857, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '\\', 343, + ']', 717, + '^', 638, + '`', 910, + '|', 634, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(421); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(457); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(949); + (lookahead < ';' || '?' < lookahead)) ADVANCE(1013); END_STATE(); - case 422: + case 458: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 78, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 77, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(422); + lookahead == ' ') SKIP(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 423: + case 459: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 72, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + ':', 816, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 81, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(423); + lookahead == ' ') SKIP(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 424: + case 460: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 70, - ']', 669, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 73, + ']', 717, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(424); + lookahead == ' ') SKIP(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 425: + case 461: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 182, - ']', 503, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 188, + ']', 539, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(425); + lookahead == ' ') SKIP(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 426: + case 462: ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 82, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 83, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(426); + lookahead == ' ') SKIP(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 427: + case 463: ADVANCE_MAP( - '!', 500, - '"', 783, - '#', 857, - '$', 780, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '.', 497, - '/', 639, - ':', 756, - ';', 484, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 536, + '"', 843, + '#', 917, + '$', 840, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + ',', 598, + '-', 676, + '.', 533, + '/', 687, + ':', 816, + ';', 520, + '<', 657, + '=', 604, + '>', 662, + '?', 814, ); - if (lookahead == '\\') SKIP(339); - if (lookahead == ']') ADVANCE(782); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(850); - if (lookahead == 'e') ADVANCE(508); - if (lookahead == 'i') ADVANCE(507); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(370); + if (lookahead == ']') ADVANCE(842); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '`') ADVANCE(910); + if (lookahead == 'e') ADVANCE(544); + if (lookahead == 'i') ADVANCE(543); + if (lookahead == '|') ADVANCE(636); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(770); + lookahead == ' ') SKIP(464); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(830); END_STATE(); - case 428: + case 464: ADVANCE_MAP( - '!', 500, - '"', 783, - '#', 857, - '$', 780, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '/', 639, - ':', 756, - ';', 484, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 536, + '"', 843, + '#', 917, + '$', 840, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + ',', 598, + '-', 676, + '/', 687, + ':', 816, + ';', 520, + '<', 657, + '=', 604, + '>', 662, + '?', 814, ); - if (lookahead == '\\') SKIP(339); - if (lookahead == ']') ADVANCE(782); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(850); - if (lookahead == 'e') ADVANCE(508); - if (lookahead == 'i') ADVANCE(507); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(370); + if (lookahead == ']') ADVANCE(842); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '`') ADVANCE(910); + if (lookahead == 'e') ADVANCE(544); + if (lookahead == 'i') ADVANCE(543); + if (lookahead == '|') ADVANCE(636); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(428); + lookahead == ' ') SKIP(464); END_STATE(); - case 429: + case 465: ADVANCE_MAP( - '!', 500, - '"', 783, - '#', 857, - '$', 492, - '%', 644, - '&', 594, - '(', 488, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 536, + '"', 843, + '#', 917, + '$', 528, + '%', 692, + '&', 642, + '(', 524, + ')', 529, + '*', 681, + '+', 673, + ',', 598, + '-', 676, + '/', 687, + ':', 816, + '<', 657, + '=', 604, + '>', 662, + '?', 814, ); - if (lookahead == '\\') SKIP(343); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(375); + if (lookahead == ']') ADVANCE(717); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(636); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(429); + lookahead == ' ') SKIP(465); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 430: + case 466: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - '<', 609, - '=', 555, - '>', 614, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + ',', 598, + '-', 677, + '/', 687, + '<', 657, + '=', 603, + '>', 662, ); - if (lookahead == '\\') SKIP(364); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(397); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '|') ADVANCE(636); + if (lookahead == '}') ADVANCE(833); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(430); + lookahead == ' ') SKIP(467); END_STATE(); - case 431: + case 467: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + ',', 598, + '-', 677, + '/', 687, + '<', 657, + '=', 603, + '>', 662, ); - if (lookahead == '\\') SKIP(351); - if (lookahead == ']') ADVANCE(782); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(588); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (lookahead == '\\') SKIP(397); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '|') ADVANCE(636); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(431); + lookahead == ' ') SKIP(467); END_STATE(); - case 432: + case 468: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + ':', 816, + '<', 657, + '=', 604, + '>', 662, + '?', 814, ); - if (lookahead == '\\') SKIP(354); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(588); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + if (lookahead == '\\') SKIP(386); + if (lookahead == ']') ADVANCE(842); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(636); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(432); + lookahead == ' ') SKIP(468); END_STATE(); - case 433: + case 469: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '[', 667, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + ':', 816, + '<', 657, + '=', 604, + '>', 662, + '?', 814, ); - if (lookahead == '\\') SKIP(363); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(389); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(636); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(433); + lookahead == ' ') SKIP(469); END_STATE(); - case 434: + case 470: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '[', 667, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '[', 715, ); - if (lookahead == '\\') SKIP(359); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(588); - if (lookahead == '}') ADVANCE(813); + if (lookahead == '\\') SKIP(398); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '|') ADVANCE(636); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(434); + lookahead == ' ') SKIP(470); END_STATE(); - case 435: + case 471: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - '<', 609, - '=', 555, - '>', 614, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + ')', 529, + '*', 681, + '+', 673, + ',', 598, + '-', 676, + '/', 687, + ':', 816, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '[', 715, ); - if (lookahead == '\\') SKIP(362); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); - if (lookahead == '}') ADVANCE(773); + if (lookahead == '\\') SKIP(394); + if (lookahead == ']') ADVANCE(717); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(636); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(436); + lookahead == ' ') SKIP(471); END_STATE(); - case 436: + case 472: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - ')', 493, - '*', 633, - '+', 625, - ',', 550, - '-', 629, - '/', 639, - '<', 609, - '=', 555, - '>', 614, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + ')', 529, + '*', 681, + '+', 673, + ',', 598, + '-', 677, + '/', 687, + '<', 657, + '=', 603, + '>', 662, ); - if (lookahead == '\\') SKIP(362); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(399); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '|') ADVANCE(636); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(436); + lookahead == ' ') SKIP(472); END_STATE(); - case 437: + case 473: ADVANCE_MAP( - '!', 500, - '#', 857, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, + '!', 536, + '#', 917, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, ); - if (lookahead == '\\') SKIP(353); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '^') ADVANCE(591); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(588); + if (lookahead == '\\') SKIP(387); + if (lookahead == ']') ADVANCE(717); + if (lookahead == '^') ADVANCE(639); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(636); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(437); + lookahead == ' ') SKIP(473); END_STATE(); - case 438: + case 474: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 118, - ']', 669, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 123, + ']', 717, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438); + lookahead == ' ') SKIP(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 439: + case 475: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 122, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 125, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(439); + lookahead == ' ') SKIP(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 440: + case 476: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 195, - ']', 669, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 203, + ']', 717, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(440); + lookahead == ' ') SKIP(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 441: + case 477: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 199, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 205, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(441); + lookahead == ' ') SKIP(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 442: + case 478: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - ')', 649, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 142, - '_', 939, - '|', 584, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + ')', 697, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 145, + '_', 1003, + '|', 632, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(442); + lookahead == ' ') SKIP(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 443: + case 479: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 144, - '_', 939, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 147, + '_', 1003, ); if (lookahead == '\n' || - lookahead == '\r') SKIP(443); + lookahead == '\r') SKIP(479); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(788); + lookahead == ' ') ADVANCE(848); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(852); END_STATE(); - case 444: + case 480: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 146, - '_', 939, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 149, + '_', 1003, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(444); + lookahead == ' ') SKIP(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 445: + case 481: ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 857, - '$', 780, - '&', 483, - '\'', 485, - '(', 647, - '+', 765, - '-', 763, - '0', 803, - '<', 606, - '>', 612, + '!', 711, + '"', 843, + '#', 917, + '$', 840, + '&', 519, + '\'', 521, + '(', 695, + '+', 825, + '-', 823, + '0', 863, + '<', 654, + '>', 660, ); - if (lookahead == '\\') SKIP(372); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(587); - if (lookahead == '~') ADVANCE(766); + if (lookahead == '\\') SKIP(407); + if (lookahead == ']') ADVANCE(717); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(635); + if (lookahead == '~') ADVANCE(826); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(445); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(481); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(865); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 446: + case 482: ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 147, - '_', 939, + '!', 711, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 150, + '_', 1003, ); if (lookahead == '\n' || - lookahead == '\r') SKIP(446); + lookahead == '\r') SKIP(482); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(789); + lookahead == ' ') ADVANCE(849); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(852); END_STATE(); - case 447: + case 483: ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 150, - '_', 939, + '!', 711, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 153, + '_', 1003, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(447); + lookahead == ' ') SKIP(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 448: - if (lookahead == '!') ADVANCE(663); - if (lookahead == '#') ADVANCE(811); - if (lookahead == '$') ADVANCE(779); - if (lookahead == '*') ADVANCE(631); - if (lookahead == '-') ADVANCE(626); - if (lookahead == '?') ADVANCE(754); - if (lookahead == '@') ADVANCE(935); - if (lookahead == '\\') SKIP(379); - if (lookahead == '_') ADVANCE(939); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '}') ADVANCE(813); + case 484: + if (lookahead == '!') ADVANCE(711); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '$') ADVANCE(839); + if (lookahead == '*') ADVANCE(679); + if (lookahead == '-') ADVANCE(674); + if (lookahead == '?') ADVANCE(814); + if (lookahead == '@') ADVANCE(999); + if (lookahead == '\\') SKIP(414); + if (lookahead == '_') ADVANCE(1003); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(448); + lookahead == ' ') SKIP(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 449: - if (lookahead == '!') ADVANCE(663); - if (lookahead == '#') ADVANCE(811); - if (lookahead == '$') ADVANCE(779); - if (lookahead == '*') ADVANCE(631); - if (lookahead == '-') ADVANCE(626); - if (lookahead == '?') ADVANCE(754); - if (lookahead == '@') ADVANCE(935); - if (lookahead == '\\') SKIP(387); - if (lookahead == '_') ADVANCE(939); - if (lookahead == '`') ADVANCE(850); + case 485: + if (lookahead == '!') ADVANCE(711); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '$') ADVANCE(839); + if (lookahead == '*') ADVANCE(679); + if (lookahead == '-') ADVANCE(674); + if (lookahead == '?') ADVANCE(814); + if (lookahead == '@') ADVANCE(999); + if (lookahead == '\\') SKIP(422); + if (lookahead == '_') ADVANCE(1003); + if (lookahead == '`') ADVANCE(910); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(449); + lookahead == ' ') SKIP(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 450: + case 486: ADVANCE_MAP( - '!', 814, - '#', 820, - '$', 779, - '*', 631, - '-', 626, - '=', 821, - '?', 754, - '@', 935, + '!', 874, + '#', 880, + '$', 839, + '*', 679, + '-', 674, + '=', 881, + '?', 814, + '@', 999, ); - if (lookahead == '\\') SKIP(379); - if (lookahead == '_') ADVANCE(939); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '}') ADVANCE(813); + if (lookahead == '\\') SKIP(414); + if (lookahead == '_') ADVANCE(1003); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(448); + lookahead == ' ') SKIP(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 451: + case 487: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '[', 668, - '\\', 325, - '`', 850, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + '<', 650, + '>', 659, + '[', 716, + '\\', 355, + '`', 910, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(451); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(487); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 452: + case 488: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '\\', 335, - '`', 850, - '|', 584, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + '<', 650, + '>', 659, + '\\', 366, + '`', 910, + '|', 632, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(452); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(488); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 453: + case 489: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - '<', 602, - '>', 611, - '\\', 367, - '`', 851, - '|', 584, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + '<', 650, + '>', 659, + '\\', 402, + '`', 911, + '|', 632, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(453); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(489); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 454: + case 490: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - ')', 649, - '-', 941, - '0', 797, - '<', 603, - '>', 611, - '\\', 333, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '(', 695, + ')', 697, + '-', 1005, + '0', 857, + '<', 651, + '>', 659, + '\\', 364, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(490); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 455: + case 491: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 603, - '=', 943, - '>', 611, - '\\', 327, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + '<', 651, + '=', 1007, + '>', 659, + '\\', 358, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(455); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(491); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead)) ADVANCE(949); + (lookahead < ';' || '>' < lookahead)) ADVANCE(1013); END_STATE(); - case 456: + case 492: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 603, - '=', 943, - '>', 611, - '\\', 350, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + '<', 651, + '=', 1007, + '>', 659, + '\\', 385, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(456); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(492); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead)) ADVANCE(949); + (lookahead < ';' || '>' < lookahead)) ADVANCE(1013); END_STATE(); - case 457: + case 493: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - '<', 603, - '>', 611, - '\\', 357, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + '<', 651, + '>', 659, + '\\', 390, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(457); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(493); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 458: + case 494: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 603, - '>', 611, - '\\', 331, - ']', 669, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 651, + '>', 659, + '\\', 361, + ']', 717, + '`', 910, + '|', 635, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(458); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(494); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 459: + case 495: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 603, - '>', 611, - '\\', 352, - ']', 669, - '`', 851, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 651, + '>', 659, + '\\', 388, + ']', 717, + '`', 911, + '|', 635, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(459); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(495); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 460: + case 496: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 338, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 652, + '>', 659, + '\\', 371, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(460); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(496); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 461: + case 497: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 358, - ']', 669, - '`', 851, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 652, + '>', 659, + '\\', 393, + ']', 717, + '`', 911, + '|', 635, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(461); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(497); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 462: + case 498: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 360, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 652, + '>', 659, + '\\', 395, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(462); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(498); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 463: + case 499: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 797, - '<', 604, - '>', 611, - '\\', 396, - ']', 669, - '`', 850, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 857, + '<', 652, + '>', 659, + '\\', 432, + ']', 717, + '`', 910, + '|', 635, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(463); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(499); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 464: + case 500: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 798, - '<', 604, - '>', 611, - '\\', 329, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 858, + '<', 652, + '>', 659, + '\\', 360, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(464); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + lookahead == ' ') SKIP(500); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 465: + case 501: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '&', 483, - '\'', 485, - '-', 941, - '0', 798, - '<', 604, - '>', 611, - '\\', 356, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '&', 519, + '\'', 521, + '-', 1005, + '0', 858, + '<', 652, + '>', 659, + '\\', 392, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(465); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + lookahead == ' ') SKIP(501); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); END_STATE(); - case 466: + case 502: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 366, - '`', 850, - 'e', 947, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 917, + '$', 836, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + '<', 525, + '>', 526, + '\\', 400, + '`', 910, + 'e', 1011, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(466); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(502); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 467: + case 503: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 776, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 370, - '`', 850, - '}', 813, - '[', 781, - ']', 781, - '{', 781, + '"', 843, + '#', 917, + '$', 836, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + '<', 525, + '>', 526, + '\\', 405, + '`', 910, + '}', 873, + '[', 841, + ']', 841, + '{', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(467); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(503); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 468: + case 504: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 780, - '&', 483, - '(', 647, - ')', 493, - '+', 495, - '-', 496, - '0', 804, - '<', 607, - '=', 553, - '>', 612, + '"', 843, + '#', 917, + '$', 840, + '&', 519, + '(', 695, + ')', 529, + '+', 531, + '-', 532, + '0', 864, + '<', 655, + '=', 601, + '>', 660, ); - if (lookahead == '\\') SKIP(377); - if (lookahead == ']') ADVANCE(669); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(587); + if (lookahead == '\\') SKIP(412); + if (lookahead == ']') ADVANCE(717); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(635); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(468); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + lookahead == ' ') SKIP(504); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(866); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(650); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(698); END_STATE(); - case 469: + case 505: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 777, - '\'', 485, - '(', 647, - ')', 649, - '<', 489, - '>', 490, - '\\', 383, - '`', 850, - '|', 584, - '}', 813, + '"', 843, + '#', 917, + '$', 837, + '\'', 521, + '(', 695, + ')', 697, + '<', 525, + '>', 526, + '\\', 419, + '`', 910, + '|', 632, + '}', 873, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(469); + lookahead == ' ') SKIP(505); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 470: + case 506: ADVANCE_MAP( - '"', 783, - '#', 857, - '$', 491, - '%', 640, - '*', 631, - '+', 623, - '-', 626, - '/', 635, - ':', 756, + '"', 843, + '#', 917, + '$', 527, + '%', 688, + '*', 679, + '+', 671, + '-', 674, + '/', 683, + ':', 816, ); - if (lookahead == '\\') SKIP(390); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '}') ADVANCE(813); + if (lookahead == '\\') SKIP(424); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '}') ADVANCE(873); if (('[' <= lookahead && lookahead <= ']') || - lookahead == '{') ADVANCE(781); + lookahead == '{') ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(470); + lookahead == ' ') SKIP(506); END_STATE(); - case 471: - if (lookahead == '"') ADVANCE(783); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '\'') ADVANCE(485); - if (lookahead == ')') ADVANCE(649); - if (lookahead == '\\') SKIP(391); - if (lookahead == '}') ADVANCE(813); + case 507: + if (lookahead == '"') ADVANCE(843); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '\'') ADVANCE(521); + if (lookahead == ')') ADVANCE(697); + if (lookahead == '\\') SKIP(426); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(837); + lookahead == ' ') ADVANCE(897); END_STATE(); - case 472: + case 508: ADVANCE_MAP( - '"', 783, - '#', 858, - '$', 776, - '\'', 485, - '(', 647, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 371, - '`', 850, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 918, + '$', 836, + '\'', 521, + '(', 695, + '-', 1005, + '0', 857, + '<', 525, + '>', 526, + '\\', 406, + '`', 910, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(472); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(508); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 473: + case 509: ADVANCE_MAP( - '"', 783, - '#', 858, - '$', 776, - '\'', 485, - '-', 941, - '0', 797, - '<', 489, - '>', 490, - '\\', 373, - ']', 669, - '`', 850, - '[', 781, - '{', 781, - '}', 781, + '"', 843, + '#', 918, + '$', 836, + '\'', 521, + '-', 1005, + '0', 857, + '<', 525, + '>', 526, + '\\', 408, + ']', 717, + '`', 910, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(473); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(509); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 474: - if (lookahead == '"') ADVANCE(783); - if (lookahead == '#') ADVANCE(791); - if (lookahead == '$') ADVANCE(778); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(850); + case 510: + if (lookahead == '"') ADVANCE(843); + if (lookahead == '#') ADVANCE(851); + if (lookahead == '$') ADVANCE(838); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == '`') ADVANCE(910); if (lookahead == '\n' || - lookahead == '\r') SKIP(474); + lookahead == '\r') SKIP(510); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0) ADVANCE(792); + lookahead == ' ') ADVANCE(850); + if (lookahead != 0) ADVANCE(852); END_STATE(); - case 475: + case 511: ADVANCE_MAP( - '#', 811, - '%', 642, - '*', 818, - '+', 828, - ',', 552, - '-', 825, - '/', 637, - ':', 758, - '=', 821, - '?', 831, - '@', 816, - '[', 667, + '#', 871, + '%', 690, + '*', 878, + '+', 888, + ',', 600, + '-', 885, + '/', 685, + ':', 818, + '=', 881, + '?', 891, + '@', 876, + '[', 715, ); - if (lookahead == '\\') SKIP(369); - if (lookahead == '^') ADVANCE(592); - if (lookahead == '}') ADVANCE(813); + if (lookahead == '\\') SKIP(403); + if (lookahead == '^') ADVANCE(640); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(476); + lookahead == ' ') SKIP(512); END_STATE(); - case 476: - if (lookahead == '#') ADVANCE(811); - if (lookahead == '%') ADVANCE(642); - if (lookahead == ',') ADVANCE(552); - if (lookahead == '/') ADVANCE(637); - if (lookahead == ':') ADVANCE(756); - if (lookahead == '[') ADVANCE(667); - if (lookahead == '\\') SKIP(369); - if (lookahead == '^') ADVANCE(592); - if (lookahead == '}') ADVANCE(813); + case 512: + if (lookahead == '#') ADVANCE(871); + if (lookahead == '%') ADVANCE(690); + if (lookahead == ',') ADVANCE(600); + if (lookahead == '/') ADVANCE(685); + if (lookahead == ':') ADVANCE(816); + if (lookahead == '[') ADVANCE(715); + if (lookahead == '\\') SKIP(403); + if (lookahead == '^') ADVANCE(640); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(476); + lookahead == ' ') SKIP(512); END_STATE(); - case 477: - if (lookahead == '#') ADVANCE(857); - if (lookahead == '$') ADVANCE(509); - if (lookahead == '&') ADVANCE(483); - if (lookahead == '-') ADVANCE(498); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(381); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(587); + case 513: + if (lookahead == '#') ADVANCE(917); + if (lookahead == '$') ADVANCE(545); + if (lookahead == '&') ADVANCE(519); + if (lookahead == '-') ADVANCE(534); + if (lookahead == '0') ADVANCE(863); + if (lookahead == '<') ADVANCE(655); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(416); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(635); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(513); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(865); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 478: + case 514: ADVANCE_MAP( - '#', 857, - '%', 640, - '&', 483, - '*', 631, - '+', 623, - '-', 626, - '/', 635, - '<', 606, - '>', 612, + '#', 917, + '%', 688, + '&', 519, + '*', 679, + '+', 671, + '-', 674, + '/', 683, + '<', 654, + '>', 660, ); - if (lookahead == '\\') SKIP(382); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '|') ADVANCE(587); + if (lookahead == '\\') SKIP(417); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(635); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(478); + lookahead == ' ') SKIP(514); END_STATE(); - case 479: + case 515: ADVANCE_MAP( - '#', 857, - '&', 502, - '(', 648, - ';', 547, - '<', 605, - '>', 612, - '[', 668, - '\\', 388, - '{', 660, + '#', 917, + '&', 538, + '(', 696, + ';', 595, + '<', 653, + '>', 660, + '[', 716, + '\\', 423, + '{', 708, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(479); + lookahead == ' ') SKIP(515); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '&' || ')' < lookahead) && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(949); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 480: + case 516: ADVANCE_MAP( - '#', 857, - '&', 483, - '<', 606, - '>', 612, - '\\', 380, - ']', 669, - '`', 504, - '|', 587, - '[', 781, - '{', 781, - '}', 781, + '#', 917, + '&', 519, + '<', 654, + '>', 660, + '\\', 415, + ']', 717, + '`', 540, + '|', 635, + '[', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(480); + lookahead == ' ') SKIP(516); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(949); + lookahead != '<') ADVANCE(1013); 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); + case 517: + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(519); + if (lookahead == '<') ADVANCE(655); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(418); + if (lookahead == ']') ADVANCE(717); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '|') ADVANCE(635); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(481); + lookahead == ' ') SKIP(517); END_STATE(); - case 482: - if (lookahead == '#') ADVANCE(857); - if (lookahead == '+') ADVANCE(501); - if (lookahead == '/') ADVANCE(635); - if (lookahead == '=') ADVANCE(553); - if (lookahead == '[') ADVANCE(667); - if (lookahead == '\\') SKIP(392); - if (lookahead == '`') ADVANCE(504); - if (lookahead == '}') ADVANCE(813); + case 518: + if (lookahead == '#') ADVANCE(917); + if (lookahead == '+') ADVANCE(537); + if (lookahead == '/') ADVANCE(683); + if (lookahead == '=') ADVANCE(601); + if (lookahead == '[') ADVANCE(715); + if (lookahead == '\\') SKIP(427); + if (lookahead == '`') ADVANCE(540); + if (lookahead == '}') ADVANCE(873); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(482); + lookahead == ' ') SKIP(518); END_STATE(); - case 483: - if (lookahead == '&') ADVANCE(582); - if (lookahead == '>') ADVANCE(674); + case 519: + if (lookahead == '&') ADVANCE(630); + if (lookahead == '>') ADVANCE(722); END_STATE(); - case 484: - if (lookahead == '&') ADVANCE(658); - if (lookahead == ';') ADVANCE(657); + case 520: + if (lookahead == '&') ADVANCE(706); + if (lookahead == ';') ADVANCE(705); END_STATE(); - case 485: - if (lookahead == '\'') ADVANCE(794); - if (lookahead != 0) ADVANCE(485); + case 521: + if (lookahead == '\'') ADVANCE(854); + if (lookahead != 0) ADVANCE(521); END_STATE(); - case 486: - if (lookahead == '\'') ADVANCE(795); - if (lookahead == '\\') ADVANCE(487); - if (lookahead != 0) ADVANCE(486); + case 522: + if (lookahead == '\'') ADVANCE(855); + if (lookahead == '\\') ADVANCE(523); + if (lookahead != 0) ADVANCE(522); END_STATE(); - case 487: - if (lookahead == '\'') ADVANCE(796); - if (lookahead == '\\') ADVANCE(487); - if (lookahead != 0) ADVANCE(486); + case 523: + if (lookahead == '\'') ADVANCE(856); + if (lookahead == '\\') ADVANCE(523); + if (lookahead != 0) ADVANCE(522); END_STATE(); - case 488: - if (lookahead == '(') ADVANCE(545); + case 524: + if (lookahead == '(') ADVANCE(593); END_STATE(); - case 489: - if (lookahead == '(') ADVANCE(853); + case 525: + if (lookahead == '(') ADVANCE(913); END_STATE(); - case 490: - if (lookahead == '(') ADVANCE(854); + case 526: + if (lookahead == '(') ADVANCE(914); END_STATE(); - case 491: - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); + case 527: + if (lookahead == '(') ADVANCE(908); + if (lookahead == '`') ADVANCE(912); END_STATE(); - case 492: - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + case 528: + if (lookahead == '(') ADVANCE(908); + if (lookahead == '`') ADVANCE(912); + if (lookahead == '{') ADVANCE(872); END_STATE(); - case 493: - if (lookahead == ')') ADVANCE(546); + case 529: + if (lookahead == ')') ADVANCE(594); END_STATE(); - case 494: - if (lookahead == '+') ADVANCE(558); + case 530: + if (lookahead == '+') ADVANCE(606); END_STATE(); - case 495: - if (lookahead == '+') ADVANCE(558); - if (lookahead == '=') ADVANCE(562); + case 531: + if (lookahead == '+') ADVANCE(606); + if (lookahead == '=') ADVANCE(610); END_STATE(); - case 496: - if (lookahead == '-') ADVANCE(560); - if (lookahead == '0') ADVANCE(804); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + case 532: + if (lookahead == '-') ADVANCE(608); + if (lookahead == '0') ADVANCE(864); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(866); END_STATE(); - case 497: - if (lookahead == '.') ADVANCE(771); + case 533: + if (lookahead == '.') ADVANCE(831); END_STATE(); - case 498: - if (lookahead == '0') ADVANCE(804); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); + case 534: + if (lookahead == '0') ADVANCE(864); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(866); END_STATE(); - case 499: - if (lookahead == '<') ADVANCE(753); + case 535: + if (lookahead == '<') ADVANCE(813); END_STATE(); - case 500: - if (lookahead == '=') ADVANCE(599); + case 536: + if (lookahead == '=') ADVANCE(647); END_STATE(); - case 501: - if (lookahead == '=') ADVANCE(562); + case 537: + if (lookahead == '=') ADVANCE(610); END_STATE(); - case 502: - if (lookahead == '>') ADVANCE(674); + case 538: + if (lookahead == '>') ADVANCE(722); END_STATE(); - case 503: - if (lookahead == ']') ADVANCE(671); + case 539: + if (lookahead == ']') ADVANCE(719); END_STATE(); - case 504: - if (lookahead == '`') ADVANCE(774); + case 540: + if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(504); + lookahead == ' ') ADVANCE(540); END_STATE(); - case 505: - if (lookahead == 'a') ADVANCE(506); + case 541: + if (lookahead == 'a') ADVANCE(542); END_STATE(); - case 506: - if (lookahead == 'c') ADVANCE(651); + case 542: + if (lookahead == 'c') ADVANCE(699); END_STATE(); - case 507: - if (lookahead == 'n') ADVANCE(542); + case 543: + if (lookahead == 'n') ADVANCE(590); END_STATE(); - case 508: - if (lookahead == 's') ADVANCE(505); + case 544: + if (lookahead == 's') ADVANCE(541); END_STATE(); - case 509: - if (lookahead == '{') ADVANCE(812); + case 545: + if (lookahead == '{') ADVANCE(872); END_STATE(); - case 510: - if (lookahead == '|') ADVANCE(580); + case 546: + if (lookahead == '|') ADVANCE(628); END_STATE(); - case 511: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + case 547: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); END_STATE(); - case 512: + case 548: if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(949); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1013); END_STATE(); - case 513: - if (eof) ADVANCE(541); - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(596); - if (lookahead == ')') ADVANCE(649); - if (lookahead == ';') ADVANCE(549); - if (lookahead == '<') ADVANCE(606); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(535); - if (lookahead == '`') ADVANCE(851); - if (lookahead == '|') ADVANCE(587); + case 549: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(654); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(579); + if (lookahead == '`') ADVANCE(911); + if (lookahead == '|') ADVANCE(635); + if (lookahead == '}') ADVANCE(709); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + lookahead == '{') ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(513); + lookahead == ' ') SKIP(549); END_STATE(); - case 514: - if (eof) ADVANCE(541); - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(596); - if (lookahead == ')') ADVANCE(649); - if (lookahead == ';') ADVANCE(549); - if (lookahead == '<') ADVANCE(606); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(537); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(587); + case 550: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(654); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(581); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(635); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(514); + lookahead == ' ') SKIP(550); END_STATE(); - case 515: - if (eof) ADVANCE(541); - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(596); - if (lookahead == ')') ADVANCE(649); - if (lookahead == ';') ADVANCE(549); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(536); - if (lookahead == '`') ADVANCE(851); - if (lookahead == '|') ADVANCE(587); + case 551: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(654); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(583); + if (lookahead == '`') ADVANCE(911); + if (lookahead == '|') ADVANCE(635); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(515); + lookahead == ' ') SKIP(551); END_STATE(); - case 516: - if (eof) ADVANCE(541); - if (lookahead == '\n') ADVANCE(684); - if (lookahead == '#') ADVANCE(857); - if (lookahead == '&') ADVANCE(596); - if (lookahead == ')') ADVANCE(649); - if (lookahead == ';') ADVANCE(549); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '>') ADVANCE(612); - if (lookahead == '\\') SKIP(538); - if (lookahead == '`') ADVANCE(850); - if (lookahead == '|') ADVANCE(587); + case 552: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(654); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(585); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(635); + if (lookahead == '}') ADVANCE(709); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(552); + END_STATE(); + case 553: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(655); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(580); + if (lookahead == '`') ADVANCE(911); + if (lookahead == '|') ADVANCE(635); + if (lookahead == '}') ADVANCE(709); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(781); + lookahead == '{') ADVANCE(841); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(516); + lookahead == ' ') SKIP(553); END_STATE(); - case 517: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(513); + case 554: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(655); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(582); + if (lookahead == '`') ADVANCE(911); + if (lookahead == '|') ADVANCE(635); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(554); END_STATE(); - case 518: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(515); + case 555: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(655); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(584); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(635); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(841); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(555); END_STATE(); - case 519: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(514); + case 556: + if (eof) ADVANCE(589); + if (lookahead == '\n') ADVANCE(732); + if (lookahead == '#') ADVANCE(917); + if (lookahead == '&') ADVANCE(644); + if (lookahead == ')') ADVANCE(697); + if (lookahead == ';') ADVANCE(597); + if (lookahead == '<') ADVANCE(655); + if (lookahead == '>') ADVANCE(660); + if (lookahead == '\\') SKIP(586); + if (lookahead == '`') ADVANCE(910); + if (lookahead == '|') ADVANCE(635); + if (lookahead == '}') ADVANCE(709); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(556); END_STATE(); - case 520: - if (eof) ADVANCE(541); - if (lookahead == '\n') SKIP(516); + case 557: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(549); END_STATE(); - case 521: - if (eof) ADVANCE(541); - ADVANCE_MAP( - '\n', 697, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '\\', 319, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(521); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + case 558: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(550); END_STATE(); - case 522: - if (eof) ADVANCE(541); + case 559: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(552); + END_STATE(); + case 560: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(553); + END_STATE(); + case 561: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(554); + END_STATE(); + case 562: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(556); + END_STATE(); + case 563: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(551); + END_STATE(); + case 564: + if (eof) ADVANCE(589); + if (lookahead == '\n') SKIP(555); + END_STATE(); + case 565: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 699, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 164, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 743, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 193, + '_', 1003, + '|', 635, + '}', 709, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(522); - 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); + lookahead == ' ') SKIP(565); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 523: - if (eof) ADVANCE(541); + case 566: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 701, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 211, - '_', 939, - '|', 587, + '\n', 745, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '\\', 347, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(523); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + lookahead == ' ') SKIP(566); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); - case 524: - if (eof) ADVANCE(541); + case 567: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 705, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 168, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 750, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 210, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(524); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(567); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); - case 525: - if (eof) ADVANCE(541); + case 568: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 706, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 798, - ';', 549, - '<', 604, - '>', 611, - '\\', 322, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 757, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 858, + ';', 597, + '<', 652, + '>', 659, + '\\', 351, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(525); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + lookahead == ' ') SKIP(568); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); - case 526: - if (eof) ADVANCE(541); + case 569: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 710, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 215, - '_', 939, - '|', 587, + '\n', 758, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 228, + '_', 1003, + '|', 635, + '}', 709, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(526); + lookahead == ' ') SKIP(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 527: - if (eof) ADVANCE(541); + case 570: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 715, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '>', 611, - '\\', 326, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 759, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 174, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(527); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(570); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); - case 528: - if (eof) ADVANCE(541); + case 571: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 720, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 174, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 772, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '>', 659, + '\\', 357, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); + END_STATE(); + case 572: + if (eof) ADVANCE(589); + ADVANCE_MAP( + '\n', 774, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 180, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(528); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(572); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); - case 529: - if (eof) ADVANCE(541); + case 573: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 727, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 604, - '>', 611, - '\\', 395, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 783, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 652, + '>', 659, + '\\', 431, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(529); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(573); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); - case 530: - if (eof) ADVANCE(541); + case 574: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 730, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 207, - '_', 938, - '`', 850, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 786, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 226, + '_', 1002, + '`', 910, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(530); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(574); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(949); + (lookahead < '&' || '*' < lookahead)) ADVANCE(1013); END_STATE(); - case 531: - if (eof) ADVANCE(541); + case 575: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 733, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '\\', 334, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 789, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '\\', 365, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(531); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(575); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); - case 532: - if (eof) ADVANCE(541); + case 576: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 745, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 603, - '>', 611, - '\\', 345, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 802, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 651, + '>', 659, + '\\', 377, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(532); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(576); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); - case 533: - if (eof) ADVANCE(541); + case 577: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 746, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 798, - ';', 549, - '<', 604, - '>', 611, - '\\', 346, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 803, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 858, + ';', 597, + '<', 652, + '>', 659, + '\\', 378, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(533); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + lookahead == ' ') SKIP(577); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(863); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(923); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); - case 534: - if (eof) ADVANCE(541); + case 578: + if (eof) ADVANCE(589); ADVANCE_MAP( - '\n', 748, - '"', 783, - '#', 857, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '-', 941, - '0', 797, - ';', 549, - '<', 604, - '>', 611, - '\\', 349, - '`', 851, - '|', 587, - '[', 781, - ']', 781, - '{', 781, - '}', 781, + '\n', 807, + '"', 843, + '#', 917, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '-', 1005, + '0', 857, + ';', 597, + '<', 652, + '>', 659, + '\\', 383, + '`', 911, + '|', 635, + '[', 841, + ']', 841, + '{', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(534); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); + lookahead == ' ') SKIP(578); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(949); + (lookahead < '&' || ')' < lookahead)) ADVANCE(1013); END_STATE(); - case 535: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(517); + case 579: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(557); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(513); + lookahead == ' ') SKIP(549); END_STATE(); - case 536: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(518); + case 580: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(560); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(515); + lookahead == ' ') SKIP(553); END_STATE(); - case 537: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(519); + case 581: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(558); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(514); + lookahead == ' ') SKIP(550); END_STATE(); - case 538: - if (eof) ADVANCE(541); - if (lookahead == '\r') SKIP(520); + case 582: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(561); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(516); + lookahead == ' ') SKIP(554); END_STATE(); - case 539: - if (eof) ADVANCE(541); + case 583: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(563); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(551); + END_STATE(); + case 584: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(564); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(555); + END_STATE(); + case 585: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(559); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(552); + END_STATE(); + case 586: + if (eof) ADVANCE(589); + if (lookahead == '\r') SKIP(562); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(556); + END_STATE(); + case 587: + if (eof) ADVANCE(589); ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 811, - '$', 776, - '%', 641, - '&', 595, - '\'', 485, - '(', 648, - ')', 649, - '*', 632, - '+', 764, - ',', 551, - '-', 762, - '/', 636, - ':', 759, - ';', 548, - '<', 601, - '=', 557, - '>', 610, - '?', 755, - '@', 936, - '[', 668, - '\\', 298, - ']', 669, - '^', 589, - '_', 937, - '`', 851, - 'e', 947, - 'i', 946, - '{', 660, - '|', 586, - '}', 813, - '~', 766, + '!', 712, + '"', 843, + '#', 871, + '$', 836, + '%', 689, + '&', 643, + '\'', 521, + '(', 696, + ')', 697, + '*', 680, + '+', 824, + ',', 599, + '-', 822, + '/', 684, + ':', 819, + ';', 596, + '<', 649, + '=', 605, + '>', 658, + '?', 815, + '@', 1000, + '[', 716, + '\\', 326, + ']', 717, + '^', 637, + '_', 1001, + '`', 911, + 'e', 1011, + 'i', 1010, + '{', 708, + '|', 634, + '}', 873, + '~', 826, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(539); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(587); + if (lookahead != 0) ADVANCE(1013); END_STATE(); - case 540: - if (eof) ADVANCE(541); + case 588: + if (eof) ADVANCE(589); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 857, - '$', 776, - '&', 502, - '\'', 485, - '(', 648, - ')', 649, - '-', 941, - '0', 797, - ';', 484, - '<', 602, - '>', 611, - '[', 668, - '\\', 301, - '`', 850, - '{', 660, - '|', 584, - ']', 781, - '}', 781, + '!', 714, + '"', 843, + '#', 917, + '$', 836, + '&', 538, + '\'', 521, + '(', 696, + ')', 697, + '-', 1005, + '0', 857, + ';', 520, + '<', 650, + '>', 659, + '[', 716, + '\\', 329, + '`', 910, + '{', 708, + '|', 633, + ']', 841, + '}', 841, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(540); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if (lookahead != 0) ADVANCE(949); + lookahead == ' ') SKIP(588); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if (lookahead != 0) ADVANCE(1013); END_STATE(); - case 541: + case 589: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 542: + case 590: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 543: + case 591: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 544: + case 592: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 545: + case 593: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); - case 546: + case 594: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); - case 547: + case 595: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 548: + case 596: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(658); - if (lookahead == ';') ADVANCE(657); + if (lookahead == '&') ADVANCE(706); + if (lookahead == ';') ADVANCE(705); END_STATE(); - case 549: + case 597: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(656); + if (lookahead == ';') ADVANCE(704); END_STATE(); - case 550: + case 598: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 551: + case 599: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(845); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == ',') ADVANCE(905); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 552: + case 600: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(844); + if (lookahead == ',') ADVANCE(904); END_STATE(); - case 553: + case 601: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 554: + case 602: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(598); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == '~') ADVANCE(673); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(646); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == '~') ADVANCE(721); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 555: + case 603: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(597); + if (lookahead == '=') ADVANCE(645); END_STATE(); - case 556: + case 604: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(597); - if (lookahead == '~') ADVANCE(672); + if (lookahead == '=') ADVANCE(645); + if (lookahead == '~') ADVANCE(720); END_STATE(); - case 557: + case 605: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 558: + case 606: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 559: + case 607: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 560: + case 608: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 561: + case 609: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 562: + case 610: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 563: + case 611: ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 564: + case 612: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 565: + case 613: ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 566: + case 614: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 567: + case 615: ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 568: + case 616: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 569: + case 617: ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 570: + case 618: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 571: + case 619: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 572: + case 620: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 573: + case 621: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 574: + case 622: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 575: + case 623: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 576: + case 624: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 577: + case 625: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 578: + case 626: ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 579: + case 627: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 580: + case 628: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 581: + case 629: ACCEPT_TOKEN(anon_sym_DASHo); END_STATE(); - case 582: + case 630: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 583: + case 631: ACCEPT_TOKEN(anon_sym_DASHa); END_STATE(); - case 584: + case 632: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 585: + case 633: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(662); + if (lookahead == '&') ADVANCE(710); END_STATE(); - case 586: + case 634: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(662); - if (lookahead == '=') ADVANCE(579); - if (lookahead == '|') ADVANCE(580); + if (lookahead == '&') ADVANCE(710); + if (lookahead == '=') ADVANCE(627); + if (lookahead == '|') ADVANCE(628); END_STATE(); - case 587: + case 635: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(662); - if (lookahead == '|') ADVANCE(580); + if (lookahead == '&') ADVANCE(710); + if (lookahead == '|') ADVANCE(628); END_STATE(); - case 588: + case 636: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(579); - if (lookahead == '|') ADVANCE(580); + if (lookahead == '=') ADVANCE(627); + if (lookahead == '|') ADVANCE(628); END_STATE(); - case 589: + case 637: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(578); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == '^') ADVANCE(847); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(626); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == '^') ADVANCE(907); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 590: + case 638: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(578); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(626); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 591: + case 639: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(577); + if (lookahead == '=') ADVANCE(625); END_STATE(); - case 592: + case 640: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(846); + if (lookahead == '^') ADVANCE(906); END_STATE(); - case 593: + case 641: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 594: + case 642: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(582); - if (lookahead == '=') ADVANCE(576); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '=') ADVANCE(624); END_STATE(); - case 595: + case 643: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(582); - if (lookahead == '=') ADVANCE(576); - if (lookahead == '>') ADVANCE(674); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '=') ADVANCE(624); + if (lookahead == '>') ADVANCE(722); END_STATE(); - case 596: + case 644: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(582); - if (lookahead == '>') ADVANCE(674); + if (lookahead == '&') ADVANCE(630); + if (lookahead == '>') ADVANCE(722); END_STATE(); - case 597: + case 645: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 598: + case 646: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 599: + case 647: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 600: + case 648: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 601: + case 649: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(619); - if (lookahead == '=') ADVANCE(615); + if (lookahead == '&') ADVANCE(724); + if (lookahead == '(') ADVANCE(913); + if (lookahead == '<') ADVANCE(667); + if (lookahead == '=') ADVANCE(663); END_STATE(); - case 602: + case 650: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(499); + if (lookahead == '&') ADVANCE(724); + if (lookahead == '(') ADVANCE(913); + if (lookahead == '<') ADVANCE(535); END_STATE(); - case 603: + case 651: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(618); + if (lookahead == '&') ADVANCE(724); + if (lookahead == '(') ADVANCE(913); + if (lookahead == '<') ADVANCE(666); END_STATE(); - case 604: + case 652: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(617); + if (lookahead == '&') ADVANCE(724); + if (lookahead == '(') ADVANCE(913); + if (lookahead == '<') ADVANCE(665); END_STATE(); - case 605: + case 653: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '<') ADVANCE(499); + if (lookahead == '&') ADVANCE(724); + if (lookahead == '<') ADVANCE(535); END_STATE(); - case 606: + case 654: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '<') ADVANCE(618); + if (lookahead == '&') ADVANCE(724); + if (lookahead == '<') ADVANCE(666); END_STATE(); - case 607: + case 655: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(676); - if (lookahead == '<') ADVANCE(617); + if (lookahead == '&') ADVANCE(724); + if (lookahead == '<') ADVANCE(665); END_STATE(); - case 608: + case 656: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '<') ADVANCE(620); - if (lookahead == '=') ADVANCE(615); + if (lookahead == '(') ADVANCE(913); + if (lookahead == '<') ADVANCE(668); + if (lookahead == '=') ADVANCE(663); END_STATE(); - case 609: + case 657: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(620); - if (lookahead == '=') ADVANCE(615); + if (lookahead == '<') ADVANCE(668); + if (lookahead == '=') ADVANCE(663); END_STATE(); - case 610: + case 658: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(677); - if (lookahead == '(') ADVANCE(854); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '>') ADVANCE(622); - if (lookahead == '|') ADVANCE(678); + if (lookahead == '&') ADVANCE(725); + if (lookahead == '(') ADVANCE(914); + if (lookahead == '=') ADVANCE(664); + if (lookahead == '>') ADVANCE(670); + if (lookahead == '|') ADVANCE(726); END_STATE(); - case 611: + case 659: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(677); - if (lookahead == '(') ADVANCE(854); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '|') ADVANCE(678); + if (lookahead == '&') ADVANCE(725); + if (lookahead == '(') ADVANCE(914); + if (lookahead == '>') ADVANCE(669); + if (lookahead == '|') ADVANCE(726); END_STATE(); - case 612: + case 660: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(677); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '|') ADVANCE(678); + if (lookahead == '&') ADVANCE(725); + if (lookahead == '>') ADVANCE(669); + if (lookahead == '|') ADVANCE(726); END_STATE(); - case 613: + case 661: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(854); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '>') ADVANCE(622); + if (lookahead == '(') ADVANCE(914); + if (lookahead == '=') ADVANCE(664); + if (lookahead == '>') ADVANCE(670); END_STATE(); - case 614: + case 662: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(616); - if (lookahead == '>') ADVANCE(622); + if (lookahead == '=') ADVANCE(664); + if (lookahead == '>') ADVANCE(670); END_STATE(); - case 615: + case 663: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 616: + case 664: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 617: + case 665: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(681); + if (lookahead == '-') ADVANCE(729); END_STATE(); - case 618: + case 666: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(681); - if (lookahead == '<') ADVANCE(753); + if (lookahead == '-') ADVANCE(729); + if (lookahead == '<') ADVANCE(813); END_STATE(); - case 619: + case 667: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(681); - if (lookahead == '<') ADVANCE(753); - if (lookahead == '=') ADVANCE(574); + if (lookahead == '-') ADVANCE(729); + if (lookahead == '<') ADVANCE(813); + if (lookahead == '=') ADVANCE(622); END_STATE(); - case 620: + case 668: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(574); + if (lookahead == '=') ADVANCE(622); END_STATE(); - case 621: + case 669: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 622: + case 670: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(575); + if (lookahead == '=') ADVANCE(623); END_STATE(); - case 623: + case 671: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 624: + case 672: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(559); - if (lookahead == '=') ADVANCE(563); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '+') ADVANCE(607); + if (lookahead == '=') ADVANCE(611); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 625: + case 673: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(558); - if (lookahead == '=') ADVANCE(562); + if (lookahead == '+') ADVANCE(606); + if (lookahead == '=') ADVANCE(610); END_STATE(); - case 626: + case 674: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 627: + case 675: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(561); - if (lookahead == '0') ADVANCE(797); - if (lookahead == '=') ADVANCE(565); - if (lookahead == '\\') ADVANCE(512); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '-') ADVANCE(609); + if (lookahead == '0') ADVANCE(857); + if (lookahead == '=') ADVANCE(613); + if (lookahead == '\\') ADVANCE(548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 628: + case 676: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(560); - if (lookahead == '=') ADVANCE(564); + if (lookahead == '-') ADVANCE(608); + if (lookahead == '=') ADVANCE(612); END_STATE(); - case 629: + case 677: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(560); - if (lookahead == '=') ADVANCE(564); - if (lookahead == 'a') ADVANCE(583); - if (lookahead == 'o') ADVANCE(581); + if (lookahead == '-') ADVANCE(608); + if (lookahead == '=') ADVANCE(612); + if (lookahead == 'a') ADVANCE(631); + if (lookahead == 'o') ADVANCE(629); END_STATE(); - case 630: + case 678: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(797); - if (lookahead == '\\') ADVANCE(512); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '0') ADVANCE(857); + if (lookahead == '\\') ADVANCE(548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 631: + case 679: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 632: + case 680: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '=') ADVANCE(567); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '*') ADVANCE(693); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 633: + case 681: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(646); - if (lookahead == '=') ADVANCE(566); + if (lookahead == '*') ADVANCE(694); + if (lookahead == '=') ADVANCE(614); END_STATE(); - case 634: + case 682: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 635: + case 683: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 636: + case 684: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(841); - if (lookahead == '%') ADVANCE(843); - if (lookahead == '/') ADVANCE(839); - if (lookahead == '=') ADVANCE(569); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(949); + if (lookahead == '#') ADVANCE(901); + if (lookahead == '%') ADVANCE(903); + if (lookahead == '/') ADVANCE(899); + if (lookahead == '=') ADVANCE(617); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(1013); END_STATE(); - case 637: + case 685: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(840); - if (lookahead == '%') ADVANCE(842); - if (lookahead == '/') ADVANCE(838); + if (lookahead == '#') ADVANCE(900); + if (lookahead == '%') ADVANCE(902); + if (lookahead == '/') ADVANCE(898); END_STATE(); - case 638: + case 686: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(569); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(617); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 639: + case 687: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(568); + if (lookahead == '=') ADVANCE(616); END_STATE(); - case 640: + case 688: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 641: + case 689: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(836); - if (lookahead == '=') ADVANCE(571); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '%') ADVANCE(896); + if (lookahead == '=') ADVANCE(619); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 642: + case 690: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(835); + if (lookahead == '%') ADVANCE(895); END_STATE(); - case 643: + case 691: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(571); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(619); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 644: + case 692: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(570); + if (lookahead == '=') ADVANCE(618); END_STATE(); - case 645: + case 693: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(573); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(621); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 646: + case 694: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(572); + if (lookahead == '=') ADVANCE(620); END_STATE(); - case 647: + case 695: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 648: + case 696: ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(545); + if (lookahead == '(') ADVANCE(593); END_STATE(); - case 649: + case 697: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 650: + case 698: ACCEPT_TOKEN(aux_sym__c_word_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(650); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(698); END_STATE(); - case 651: + case 699: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 652: + case 700: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 653: + case 701: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 654: + case 702: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 655: + case 703: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 656: + case 704: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 657: + case 705: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(659); + if (lookahead == '&') ADVANCE(707); END_STATE(); - case 658: + case 706: ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); - case 659: + case 707: ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); - case 660: + case 708: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 661: + case 709: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 662: + case 710: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 663: + case 711: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 664: + case 712: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(648); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 665: + case 713: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(599); + if (lookahead == '=') ADVANCE(647); END_STATE(); - case 666: + case 714: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 667: + case 715: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 668: + case 716: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(670); + if (lookahead == '[') ADVANCE(718); END_STATE(); - case 669: + case 717: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 670: + case 718: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 671: + case 719: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 672: + case 720: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 673: + case 721: ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 674: + case 722: ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(675); + if (lookahead == '>') ADVANCE(723); END_STATE(); - case 675: + case 723: ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); - case 676: + case 724: ACCEPT_TOKEN(anon_sym_LT_AMP); - if (lookahead == '-') ADVANCE(679); + if (lookahead == '-') ADVANCE(727); END_STATE(); - case 677: + case 725: ACCEPT_TOKEN(anon_sym_GT_AMP); - if (lookahead == '-') ADVANCE(680); + if (lookahead == '-') ADVANCE(728); END_STATE(); - case 678: + case 726: ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); - case 679: + case 727: ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); END_STATE(); - case 680: + case 728: ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); END_STATE(); - case 681: + case 729: ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); - case 682: + case 730: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(682); - if (lookahead == '+') ADVANCE(765); - if (lookahead == '-') ADVANCE(763); - if (lookahead == '\\') ADVANCE(304); - if (lookahead == '~') ADVANCE(766); + if (lookahead == '\n') ADVANCE(730); + if (lookahead == '+') ADVANCE(825); + if (lookahead == '-') ADVANCE(823); + if (lookahead == '\\') ADVANCE(332); + if (lookahead == '~') ADVANCE(826); END_STATE(); - case 683: + case 731: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(683); + if (lookahead == '\n') ADVANCE(731); if (lookahead == '\\') ADVANCE(14); END_STATE(); - case 684: + case 732: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(684); + if (lookahead == '\n') ADVANCE(732); END_STATE(); - case 685: + case 733: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(685); - if (lookahead == '\\') ADVANCE(312); + if (lookahead == '\n') ADVANCE(733); + if (lookahead == '\\') ADVANCE(340); END_STATE(); - case 686: + case 734: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(686); - if (lookahead == '\\') ADVANCE(100); + if (lookahead == '\n') ADVANCE(734); + if (lookahead == '\\') ADVANCE(103); END_STATE(); - case 687: + case 735: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(687); + if (lookahead == '\n') ADVANCE(735); if (lookahead == '\\') ADVANCE(28); END_STATE(); - case 688: + case 736: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(688); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\n') ADVANCE(736); + if (lookahead == '\\') ADVANCE(341); END_STATE(); - case 689: + case 737: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(689); - if (lookahead == '\\') ADVANCE(185); + if (lookahead == '\n') ADVANCE(737); + if (lookahead == '\\') ADVANCE(191); END_STATE(); - case 690: + case 738: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\n') ADVANCE(738); + if (lookahead == '\\') ADVANCE(32); END_STATE(); - case 691: + case 739: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(691); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '\n') ADVANCE(739); + if (lookahead == '\\') ADVANCE(345); END_STATE(); - case 692: + case 740: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(692); - if (lookahead == '\\') ADVANCE(104); + if (lookahead == '\n') ADVANCE(740); + if (lookahead == '\\') ADVANCE(105); END_STATE(); - case 693: + case 741: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '\\') ADVANCE(32); + if (lookahead == '\n') ADVANCE(741); + if (lookahead == '\\') ADVANCE(34); END_STATE(); - case 694: + case 742: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(694); - if (lookahead == '\\') ADVANCE(318); + if (lookahead == '\n') ADVANCE(742); + if (lookahead == '\\') ADVANCE(346); END_STATE(); - case 695: + case 743: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(695); - if (lookahead == '\\') ADVANCE(106); + if (lookahead == '\n') ADVANCE(743); + if (lookahead == '\\') ADVANCE(193); END_STATE(); - case 696: + case 744: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(696); + if (lookahead == '\n') ADVANCE(744); if (lookahead == '\\') ADVANCE(36); END_STATE(); - case 697: + case 745: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(697); - if (lookahead == '\\') ADVANCE(319); + if (lookahead == '\n') ADVANCE(745); + if (lookahead == '\\') ADVANCE(347); END_STATE(); - case 698: + case 746: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(698); - if (lookahead == '\\') ADVANCE(188); + if (lookahead == '\n') ADVANCE(746); + if (lookahead == '\\') ADVANCE(110); END_STATE(); - case 699: + case 747: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(699); - if (lookahead == '\\') ADVANCE(164); + if (lookahead == '\n') ADVANCE(747); + if (lookahead == '\\') ADVANCE(169); END_STATE(); - case 700: + case 748: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(700); - if (lookahead == '\\') ADVANCE(320); + if (lookahead == '\n') ADVANCE(748); + if (lookahead == '\\') ADVANCE(348); END_STATE(); - case 701: + case 749: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(701); - if (lookahead == '\\') ADVANCE(211); + if (lookahead == '\n') ADVANCE(749); + if (lookahead == '\\') ADVANCE(222); END_STATE(); - case 702: + case 750: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(702); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '\n') ADVANCE(750); + if (lookahead == '\\') ADVANCE(210); END_STATE(); - case 703: + case 751: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(703); - if (lookahead == '\\') ADVANCE(321); + if (lookahead == '\n') ADVANCE(751); + if (lookahead == '\\') ADVANCE(349); END_STATE(); - case 704: + case 752: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(704); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\n') ADVANCE(752); + if (lookahead == '\\') ADVANCE(112); END_STATE(); - case 705: + case 753: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '\\') ADVANCE(168); + if (lookahead == '\n') ADVANCE(753); + if (lookahead == '\\') ADVANCE(41); END_STATE(); - case 706: + case 754: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(706); - if (lookahead == '\\') ADVANCE(322); + if (lookahead == '\n') ADVANCE(754); + if (lookahead == '\\') ADVANCE(350); END_STATE(); - case 707: + case 755: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(707); - if (lookahead == '\\') ADVANCE(192); + if (lookahead == '\n') ADVANCE(755); + if (lookahead == '\\') ADVANCE(196); END_STATE(); - case 708: + case 756: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(708); - if (lookahead == '\\') ADVANCE(41); + if (lookahead == '\n') ADVANCE(756); + if (lookahead == '\\') ADVANCE(43); END_STATE(); - case 709: + case 757: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(709); - if (lookahead == '\\') ADVANCE(323); + if (lookahead == '\n') ADVANCE(757); + if (lookahead == '\\') ADVANCE(351); END_STATE(); - case 710: + case 758: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(710); - if (lookahead == '\\') ADVANCE(215); + if (lookahead == '\n') ADVANCE(758); + if (lookahead == '\\') ADVANCE(228); END_STATE(); - case 711: + case 759: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(711); - if (lookahead == '\\') ADVANCE(47); + if (lookahead == '\n') ADVANCE(759); + if (lookahead == '\\') ADVANCE(174); END_STATE(); - case 712: + case 760: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(712); - if (lookahead == '\\') ADVANCE(324); + if (lookahead == '\n') ADVANCE(760); + if (lookahead == '\\') ADVANCE(352); END_STATE(); - case 713: + case 761: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(713); - if (lookahead == '\\') ADVANCE(190); + if (lookahead == '\n') ADVANCE(761); + if (lookahead == '\\') ADVANCE(198); END_STATE(); - case 714: + case 762: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(714); - if (lookahead == '\\') ADVANCE(49); + if (lookahead == '\n') ADVANCE(762); + if (lookahead == '\\') ADVANCE(213); END_STATE(); - case 715: + case 763: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(715); - if (lookahead == '\\') ADVANCE(326); + if (lookahead == '\n') ADVANCE(763); + if (lookahead == '\\') ADVANCE(353); END_STATE(); - case 716: + case 764: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(716); - if (lookahead == '\\') ADVANCE(120); + if (lookahead == '\n') ADVANCE(764); + if (lookahead == '\\') ADVANCE(121); END_STATE(); - case 717: + case 765: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(717); - if (lookahead == '\\') ADVANCE(221); + if (lookahead == '\n') ADVANCE(765); + if (lookahead == '\\') ADVANCE(50); END_STATE(); - case 718: + case 766: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(718); - if (lookahead == '\\') ADVANCE(393); + if (lookahead == '\n') ADVANCE(766); + if (lookahead == '\\') ADVANCE(354); END_STATE(); - case 719: + case 767: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(719); - if (lookahead == '\\') ADVANCE(197); + if (lookahead == '\n') ADVANCE(767); + if (lookahead == '\\') ADVANCE(201); END_STATE(); - case 720: + case 768: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(720); - if (lookahead == '\\') ADVANCE(174); + if (lookahead == '\n') ADVANCE(768); + if (lookahead == '\\') ADVANCE(52); END_STATE(); - case 721: + case 769: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(721); - if (lookahead == '\\') ADVANCE(394); + if (lookahead == '\n') ADVANCE(769); + if (lookahead == '\\') ADVANCE(356); END_STATE(); - case 722: + case 770: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(722); - if (lookahead == '\\') ADVANCE(213); + if (lookahead == '\n') ADVANCE(770); + if (lookahead == '\\') ADVANCE(224); END_STATE(); - case 723: + case 771: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(723); - if (lookahead == '\\') ADVANCE(52); + if (lookahead == '\n') ADVANCE(771); + if (lookahead == '\\') ADVANCE(237); END_STATE(); - case 724: + case 772: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(724); - if (lookahead == '\\') ADVANCE(328); + if (lookahead == '\n') ADVANCE(772); + if (lookahead == '\\') ADVANCE(357); END_STATE(); - case 725: + case 773: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(725); - if (lookahead == '\\') ADVANCE(140); + if (lookahead == '\n') ADVANCE(773); + if (lookahead == '\\') ADVANCE(143); END_STATE(); - case 726: + case 774: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(726); - if (lookahead == '\\') ADVANCE(223); + if (lookahead == '\n') ADVANCE(774); + if (lookahead == '\\') ADVANCE(180); END_STATE(); - case 727: + case 775: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(727); - if (lookahead == '\\') ADVANCE(395); + if (lookahead == '\n') ADVANCE(775); + if (lookahead == '\\') ADVANCE(428); END_STATE(); - case 728: + case 776: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(728); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\n') ADVANCE(776); + if (lookahead == '\\') ADVANCE(55); END_STATE(); - case 729: + case 777: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(729); - if (lookahead == '\\') ADVANCE(330); + if (lookahead == '\n') ADVANCE(777); + if (lookahead == '\\') ADVANCE(429); END_STATE(); - case 730: + case 778: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(730); - if (lookahead == '\\') ADVANCE(207); + if (lookahead == '\n') ADVANCE(778); + if (lookahead == '\\') ADVANCE(218); END_STATE(); - case 731: + case 779: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(731); - if (lookahead == '\\') ADVANCE(332); + if (lookahead == '\n') ADVANCE(779); + if (lookahead == '\\') ADVANCE(430); END_STATE(); - case 732: + case 780: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(732); - if (lookahead == '\\') ADVANCE(225); + if (lookahead == '\n') ADVANCE(780); + if (lookahead == '\\') ADVANCE(239); END_STATE(); - case 733: + case 781: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(733); - if (lookahead == '\\') ADVANCE(334); + if (lookahead == '\n') ADVANCE(781); + if (lookahead == '\\') ADVANCE(359); END_STATE(); - case 734: + case 782: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(734); - if (lookahead == '\\') ADVANCE(59); + if (lookahead == '\n') ADVANCE(782); + if (lookahead == '\\') ADVANCE(57); END_STATE(); - case 735: + case 783: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(735); - if (lookahead == '\\') ADVANCE(336); + if (lookahead == '\n') ADVANCE(783); + if (lookahead == '\\') ADVANCE(431); END_STATE(); - case 736: + case 784: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(736); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '\n') ADVANCE(784); + if (lookahead == '\\') ADVANCE(241); END_STATE(); - case 737: + case 785: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(737); - if (lookahead == '\\') ADVANCE(337); + if (lookahead == '\n') ADVANCE(785); + if (lookahead == '\\') ADVANCE(362); END_STATE(); - case 738: + case 786: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(738); + if (lookahead == '\n') ADVANCE(786); + if (lookahead == '\\') ADVANCE(226); + END_STATE(); + case 787: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(787); + if (lookahead == '\\') ADVANCE(363); + END_STATE(); + case 788: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(788); if (lookahead == '\\') ADVANCE(230); END_STATE(); - case 739: + case 789: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(739); - if (lookahead == '\\') ADVANCE(341); + if (lookahead == '\n') ADVANCE(789); + if (lookahead == '\\') ADVANCE(365); END_STATE(); - case 740: + case 790: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(740); - if (lookahead == '\\') ADVANCE(180); + if (lookahead == '\n') ADVANCE(790); + if (lookahead == '\\') ADVANCE(62); END_STATE(); - case 741: + case 791: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(741); - if (lookahead == '\\') ADVANCE(342); + if (lookahead == '\n') ADVANCE(791); + if (lookahead == '\\') ADVANCE(367); END_STATE(); - case 742: + case 792: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(742); - if (lookahead == '\\') ADVANCE(115); + if (lookahead == '\n') ADVANCE(792); + if (lookahead == '\\') ADVANCE(71); END_STATE(); - case 743: + case 793: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(743); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '\n') ADVANCE(793); + if (lookahead == '\\') ADVANCE(368); END_STATE(); - case 744: + case 794: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '\\') ADVANCE(127); + if (lookahead == '\n') ADVANCE(794); + if (lookahead == '\\') ADVANCE(246); END_STATE(); - case 745: + case 795: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(745); - if (lookahead == '\\') ADVANCE(345); + if (lookahead == '\n') ADVANCE(795); + if (lookahead == '\\') ADVANCE(369); END_STATE(); - case 746: + case 796: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '\\') ADVANCE(346); + if (lookahead == '\n') ADVANCE(796); + if (lookahead == '\\') ADVANCE(186); END_STATE(); - case 747: + case 797: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(747); - if (lookahead == '\\') ADVANCE(347); + if (lookahead == '\n') ADVANCE(797); + if (lookahead == '\\') ADVANCE(372); END_STATE(); - case 748: + case 798: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(748); - if (lookahead == '\\') ADVANCE(349); + if (lookahead == '\n') ADVANCE(798); + if (lookahead == '\\') ADVANCE(118); END_STATE(); - case 749: + case 799: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(749); - if (lookahead == '\\') ADVANCE(355); + if (lookahead == '\n') ADVANCE(799); + if (lookahead == '\\') ADVANCE(374); END_STATE(); - case 750: + case 800: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(750); - if (lookahead == '\\') ADVANCE(365); + if (lookahead == '\n') ADVANCE(800); + if (lookahead == '\\') ADVANCE(130); END_STATE(); - case 751: + case 801: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(751); - if (lookahead == '\\') ADVANCE(368); + if (lookahead == '\n') ADVANCE(801); + if (lookahead == '\\') ADVANCE(376); END_STATE(); - case 752: + case 802: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(752); + if (lookahead == '\n') ADVANCE(802); + if (lookahead == '\\') ADVANCE(377); + END_STATE(); + case 803: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(803); if (lookahead == '\\') ADVANCE(378); END_STATE(); - case 753: + case 804: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(804); + if (lookahead == '\\') ADVANCE(379); + END_STATE(); + case 805: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(805); + if (lookahead == '\\') ADVANCE(380); + END_STATE(); + case 806: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(806); + if (lookahead == '\\') ADVANCE(381); + END_STATE(); + case 807: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(807); + if (lookahead == '\\') ADVANCE(383); + END_STATE(); + case 808: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(808); + if (lookahead == '\\') ADVANCE(384); + END_STATE(); + case 809: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(809); + if (lookahead == '\\') ADVANCE(391); + END_STATE(); + case 810: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(810); + if (lookahead == '\\') ADVANCE(401); + END_STATE(); + case 811: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(811); + if (lookahead == '\\') ADVANCE(404); + END_STATE(); + case 812: + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(812); + if (lookahead == '\\') ADVANCE(413); + END_STATE(); + case 813: ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); - case 754: + case 814: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 755: + case 815: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 756: + case 816: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 757: + case 817: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(830); - if (lookahead == '-') ADVANCE(827); - if (lookahead == '=') ADVANCE(824); - if (lookahead == '?') ADVANCE(834); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '+') ADVANCE(890); + if (lookahead == '-') ADVANCE(887); + if (lookahead == '=') ADVANCE(884); + if (lookahead == '?') ADVANCE(894); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 758: + case 818: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(829); - if (lookahead == '-') ADVANCE(826); - if (lookahead == '=') ADVANCE(823); - if (lookahead == '?') ADVANCE(833); + if (lookahead == '+') ADVANCE(889); + if (lookahead == '-') ADVANCE(886); + if (lookahead == '=') ADVANCE(883); + if (lookahead == '?') ADVANCE(893); END_STATE(); - case 759: + case 819: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 760: + case 820: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); - case 761: + case 821: ACCEPT_TOKEN(anon_sym_DASH_DASH2); END_STATE(); - case 762: + case 822: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 763: + case 823: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(761); + if (lookahead == '-') ADVANCE(821); END_STATE(); - case 764: + case 824: ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); - case 765: + case 825: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(760); + if (lookahead == '+') ADVANCE(820); END_STATE(); - case 766: + case 826: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 767: + case 827: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); - case 768: + case 828: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); END_STATE(); - case 769: + case 829: ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (lookahead == '\\') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(769); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(829); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 770: + case 830: ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(830); END_STATE(); - case 771: + case 831: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 772: + case 832: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 773: + case 833: ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); - case 774: + case 834: ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); - case 775: + case 835: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 776: + case 836: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(486); - if (lookahead == '(') ADVANCE(849); - if (lookahead == '[') ADVANCE(768); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '\'') ADVANCE(522); + if (lookahead == '(') ADVANCE(909); + if (lookahead == '[') ADVANCE(828); + if (lookahead == '`') ADVANCE(912); + if (lookahead == '{') ADVANCE(872); END_STATE(); - case 777: + case 837: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(486); - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '\'') ADVANCE(522); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '`') ADVANCE(912); + if (lookahead == '{') ADVANCE(872); END_STATE(); - case 778: + case 838: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(849); - if (lookahead == '[') ADVANCE(768); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '(') ADVANCE(909); + if (lookahead == '[') ADVANCE(828); + if (lookahead == '`') ADVANCE(912); + if (lookahead == '{') ADVANCE(872); END_STATE(); - case 779: + case 839: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '`') ADVANCE(912); END_STATE(); - case 780: + case 840: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(848); - if (lookahead == '`') ADVANCE(852); - if (lookahead == '{') ADVANCE(812); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '`') ADVANCE(912); + if (lookahead == '{') ADVANCE(872); END_STATE(); - case 781: + case 841: ACCEPT_TOKEN(sym__special_character); END_STATE(); - case 782: + case 842: ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(671); + if (lookahead == ']') ADVANCE(719); END_STATE(); - case 783: + case 843: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 784: + case 844: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(790); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\n') ADVANCE(850); + if (lookahead == '\\') ADVANCE(328); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(852); END_STATE(); - case 785: + case 845: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(788); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\n') ADVANCE(848); + if (lookahead == '\\') ADVANCE(328); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(852); END_STATE(); - case 786: + case 846: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(789); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\n') ADVANCE(849); + if (lookahead == '\\') ADVANCE(328); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(852); END_STATE(); - case 787: + case 847: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(792); - if (lookahead == '\\') ADVANCE(855); + if (lookahead == '\n') ADVANCE(852); + if (lookahead == '\\') ADVANCE(915); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(791); + lookahead != '`') ADVANCE(851); END_STATE(); - case 788: + case 848: ACCEPT_TOKEN(sym_string_content); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 144, - '_', 939, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 147, + '_', 1003, ); if (lookahead == '\n' || - lookahead == '\r') SKIP(443); + lookahead == '\r') SKIP(479); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(788); + lookahead == ' ') ADVANCE(848); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(852); END_STATE(); - case 789: + case 849: ACCEPT_TOKEN(sym_string_content); ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 147, - '_', 939, + '!', 711, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 150, + '_', 1003, ); if (lookahead == '\n' || - lookahead == '\r') SKIP(446); + lookahead == '\r') SKIP(482); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(789); + lookahead == ' ') ADVANCE(849); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(792); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(852); END_STATE(); - case 790: + case 850: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '"') ADVANCE(783); - if (lookahead == '#') ADVANCE(791); - if (lookahead == '$') ADVANCE(778); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(850); + if (lookahead == '"') ADVANCE(843); + if (lookahead == '#') ADVANCE(851); + if (lookahead == '$') ADVANCE(838); + if (lookahead == '\\') ADVANCE(327); + if (lookahead == '`') ADVANCE(910); if (lookahead == '\n' || - lookahead == '\r') SKIP(474); + lookahead == '\r') SKIP(510); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0) ADVANCE(792); + lookahead == ' ') ADVANCE(850); + if (lookahead != 0) ADVANCE(852); END_STATE(); - case 791: + case 851: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(855); + if (lookahead == '\\') ADVANCE(915); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(791); + lookahead != '`') ADVANCE(851); END_STATE(); - case 792: + case 852: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\\') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(852); END_STATE(); - case 793: + case 853: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(300); + if (lookahead == '\\') ADVANCE(328); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(792); + lookahead != '`') ADVANCE(852); END_STATE(); - case 794: + case 854: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 795: + case 855: ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); - case 796: + case 856: ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(795); - if (lookahead == '\\') ADVANCE(487); - if (lookahead != 0) ADVANCE(486); + if (lookahead == '\'') ADVANCE(855); + if (lookahead == '\\') ADVANCE(523); + if (lookahead != 0) ADVANCE(522); END_STATE(); - case 797: + case 857: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'x') ADVANCE(948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(949); + if (lookahead == '#') ADVANCE(869); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 'x') ADVANCE(1012); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(1013); END_STATE(); - case 798: + case 858: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'x') ADVANCE(862); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (lookahead == '#') ADVANCE(869); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 'x') ADVANCE(922); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(1013); END_STATE(); - case 799: + case 859: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); - if (lookahead == '\\') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(949); + if (lookahead == '#') ADVANCE(869); + if (lookahead == '\\') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(1013); END_STATE(); - case 800: + case 860: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); - if (lookahead == '\\') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (lookahead == '#') ADVANCE(869); + if (lookahead == '\\') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(1013); END_STATE(); - case 801: + case 861: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); + if (lookahead == '#') ADVANCE(869); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'x') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (lookahead == 'x') ADVANCE(927); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(1013); END_STATE(); - case 802: + case 862: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(809); + if (lookahead == '#') ADVANCE(869); if (lookahead == '\\') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(1013); END_STATE(); - case 803: + case 863: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(810); - if (lookahead == 'x') ADVANCE(873); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead == '#') ADVANCE(870); + if (lookahead == 'x') ADVANCE(933); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 804: + case 864: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(810); - if (lookahead == 'x') ADVANCE(511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '#') ADVANCE(870); + if (lookahead == 'x') ADVANCE(547); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); END_STATE(); - case 805: + case 865: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (lookahead == '#') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 806: + case 866: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '#') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); END_STATE(); - case 807: + case 867: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(867); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 808: + case 868: ACCEPT_TOKEN(aux_sym_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(808); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); END_STATE(); - case 809: + case 869: ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(807); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(867); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 810: + case 870: ACCEPT_TOKEN(aux_sym_number_token2); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(808); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); END_STATE(); - case 811: + case 871: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 812: + case 872: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 813: + case 873: ACCEPT_TOKEN(anon_sym_RBRACE3); END_STATE(); - case 814: + case 874: ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); - case 815: + case 875: ACCEPT_TOKEN(anon_sym_BANG2); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(648); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 816: + case 876: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 817: + case 877: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 818: + case 878: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 819: + case 879: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '=') ADVANCE(567); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '*') ADVANCE(693); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 820: + case 880: ACCEPT_TOKEN(anon_sym_POUND2); END_STATE(); - case 821: + case 881: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 822: + case 882: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 823: + case 883: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 824: + case 884: ACCEPT_TOKEN(anon_sym_COLON_EQ); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 825: + case 885: ACCEPT_TOKEN(anon_sym_DASH3); END_STATE(); - case 826: + case 886: ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); - case 827: + case 887: ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 828: + case 888: ACCEPT_TOKEN(anon_sym_PLUS3); END_STATE(); - case 829: + case 889: ACCEPT_TOKEN(anon_sym_COLON_PLUS); END_STATE(); - case 830: + case 890: ACCEPT_TOKEN(anon_sym_COLON_PLUS); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 831: + case 891: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 832: + case 892: ACCEPT_TOKEN(anon_sym_QMARK2); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 833: + case 893: ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); - case 834: + case 894: ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 835: + case 895: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); END_STATE(); - case 836: + case 896: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 837: + case 897: ACCEPT_TOKEN(aux_sym__expansion_regex_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(837); + lookahead == ' ') ADVANCE(897); END_STATE(); - case 838: + case 898: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 839: + case 899: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 840: + case 900: ACCEPT_TOKEN(anon_sym_SLASH_POUND); END_STATE(); - case 841: + case 901: ACCEPT_TOKEN(anon_sym_SLASH_POUND); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 842: + case 902: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); END_STATE(); - case 843: + case 903: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 844: + case 904: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); END_STATE(); - case 845: + case 905: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 846: + case 906: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 847: + case 907: ACCEPT_TOKEN(anon_sym_CARET_CARET); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 848: + case 908: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 849: + case 909: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(767); + if (lookahead == '(') ADVANCE(827); END_STATE(); - case 850: + case 910: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 851: + case 911: ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(774); + if (lookahead == '`') ADVANCE(834); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(504); + lookahead == ' ') ADVANCE(540); END_STATE(); - case 852: + case 912: ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); END_STATE(); - case 853: + case 913: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 854: + case 914: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 855: + case 915: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(792); - if (lookahead == '\r') ADVANCE(787); - if (lookahead != 0) ADVANCE(791); + if (lookahead == '\n') ADVANCE(852); + if (lookahead == '\r') ADVANCE(847); + if (lookahead != 0) ADVANCE(851); END_STATE(); - case 856: + case 916: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(857); + (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(917); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(858); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(918); END_STATE(); - case 857: + case 917: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(857); + lookahead != '\n') ADVANCE(917); END_STATE(); - case 858: + case 918: ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(856); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(858); + if (lookahead == '\\') ADVANCE(916); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(918); END_STATE(); - case 859: + case 919: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'a') ADVANCE(860); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 'a') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 860: + case 920: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'c') ADVANCE(652); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 'c') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 861: + case 921: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 's') ADVANCE(859); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 's') ADVANCE(919); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 862: + case 922: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(800); + if (lookahead == '\\') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(860); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 863: + case 923: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(863); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(923); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 864: + case 924: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'a') ADVANCE(865); + if (lookahead == 'a') ADVANCE(925); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 865: + case 925: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'c') ADVANCE(654); + if (lookahead == 'c') ADVANCE(702); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 866: + case 926: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 's') ADVANCE(864); + if (lookahead == 's') ADVANCE(924); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 867: + case 927: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 868: + case 928: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 869: + case 929: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(870); + if (lookahead == 'a') ADVANCE(930); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 870: + case 930: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(655); + if (lookahead == 'c') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 871: + case 931: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(544); + if (lookahead == 'n') ADVANCE(592); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 872: + case 932: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(869); + if (lookahead == 's') ADVANCE(929); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 873: + case 933: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 874: + case 934: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 875: + case 935: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 683, - '!', 664, - '"', 783, - '#', 811, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - ')', 649, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 801, - ';', 549, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '@', 936, + '\n', 731, + '!', 712, + '"', 843, + '#', 871, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + ')', 697, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 861, + ';', 597, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '@', 1000, '\\', 14, - '^', 590, - '_', 938, - '`', 850, - '|', 586, + '^', 638, + '_', 1002, + '`', 910, + '|', 634, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < ';' || '}' < lookahead)) ADVANCE(949); + (lookahead < ';' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 876: + case 936: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 686, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 100, - '_', 939, - 'e', 872, - '|', 587, + '\n', 734, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 103, + '_', 1003, + 'e', 932, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202); + lookahead == ' ') SKIP(208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 877: + case 937: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 687, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, + '\n', 735, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, '\\', 28, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(231); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 878: + case 938: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 689, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 185, - '_', 939, - 'e', 872, - '|', 587, + '\n', 737, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 191, + '_', 1003, + 'e', 932, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234); + lookahead == ' ') SKIP(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 879: + case 939: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 690, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 30, - '_', 938, - '`', 850, - '|', 587, + '\n', 738, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 32, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(251); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 880: + case 940: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 692, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 104, - '_', 939, - '|', 587, + '\n', 740, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 105, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(237); + lookahead == ' ') SKIP(253); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 881: + case 941: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 693, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 32, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, + '\n', 741, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 34, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(254); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 882: + case 942: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 695, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 106, - '_', 939, - '`', 850, - '|', 587, + '\n', 743, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 193, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 883: + case 943: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 696, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, + '\n', 744, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, '\\', 36, - '_', 938, - '`', 850, - '|', 587, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(257); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 884: + case 944: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 698, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 548, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 188, - '_', 939, - '|', 587, + '\n', 746, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 110, + '_', 1003, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(243); + lookahead == ' ') SKIP(259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 885: + case 945: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 699, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 164, - '_', 938, - '`', 850, - '|', 587, + '\n', 747, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 169, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 886: + case 946: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 701, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 211, - '_', 939, - '|', 587, + '\n', 749, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 596, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 222, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246); + lookahead == ' ') SKIP(262); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 887: + case 947: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 702, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '(', 647, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 39, - '_', 938, - '`', 850, - '|', 587, + '\n', 750, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 210, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 888: + case 948: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 704, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - ')', 649, - '*', 631, - '-', 626, - ';', 549, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 109, - '_', 939, - '|', 587, + '\n', 752, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + ')', 697, + '*', 679, + '-', 674, + ';', 597, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 112, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(249); + lookahead == ' ') SKIP(265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 889: + case 949: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 705, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 168, - '_', 938, - '`', 850, - '|', 587, + '\n', 753, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 41, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(250); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 890: + case 950: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 707, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - ')', 649, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 192, - '_', 939, - '|', 587, + '\n', 755, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 196, + '_', 1003, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252); + lookahead == ' ') SKIP(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 891: + case 951: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 708, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 41, - '_', 938, - '`', 850, - '|', 587, + '\n', 756, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 43, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(253); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(269); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 892: + case 952: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 710, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 215, - '_', 939, - '|', 587, + '\n', 758, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + '*', 679, + '-', 674, + ';', 597, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 228, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(271); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 893: + case 953: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 711, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 47, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, + '\n', 759, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 174, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 894: + case 954: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 713, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 596, - '*', 631, - '-', 626, - ';', 549, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 190, - '_', 939, - '`', 850, - '|', 587, + '\n', 761, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 644, + ')', 697, + '*', 679, + '-', 674, + ';', 597, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 198, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(258); + lookahead == ' ') SKIP(274); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 895: + case 955: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 714, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 49, - '_', 938, - '`', 850, - '|', 587, + '\n', 762, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 213, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(259); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 896: + case 956: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 716, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 120, - '_', 939, - '|', 587, + '\n', 764, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 121, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(261); + lookahead == ' ') SKIP(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 897: + case 957: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 717, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 221, - '_', 938, - '`', 850, - 'e', 866, - '|', 587, + '\n', 765, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 50, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 898: + case 958: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 719, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 197, - '_', 939, - '|', 587, + '\n', 767, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 201, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(264); + lookahead == ' ') SKIP(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 899: + case 959: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 720, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 174, - '_', 938, - '`', 850, - '|', 587, + '\n', 768, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 52, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(281); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 900: + case 960: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 722, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 605, - '>', 612, - '?', 754, - '@', 935, - '\\', 213, - '_', 939, - '|', 510, + '\n', 770, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 653, + '>', 660, + '?', 814, + '@', 999, + '\\', 224, + '_', 1003, + '|', 546, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(267); + lookahead == ' ') SKIP(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 901: + case 961: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 723, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 52, - '_', 938, - '`', 850, - '|', 587, + '\n', 771, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 237, + '_', 1002, + '`', 910, + 'e', 926, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(268); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(284); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 902: + case 962: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 725, - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 593, - '*', 631, - '-', 626, - ';', 549, - '?', 754, - '@', 935, - '\\', 140, - '_', 939, - 'i', 871, + '\n', 773, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 641, + '*', 679, + '-', 674, + ';', 597, + '?', 814, + '@', 999, + '\\', 143, + '_', 1003, + 'i', 931, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(286); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 903: + case 963: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 726, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 548, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 223, - '_', 938, - '`', 850, - '|', 587, + '\n', 774, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 180, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(271); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(287); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 904: + case 964: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 728, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 54, - '_', 938, - '`', 850, - '|', 587, + '\n', 776, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 55, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(273); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 905: + case 965: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 730, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 207, - '_', 938, - '`', 850, - '|', 587, + '\n', 778, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 218, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(275); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(291); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 906: + case 966: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 732, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 596, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 225, - '_', 938, - '`', 850, - '|', 587, + '\n', 780, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 596, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 239, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(277); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 907: + case 967: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 734, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 59, - '_', 938, - '`', 850, - '|', 587, + '\n', 782, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 57, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(279); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(295); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 908: + case 968: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 736, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 68, - '_', 938, - '`', 850, - '|', 587, + '\n', 784, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 241, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(281); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(297); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); + END_STATE(); + case 969: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '\n', 786, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 226, + '_', 1002, + '`', 910, + '|', 635, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(299); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); + END_STATE(); + case 970: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '\n', 788, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 644, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 230, + '_', 1002, + '`', 910, + '|', 635, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(301); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); + END_STATE(); + case 971: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '\n', 790, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 62, + '_', 1002, + '`', 910, + '|', 635, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(303); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); + END_STATE(); + case 972: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '\n', 792, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 71, + '_', 1002, + '`', 910, + '|', 635, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(305); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 909: + case 973: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 738, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 230, - '_', 938, - '`', 850, - '|', 587, + '\n', 794, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 246, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(307); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 910: + case 974: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 740, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 602, - '>', 611, - '?', 755, - '@', 936, - '\\', 180, - '_', 938, - '`', 850, - '|', 510, + '\n', 796, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 650, + '>', 659, + '?', 815, + '@', 1000, + '\\', 186, + '_', 1002, + '`', 910, + '|', 546, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(309); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 911: + case 975: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 742, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 593, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - ';', 549, - '<', 489, - '>', 490, - '?', 755, - '@', 936, - '\\', 115, - '_', 938, - '`', 850, + '\n', 798, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 641, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + ';', 597, + '<', 525, + '>', 526, + '?', 815, + '@', 1000, + '\\', 118, + '_', 1002, + '`', 910, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(311); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 912: + case 976: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 744, - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 489, - '>', 490, - '?', 755, - '@', 936, - '\\', 127, - '_', 938, - '`', 850, + '\n', 800, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 525, + '>', 526, + '?', 815, + '@', 1000, + '\\', 130, + '_', 1002, + '`', 910, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(313); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 913: + case 977: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 664, - '"', 783, - '#', 811, - '$', 776, - '%', 643, - '&', 595, - '\'', 485, - '(', 647, - '*', 632, - '+', 624, - '-', 627, - '/', 638, - '0', 801, - '<', 601, - '=', 554, - '>', 610, - '?', 755, - '@', 936, + '!', 712, + '"', 843, + '#', 871, + '$', 836, + '%', 691, + '&', 643, + '\'', 521, + '(', 695, + '*', 680, + '+', 672, + '-', 675, + '/', 686, + '0', 861, + '<', 649, + '=', 602, + '>', 658, + '?', 815, + '@', 1000, '\\', 19, - ']', 669, - '^', 590, - '_', 938, - '`', 850, - '|', 586, + ']', 717, + '^', 638, + '_', 1002, + '`', 910, + '|', 634, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(434); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '}' < lookahead)) ADVANCE(949); + (lookahead < ';' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 914: + case 978: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 502, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 602, - '>', 611, - '?', 755, - '@', 936, - '\\', 87, - '_', 938, - '`', 850, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 538, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 650, + '>', 659, + '?', 815, + '@', 1000, + '\\', 89, + '_', 1002, + '`', 910, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(404); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(440); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 915: + case 979: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '(', 647, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 57, - '_', 938, - '`', 850, - '|', 587, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '(', 695, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 60, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(405); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(441); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 916: + case 980: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '=', 943, - '>', 611, - '?', 755, - '@', 936, - '\\', 62, - '_', 938, - '`', 850, - '|', 587, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '=', 1007, + '>', 659, + '?', 815, + '@', 1000, + '\\', 65, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(406); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(442); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 917: + case 981: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 65, - ']', 669, - '_', 938, - '`', 850, - '|', 587, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 68, + ']', 717, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(443); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 918: + case 982: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 603, - '>', 611, - '?', 755, - '@', 936, - '\\', 76, - '_', 938, - '`', 850, - '|', 587, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 651, + '>', 659, + '?', 815, + '@', 1000, + '\\', 75, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(408); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 919: + case 983: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 228, - ']', 669, - '_', 938, - '`', 850, - '|', 587, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 244, + ']', 717, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(445); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 920: + case 984: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '&', 483, - '\'', 485, - '*', 634, - '-', 630, - '0', 801, - '<', 604, - '>', 611, - '?', 755, - '@', 936, - '\\', 232, - '_', 938, - '`', 850, - '|', 587, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '&', 519, + '\'', 521, + '*', 682, + '-', 678, + '0', 861, + '<', 652, + '>', 659, + '?', 815, + '@', 1000, + '\\', 248, + '_', 1002, + '`', 910, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(446); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 921: + case 985: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 666, - '"', 783, - '#', 811, - '$', 776, - '\'', 485, - ')', 649, - '*', 634, - '-', 630, - '0', 801, - '<', 489, - '>', 490, - '?', 755, - '@', 936, - '\\', 124, - '_', 938, - '`', 850, + '!', 714, + '"', 843, + '#', 871, + '$', 836, + '\'', 521, + ')', 697, + '*', 682, + '-', 678, + '0', 861, + '<', 525, + '>', 526, + '?', 815, + '@', 1000, + '\\', 128, + '_', 1002, + '`', 910, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(802); + lookahead == ' ') SKIP(447); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(862); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(949); + (lookahead < '_' || '}' < lookahead)) ADVANCE(1013); END_STATE(); - case 922: + case 986: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - ')', 649, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 78, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + ')', 697, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 77, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(422); + lookahead == ' ') SKIP(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 923: + case 987: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - ':', 756, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 72, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + ':', 816, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 81, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(423); + lookahead == ' ') SKIP(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 924: + case 988: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 70, - ']', 669, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 73, + ']', 717, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(424); + lookahead == ' ') SKIP(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 925: + case 989: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 182, - ']', 503, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 188, + ']', 539, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(425); + lookahead == ' ') SKIP(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 926: + case 990: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 665, - '"', 783, - '#', 811, - '$', 775, - '%', 644, - '&', 594, - '*', 633, - '+', 625, - '-', 628, - '/', 639, - '<', 609, - '=', 556, - '>', 614, - '?', 754, - '@', 935, - '\\', 82, - '^', 591, - '_', 939, - '|', 588, + '!', 713, + '"', 843, + '#', 871, + '$', 835, + '%', 692, + '&', 642, + '*', 681, + '+', 673, + '-', 676, + '/', 687, + '<', 657, + '=', 604, + '>', 662, + '?', 814, + '@', 999, + '\\', 83, + '^', 639, + '_', 1003, + '|', 636, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(426); + lookahead == ' ') SKIP(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 927: + case 991: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 118, - ']', 669, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 123, + ']', 717, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438); + lookahead == ' ') SKIP(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 928: + case 992: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 606, - '>', 612, - '?', 754, - '@', 935, - '\\', 122, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 654, + '>', 660, + '?', 814, + '@', 999, + '\\', 125, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(439); + lookahead == ' ') SKIP(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 929: + case 993: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 195, - ']', 669, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 203, + ']', 717, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(440); + lookahead == ' ') SKIP(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 930: + case 994: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '&', 483, - '*', 631, - '-', 626, - '<', 607, - '>', 612, - '?', 754, - '@', 935, - '\\', 199, - '_', 939, - '|', 587, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '&', 519, + '*', 679, + '-', 674, + '<', 655, + '>', 660, + '?', 814, + '@', 999, + '\\', 205, + '_', 1003, + '|', 635, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(441); + lookahead == ' ') SKIP(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 931: + case 995: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - ')', 649, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 142, - '_', 939, - '|', 584, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + ')', 697, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 145, + '_', 1003, + '|', 632, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(442); + lookahead == ' ') SKIP(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 932: + case 996: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '"', 783, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 146, - '_', 939, + '!', 711, + '"', 843, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 149, + '_', 1003, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(444); + lookahead == ' ') SKIP(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 933: + case 997: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 663, - '#', 811, - '$', 775, - '*', 631, - '-', 626, - '?', 754, - '@', 935, - '\\', 150, - '_', 939, + '!', 711, + '#', 871, + '$', 835, + '*', 679, + '-', 674, + '?', 814, + '@', 999, + '\\', 153, + '_', 1003, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(447); + lookahead == ' ') SKIP(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 934: + case 998: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(998); END_STATE(); - case 935: + case 999: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 936: + case 1000: ACCEPT_TOKEN(anon_sym_AT2); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 937: + case 1001: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 938: + case 1002: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(928); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 939: + case 1003: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(874); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(934); END_STATE(); - case 940: + case 1004: ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(772); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '.') ADVANCE(832); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 941: + case 1005: ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(797); - if (lookahead == '\\') ADVANCE(512); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(799); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '0') ADVANCE(857); + if (lookahead == '\\') ADVANCE(548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 942: + case 1006: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(600); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(648); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 943: + case 1007: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(598); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == '~') ADVANCE(673); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '=') ADVANCE(646); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == '~') ADVANCE(721); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 944: + case 1008: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'a') ADVANCE(945); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 'a') ADVANCE(1009); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 945: + case 1009: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'c') ADVANCE(653); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 'c') ADVANCE(701); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 946: + case 1010: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 'n') ADVANCE(543); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 'n') ADVANCE(591); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 947: + case 1011: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == 's') ADVANCE(944); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if (lookahead == 's') ADVANCE(1008); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 948: + case 1012: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(799); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(859); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); - case 949: + case 1013: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(512); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(949); + if (lookahead == '\\') ADVANCE(548); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(1013); END_STATE(); default: return false; @@ -21111,7576 +22531,8214 @@ 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}, - [5] = {.lex_state = 414, .external_lex_state = 3}, - [6] = {.lex_state = 414, .external_lex_state = 3}, - [7] = {.lex_state = 414, .external_lex_state = 3}, - [8] = {.lex_state = 414, .external_lex_state = 3}, - [9] = {.lex_state = 414, .external_lex_state = 3}, - [10] = {.lex_state = 414, .external_lex_state = 3}, - [11] = {.lex_state = 414, .external_lex_state = 3}, - [12] = {.lex_state = 414, .external_lex_state = 3}, + [1] = {.lex_state = 588, .external_lex_state = 2}, + [2] = {.lex_state = 448, .external_lex_state = 2}, + [3] = {.lex_state = 448, .external_lex_state = 2}, + [4] = {.lex_state = 448, .external_lex_state = 2}, + [5] = {.lex_state = 450, .external_lex_state = 3}, + [6] = {.lex_state = 450, .external_lex_state = 3}, + [7] = {.lex_state = 450, .external_lex_state = 3}, + [8] = {.lex_state = 450, .external_lex_state = 3}, + [9] = {.lex_state = 450, .external_lex_state = 3}, + [10] = {.lex_state = 450, .external_lex_state = 3}, + [11] = {.lex_state = 450, .external_lex_state = 3}, + [12] = {.lex_state = 450, .external_lex_state = 3}, [13] = {.lex_state = 6, .external_lex_state = 4}, - [14] = {.lex_state = 540, .external_lex_state = 2}, - [15] = {.lex_state = 540, .external_lex_state = 2}, - [16] = {.lex_state = 540, .external_lex_state = 2}, - [17] = {.lex_state = 540, .external_lex_state = 2}, - [18] = {.lex_state = 540, .external_lex_state = 2}, - [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}, - [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}, - [40] = {.lex_state = 540, .external_lex_state = 2}, - [41] = {.lex_state = 540, .external_lex_state = 2}, - [42] = {.lex_state = 540, .external_lex_state = 2}, - [43] = {.lex_state = 540, .external_lex_state = 2}, - [44] = {.lex_state = 540, .external_lex_state = 2}, - [45] = {.lex_state = 540, .external_lex_state = 2}, - [46] = {.lex_state = 540, .external_lex_state = 2}, - [47] = {.lex_state = 540, .external_lex_state = 2}, - [48] = {.lex_state = 540, .external_lex_state = 2}, - [49] = {.lex_state = 540, .external_lex_state = 2}, - [50] = {.lex_state = 540, .external_lex_state = 2}, - [51] = {.lex_state = 540, .external_lex_state = 2}, - [52] = {.lex_state = 540, .external_lex_state = 2}, - [53] = {.lex_state = 540, .external_lex_state = 2}, - [54] = {.lex_state = 540, .external_lex_state = 2}, - [55] = {.lex_state = 540, .external_lex_state = 2}, - [56] = {.lex_state = 540, .external_lex_state = 2}, - [57] = {.lex_state = 540, .external_lex_state = 2}, - [58] = {.lex_state = 540, .external_lex_state = 2}, - [59] = {.lex_state = 540, .external_lex_state = 2}, - [60] = {.lex_state = 540, .external_lex_state = 2}, - [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}, - [65] = {.lex_state = 540, .external_lex_state = 2}, - [66] = {.lex_state = 416, .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}, - [73] = {.lex_state = 540, .external_lex_state = 2}, - [74] = {.lex_state = 416, .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}, - [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}, - [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}, - [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}, - [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}, - [102] = {.lex_state = 540, .external_lex_state = 2}, - [103] = {.lex_state = 540, .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}, - [107] = {.lex_state = 540, .external_lex_state = 2}, - [108] = {.lex_state = 540, .external_lex_state = 2}, - [109] = {.lex_state = 540, .external_lex_state = 2}, - [110] = {.lex_state = 540, .external_lex_state = 2}, - [111] = {.lex_state = 540, .external_lex_state = 2}, - [112] = {.lex_state = 540, .external_lex_state = 2}, - [113] = {.lex_state = 540, .external_lex_state = 2}, - [114] = {.lex_state = 540, .external_lex_state = 2}, - [115] = {.lex_state = 540, .external_lex_state = 2}, - [116] = {.lex_state = 540, .external_lex_state = 2}, - [117] = {.lex_state = 540, .external_lex_state = 2}, - [118] = {.lex_state = 540, .external_lex_state = 2}, - [119] = {.lex_state = 540, .external_lex_state = 2}, - [120] = {.lex_state = 540, .external_lex_state = 2}, - [121] = {.lex_state = 540, .external_lex_state = 2}, - [122] = {.lex_state = 540, .external_lex_state = 2}, - [123] = {.lex_state = 540, .external_lex_state = 2}, - [124] = {.lex_state = 540, .external_lex_state = 2}, - [125] = {.lex_state = 540, .external_lex_state = 2}, - [126] = {.lex_state = 540, .external_lex_state = 2}, - [127] = {.lex_state = 540, .external_lex_state = 2}, - [128] = {.lex_state = 540, .external_lex_state = 2}, - [129] = {.lex_state = 540, .external_lex_state = 2}, - [130] = {.lex_state = 540, .external_lex_state = 2}, - [131] = {.lex_state = 540, .external_lex_state = 2}, - [132] = {.lex_state = 540, .external_lex_state = 2}, - [133] = {.lex_state = 540, .external_lex_state = 2}, - [134] = {.lex_state = 540, .external_lex_state = 2}, - [135] = {.lex_state = 540, .external_lex_state = 2}, - [136] = {.lex_state = 540, .external_lex_state = 2}, - [137] = {.lex_state = 540, .external_lex_state = 2}, - [138] = {.lex_state = 540, .external_lex_state = 2}, - [139] = {.lex_state = 540, .external_lex_state = 2}, - [140] = {.lex_state = 540, .external_lex_state = 2}, - [141] = {.lex_state = 540, .external_lex_state = 2}, - [142] = {.lex_state = 540, .external_lex_state = 2}, - [143] = {.lex_state = 540, .external_lex_state = 2}, - [144] = {.lex_state = 540, .external_lex_state = 2}, - [145] = {.lex_state = 540, .external_lex_state = 2}, - [146] = {.lex_state = 540, .external_lex_state = 2}, - [147] = {.lex_state = 540, .external_lex_state = 2}, - [148] = {.lex_state = 540, .external_lex_state = 2}, - [149] = {.lex_state = 540, .external_lex_state = 2}, - [150] = {.lex_state = 540, .external_lex_state = 2}, - [151] = {.lex_state = 540, .external_lex_state = 2}, - [152] = {.lex_state = 540, .external_lex_state = 2}, - [153] = {.lex_state = 540, .external_lex_state = 2}, - [154] = {.lex_state = 540, .external_lex_state = 2}, - [155] = {.lex_state = 540, .external_lex_state = 2}, - [156] = {.lex_state = 540, .external_lex_state = 2}, - [157] = {.lex_state = 540, .external_lex_state = 2}, - [158] = {.lex_state = 540, .external_lex_state = 2}, - [159] = {.lex_state = 540, .external_lex_state = 2}, - [160] = {.lex_state = 540, .external_lex_state = 2}, - [161] = {.lex_state = 540, .external_lex_state = 2}, - [162] = {.lex_state = 540, .external_lex_state = 2}, - [163] = {.lex_state = 540, .external_lex_state = 2}, - [164] = {.lex_state = 540, .external_lex_state = 2}, - [165] = {.lex_state = 540, .external_lex_state = 2}, - [166] = {.lex_state = 540, .external_lex_state = 2}, - [167] = {.lex_state = 540, .external_lex_state = 2}, - [168] = {.lex_state = 540, .external_lex_state = 2}, - [169] = {.lex_state = 540, .external_lex_state = 2}, - [170] = {.lex_state = 540, .external_lex_state = 2}, - [171] = {.lex_state = 540, .external_lex_state = 2}, - [172] = {.lex_state = 540, .external_lex_state = 2}, - [173] = {.lex_state = 540, .external_lex_state = 2}, - [174] = {.lex_state = 540, .external_lex_state = 2}, - [175] = {.lex_state = 540, .external_lex_state = 2}, - [176] = {.lex_state = 540, .external_lex_state = 2}, - [177] = {.lex_state = 540, .external_lex_state = 2}, - [178] = {.lex_state = 540, .external_lex_state = 2}, - [179] = {.lex_state = 540, .external_lex_state = 2}, - [180] = {.lex_state = 540, .external_lex_state = 2}, - [181] = {.lex_state = 540, .external_lex_state = 2}, - [182] = {.lex_state = 540, .external_lex_state = 2}, - [183] = {.lex_state = 540, .external_lex_state = 2}, - [184] = {.lex_state = 540, .external_lex_state = 2}, - [185] = {.lex_state = 540, .external_lex_state = 2}, - [186] = {.lex_state = 540, .external_lex_state = 2}, - [187] = {.lex_state = 540, .external_lex_state = 2}, - [188] = {.lex_state = 540, .external_lex_state = 2}, - [189] = {.lex_state = 540, .external_lex_state = 2}, - [190] = {.lex_state = 540, .external_lex_state = 2}, - [191] = {.lex_state = 540, .external_lex_state = 2}, - [192] = {.lex_state = 540, .external_lex_state = 2}, - [193] = {.lex_state = 540, .external_lex_state = 2}, - [194] = {.lex_state = 540, .external_lex_state = 2}, - [195] = {.lex_state = 540, .external_lex_state = 2}, - [196] = {.lex_state = 540, .external_lex_state = 2}, - [197] = {.lex_state = 540, .external_lex_state = 2}, - [198] = {.lex_state = 540, .external_lex_state = 2}, - [199] = {.lex_state = 540, .external_lex_state = 2}, - [200] = {.lex_state = 540, .external_lex_state = 2}, - [201] = {.lex_state = 540, .external_lex_state = 2}, - [202] = {.lex_state = 540, .external_lex_state = 2}, - [203] = {.lex_state = 540, .external_lex_state = 2}, - [204] = {.lex_state = 540, .external_lex_state = 2}, - [205] = {.lex_state = 540, .external_lex_state = 2}, - [206] = {.lex_state = 540, .external_lex_state = 2}, - [207] = {.lex_state = 540, .external_lex_state = 2}, - [208] = {.lex_state = 540, .external_lex_state = 2}, - [209] = {.lex_state = 540, .external_lex_state = 2}, - [210] = {.lex_state = 540, .external_lex_state = 2}, - [211] = {.lex_state = 540, .external_lex_state = 2}, - [212] = {.lex_state = 540, .external_lex_state = 2}, - [213] = {.lex_state = 540, .external_lex_state = 2}, - [214] = {.lex_state = 540, .external_lex_state = 2}, - [215] = {.lex_state = 540, .external_lex_state = 2}, - [216] = {.lex_state = 540, .external_lex_state = 2}, - [217] = {.lex_state = 540, .external_lex_state = 2}, - [218] = {.lex_state = 540, .external_lex_state = 2}, - [219] = {.lex_state = 540, .external_lex_state = 2}, - [220] = {.lex_state = 540, .external_lex_state = 2}, - [221] = {.lex_state = 540, .external_lex_state = 2}, - [222] = {.lex_state = 540, .external_lex_state = 2}, - [223] = {.lex_state = 540, .external_lex_state = 2}, - [224] = {.lex_state = 540, .external_lex_state = 2}, - [225] = {.lex_state = 540, .external_lex_state = 2}, - [226] = {.lex_state = 540, .external_lex_state = 2}, - [227] = {.lex_state = 540, .external_lex_state = 2}, - [228] = {.lex_state = 540, .external_lex_state = 2}, - [229] = {.lex_state = 540, .external_lex_state = 2}, - [230] = {.lex_state = 540, .external_lex_state = 2}, - [231] = {.lex_state = 540, .external_lex_state = 2}, - [232] = {.lex_state = 540, .external_lex_state = 2}, - [233] = {.lex_state = 540, .external_lex_state = 2}, - [234] = {.lex_state = 540, .external_lex_state = 2}, - [235] = {.lex_state = 540, .external_lex_state = 2}, - [236] = {.lex_state = 540, .external_lex_state = 2}, - [237] = {.lex_state = 540, .external_lex_state = 2}, - [238] = {.lex_state = 540, .external_lex_state = 2}, - [239] = {.lex_state = 540, .external_lex_state = 2}, - [240] = {.lex_state = 540, .external_lex_state = 2}, - [241] = {.lex_state = 540, .external_lex_state = 2}, - [242] = {.lex_state = 540, .external_lex_state = 2}, - [243] = {.lex_state = 540, .external_lex_state = 2}, - [244] = {.lex_state = 540, .external_lex_state = 2}, - [245] = {.lex_state = 540, .external_lex_state = 2}, - [246] = {.lex_state = 540, .external_lex_state = 2}, - [247] = {.lex_state = 540, .external_lex_state = 2}, - [248] = {.lex_state = 540, .external_lex_state = 2}, - [249] = {.lex_state = 540, .external_lex_state = 2}, - [250] = {.lex_state = 540, .external_lex_state = 2}, - [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}, - [255] = {.lex_state = 540, .external_lex_state = 2}, - [256] = {.lex_state = 540, .external_lex_state = 2}, - [257] = {.lex_state = 540, .external_lex_state = 2}, - [258] = {.lex_state = 540, .external_lex_state = 2}, - [259] = {.lex_state = 540, .external_lex_state = 2}, - [260] = {.lex_state = 540, .external_lex_state = 2}, - [261] = {.lex_state = 540, .external_lex_state = 2}, - [262] = {.lex_state = 540, .external_lex_state = 2}, - [263] = {.lex_state = 540, .external_lex_state = 2}, - [264] = {.lex_state = 540, .external_lex_state = 2}, - [265] = {.lex_state = 540, .external_lex_state = 2}, - [266] = {.lex_state = 540, .external_lex_state = 2}, - [267] = {.lex_state = 540, .external_lex_state = 2}, - [268] = {.lex_state = 540, .external_lex_state = 2}, - [269] = {.lex_state = 540, .external_lex_state = 2}, - [270] = {.lex_state = 540, .external_lex_state = 2}, - [271] = {.lex_state = 540, .external_lex_state = 2}, - [272] = {.lex_state = 540, .external_lex_state = 2}, - [273] = {.lex_state = 540, .external_lex_state = 2}, - [274] = {.lex_state = 540, .external_lex_state = 2}, - [275] = {.lex_state = 540, .external_lex_state = 2}, - [276] = {.lex_state = 540, .external_lex_state = 2}, - [277] = {.lex_state = 540, .external_lex_state = 2}, - [278] = {.lex_state = 540, .external_lex_state = 2}, - [279] = {.lex_state = 540, .external_lex_state = 2}, - [280] = {.lex_state = 540, .external_lex_state = 2}, - [281] = {.lex_state = 540, .external_lex_state = 2}, - [282] = {.lex_state = 540, .external_lex_state = 2}, - [283] = {.lex_state = 540, .external_lex_state = 2}, - [284] = {.lex_state = 540, .external_lex_state = 2}, - [285] = {.lex_state = 540, .external_lex_state = 2}, - [286] = {.lex_state = 540, .external_lex_state = 2}, - [287] = {.lex_state = 540, .external_lex_state = 2}, - [288] = {.lex_state = 540, .external_lex_state = 2}, - [289] = {.lex_state = 540, .external_lex_state = 2}, - [290] = {.lex_state = 540, .external_lex_state = 2}, - [291] = {.lex_state = 540, .external_lex_state = 2}, - [292] = {.lex_state = 540, .external_lex_state = 2}, - [293] = {.lex_state = 540, .external_lex_state = 2}, - [294] = {.lex_state = 540, .external_lex_state = 2}, - [295] = {.lex_state = 540, .external_lex_state = 2}, - [296] = {.lex_state = 540, .external_lex_state = 2}, - [297] = {.lex_state = 540, .external_lex_state = 2}, - [298] = {.lex_state = 540, .external_lex_state = 2}, - [299] = {.lex_state = 540, .external_lex_state = 2}, - [300] = {.lex_state = 540, .external_lex_state = 2}, - [301] = {.lex_state = 540, .external_lex_state = 2}, - [302] = {.lex_state = 540, .external_lex_state = 2}, - [303] = {.lex_state = 540, .external_lex_state = 2}, - [304] = {.lex_state = 540, .external_lex_state = 2}, - [305] = {.lex_state = 540, .external_lex_state = 2}, - [306] = {.lex_state = 540, .external_lex_state = 2}, - [307] = {.lex_state = 540, .external_lex_state = 2}, - [308] = {.lex_state = 540, .external_lex_state = 2}, - [309] = {.lex_state = 540, .external_lex_state = 2}, - [310] = {.lex_state = 540, .external_lex_state = 2}, - [311] = {.lex_state = 540, .external_lex_state = 2}, - [312] = {.lex_state = 540, .external_lex_state = 2}, - [313] = {.lex_state = 540, .external_lex_state = 2}, - [314] = {.lex_state = 540, .external_lex_state = 2}, - [315] = {.lex_state = 540, .external_lex_state = 2}, - [316] = {.lex_state = 540, .external_lex_state = 2}, - [317] = {.lex_state = 540, .external_lex_state = 2}, - [318] = {.lex_state = 540, .external_lex_state = 2}, - [319] = {.lex_state = 540, .external_lex_state = 2}, - [320] = {.lex_state = 540, .external_lex_state = 2}, - [321] = {.lex_state = 540, .external_lex_state = 2}, - [322] = {.lex_state = 540, .external_lex_state = 2}, - [323] = {.lex_state = 540, .external_lex_state = 2}, - [324] = {.lex_state = 540, .external_lex_state = 2}, - [325] = {.lex_state = 540, .external_lex_state = 2}, - [326] = {.lex_state = 540, .external_lex_state = 2}, - [327] = {.lex_state = 540, .external_lex_state = 2}, - [328] = {.lex_state = 540, .external_lex_state = 2}, - [329] = {.lex_state = 540, .external_lex_state = 2}, - [330] = {.lex_state = 540, .external_lex_state = 2}, - [331] = {.lex_state = 540, .external_lex_state = 2}, - [332] = {.lex_state = 540, .external_lex_state = 2}, - [333] = {.lex_state = 540, .external_lex_state = 2}, - [334] = {.lex_state = 540, .external_lex_state = 2}, - [335] = {.lex_state = 540, .external_lex_state = 2}, - [336] = {.lex_state = 540, .external_lex_state = 2}, - [337] = {.lex_state = 540, .external_lex_state = 2}, - [338] = {.lex_state = 540, .external_lex_state = 2}, - [339] = {.lex_state = 540, .external_lex_state = 2}, - [340] = {.lex_state = 540, .external_lex_state = 2}, - [341] = {.lex_state = 540, .external_lex_state = 2}, - [342] = {.lex_state = 540, .external_lex_state = 2}, - [343] = {.lex_state = 540, .external_lex_state = 2}, - [344] = {.lex_state = 540, .external_lex_state = 2}, - [345] = {.lex_state = 540, .external_lex_state = 2}, - [346] = {.lex_state = 540, .external_lex_state = 2}, - [347] = {.lex_state = 540, .external_lex_state = 2}, - [348] = {.lex_state = 540, .external_lex_state = 2}, - [349] = {.lex_state = 540, .external_lex_state = 2}, - [350] = {.lex_state = 540, .external_lex_state = 2}, - [351] = {.lex_state = 540, .external_lex_state = 2}, - [352] = {.lex_state = 540, .external_lex_state = 2}, - [353] = {.lex_state = 540, .external_lex_state = 2}, - [354] = {.lex_state = 540, .external_lex_state = 2}, - [355] = {.lex_state = 540, .external_lex_state = 2}, - [356] = {.lex_state = 540, .external_lex_state = 2}, - [357] = {.lex_state = 540, .external_lex_state = 2}, - [358] = {.lex_state = 540, .external_lex_state = 2}, - [359] = {.lex_state = 540, .external_lex_state = 2}, - [360] = {.lex_state = 540, .external_lex_state = 2}, - [361] = {.lex_state = 540, .external_lex_state = 2}, - [362] = {.lex_state = 540, .external_lex_state = 2}, - [363] = {.lex_state = 540, .external_lex_state = 2}, - [364] = {.lex_state = 540, .external_lex_state = 2}, - [365] = {.lex_state = 540, .external_lex_state = 2}, - [366] = {.lex_state = 540, .external_lex_state = 2}, - [367] = {.lex_state = 540, .external_lex_state = 2}, - [368] = {.lex_state = 540, .external_lex_state = 2}, - [369] = {.lex_state = 540, .external_lex_state = 2}, - [370] = {.lex_state = 540, .external_lex_state = 2}, - [371] = {.lex_state = 540, .external_lex_state = 2}, - [372] = {.lex_state = 540, .external_lex_state = 2}, - [373] = {.lex_state = 540, .external_lex_state = 2}, - [374] = {.lex_state = 540, .external_lex_state = 2}, - [375] = {.lex_state = 540, .external_lex_state = 2}, - [376] = {.lex_state = 540, .external_lex_state = 2}, - [377] = {.lex_state = 540, .external_lex_state = 2}, - [378] = {.lex_state = 540, .external_lex_state = 2}, - [379] = {.lex_state = 540, .external_lex_state = 2}, - [380] = {.lex_state = 540, .external_lex_state = 2}, - [381] = {.lex_state = 540, .external_lex_state = 2}, - [382] = {.lex_state = 540, .external_lex_state = 2}, - [383] = {.lex_state = 540, .external_lex_state = 2}, - [384] = {.lex_state = 540, .external_lex_state = 2}, - [385] = {.lex_state = 540, .external_lex_state = 2}, - [386] = {.lex_state = 540, .external_lex_state = 2}, - [387] = {.lex_state = 540, .external_lex_state = 2}, - [388] = {.lex_state = 540, .external_lex_state = 2}, - [389] = {.lex_state = 540, .external_lex_state = 2}, - [390] = {.lex_state = 540, .external_lex_state = 2}, - [391] = {.lex_state = 540, .external_lex_state = 2}, - [392] = {.lex_state = 540, .external_lex_state = 2}, - [393] = {.lex_state = 540, .external_lex_state = 2}, - [394] = {.lex_state = 540, .external_lex_state = 2}, - [395] = {.lex_state = 540, .external_lex_state = 2}, - [396] = {.lex_state = 540, .external_lex_state = 2}, - [397] = {.lex_state = 540, .external_lex_state = 2}, - [398] = {.lex_state = 540, .external_lex_state = 2}, - [399] = {.lex_state = 540, .external_lex_state = 2}, - [400] = {.lex_state = 540, .external_lex_state = 2}, - [401] = {.lex_state = 540, .external_lex_state = 2}, - [402] = {.lex_state = 540, .external_lex_state = 2}, - [403] = {.lex_state = 540, .external_lex_state = 2}, - [404] = {.lex_state = 540, .external_lex_state = 2}, - [405] = {.lex_state = 540, .external_lex_state = 2}, - [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}, - [410] = {.lex_state = 540, .external_lex_state = 2}, - [411] = {.lex_state = 540, .external_lex_state = 2}, - [412] = {.lex_state = 540, .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}, - [416] = {.lex_state = 540, .external_lex_state = 2}, - [417] = {.lex_state = 540, .external_lex_state = 2}, - [418] = {.lex_state = 540, .external_lex_state = 2}, - [419] = {.lex_state = 540, .external_lex_state = 2}, - [420] = {.lex_state = 540, .external_lex_state = 2}, - [421] = {.lex_state = 540, .external_lex_state = 2}, - [422] = {.lex_state = 540, .external_lex_state = 2}, - [423] = {.lex_state = 540, .external_lex_state = 2}, - [424] = {.lex_state = 540, .external_lex_state = 2}, - [425] = {.lex_state = 540, .external_lex_state = 2}, - [426] = {.lex_state = 540, .external_lex_state = 2}, - [427] = {.lex_state = 540, .external_lex_state = 2}, - [428] = {.lex_state = 540, .external_lex_state = 2}, - [429] = {.lex_state = 540, .external_lex_state = 2}, - [430] = {.lex_state = 540, .external_lex_state = 2}, - [431] = {.lex_state = 540, .external_lex_state = 2}, - [432] = {.lex_state = 540, .external_lex_state = 2}, - [433] = {.lex_state = 540, .external_lex_state = 2}, - [434] = {.lex_state = 540, .external_lex_state = 2}, - [435] = {.lex_state = 540, .external_lex_state = 2}, - [436] = {.lex_state = 540, .external_lex_state = 2}, - [437] = {.lex_state = 540, .external_lex_state = 2}, - [438] = {.lex_state = 540, .external_lex_state = 2}, - [439] = {.lex_state = 540, .external_lex_state = 2}, - [440] = {.lex_state = 540, .external_lex_state = 2}, - [441] = {.lex_state = 540, .external_lex_state = 2}, - [442] = {.lex_state = 540, .external_lex_state = 2}, - [443] = {.lex_state = 540, .external_lex_state = 2}, - [444] = {.lex_state = 540, .external_lex_state = 2}, - [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}, - [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}, - [454] = {.lex_state = 402, .external_lex_state = 7}, - [455] = {.lex_state = 401, .external_lex_state = 8}, - [456] = {.lex_state = 402, .external_lex_state = 7}, - [457] = {.lex_state = 402, .external_lex_state = 7}, - [458] = {.lex_state = 400, .external_lex_state = 8}, - [459] = {.lex_state = 12, .external_lex_state = 9}, - [460] = {.lex_state = 12, .external_lex_state = 9}, - [461] = {.lex_state = 398, .external_lex_state = 10}, - [462] = {.lex_state = 398, .external_lex_state = 10}, - [463] = {.lex_state = 156, .external_lex_state = 4}, - [464] = {.lex_state = 156, .external_lex_state = 4}, - [465] = {.lex_state = 156, .external_lex_state = 4}, - [466] = {.lex_state = 156, .external_lex_state = 4}, - [467] = {.lex_state = 156, .external_lex_state = 4}, - [468] = {.lex_state = 156, .external_lex_state = 4}, - [469] = {.lex_state = 156, .external_lex_state = 4}, - [470] = {.lex_state = 156, .external_lex_state = 4}, - [471] = {.lex_state = 156, .external_lex_state = 4}, - [472] = {.lex_state = 156, .external_lex_state = 4}, - [473] = {.lex_state = 156, .external_lex_state = 4}, - [474] = {.lex_state = 156, .external_lex_state = 4}, - [475] = {.lex_state = 156, .external_lex_state = 4}, - [476] = {.lex_state = 156, .external_lex_state = 4}, - [477] = {.lex_state = 156, .external_lex_state = 4}, - [478] = {.lex_state = 156, .external_lex_state = 4}, - [479] = {.lex_state = 156, .external_lex_state = 4}, - [480] = {.lex_state = 156, .external_lex_state = 4}, - [481] = {.lex_state = 156, .external_lex_state = 4}, - [482] = {.lex_state = 156, .external_lex_state = 4}, - [483] = {.lex_state = 156, .external_lex_state = 4}, - [484] = {.lex_state = 156, .external_lex_state = 4}, - [485] = {.lex_state = 156, .external_lex_state = 4}, - [486] = {.lex_state = 156, .external_lex_state = 4}, - [487] = {.lex_state = 156, .external_lex_state = 4}, - [488] = {.lex_state = 233, .external_lex_state = 11}, - [489] = {.lex_state = 233, .external_lex_state = 11}, - [490] = {.lex_state = 233, .external_lex_state = 11}, - [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}, - [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}, - [521] = {.lex_state = 417, .external_lex_state = 2}, - [522] = {.lex_state = 417, .external_lex_state = 2}, - [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}, - [530] = {.lex_state = 521, .external_lex_state = 11}, - [531] = {.lex_state = 236, .external_lex_state = 14}, - [532] = {.lex_state = 521, .external_lex_state = 11}, - [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}, - [537] = {.lex_state = 216, .external_lex_state = 17}, - [538] = {.lex_state = 521, .external_lex_state = 11}, - [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}, - [544] = {.lex_state = 521, .external_lex_state = 11}, - [545] = {.lex_state = 239, .external_lex_state = 16}, - [546] = {.lex_state = 235, .external_lex_state = 9}, - [547] = {.lex_state = 238, .external_lex_state = 18}, - [548] = {.lex_state = 521, .external_lex_state = 16}, - [549] = {.lex_state = 235, .external_lex_state = 9}, - [550] = {.lex_state = 248, .external_lex_state = 19}, - [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}, - [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}, - [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}, - [575] = {.lex_state = 247, .external_lex_state = 9}, - [576] = {.lex_state = 247, .external_lex_state = 9}, - [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}, - [608] = {.lex_state = 451, .external_lex_state = 2}, - [609] = {.lex_state = 527, .external_lex_state = 19}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [1536] = {.lex_state = 288, .external_lex_state = 41}, - [1537] = {.lex_state = 284, .external_lex_state = 45}, - [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}, - [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}, - [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}, - [1575] = {.lex_state = 284, .external_lex_state = 45}, - [1576] = {.lex_state = 284, .external_lex_state = 45}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [1792] = {.lex_state = 532, .external_lex_state = 45}, - [1793] = {.lex_state = 419, .external_lex_state = 42}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [1860] = {.lex_state = 533, .external_lex_state = 45}, - [1861] = {.lex_state = 533, .external_lex_state = 45}, - [1862] = {.lex_state = 533, .external_lex_state = 45}, - [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}, - [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}, - [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}, - [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}, - [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}, - [2007] = {.lex_state = 534, .external_lex_state = 45}, - [2008] = {.lex_state = 534, .external_lex_state = 45}, - [2009] = {.lex_state = 534, .external_lex_state = 45}, - [2010] = {.lex_state = 534, .external_lex_state = 45}, - [2011] = {.lex_state = 534, .external_lex_state = 45}, - [2012] = {.lex_state = 419, .external_lex_state = 42}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [2404] = {.lex_state = 459, .external_lex_state = 53}, - [2405] = {.lex_state = 455, .external_lex_state = 25}, - [2406] = {.lex_state = 459, .external_lex_state = 57}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [2629] = {.lex_state = 429, .external_lex_state = 61}, - [2630] = {.lex_state = 458, .external_lex_state = 32}, - [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}, - [2656] = {.lex_state = 429, .external_lex_state = 61}, - [2657] = {.lex_state = 429, .external_lex_state = 44}, - [2658] = {.lex_state = 429, .external_lex_state = 46}, - [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}, - [2667] = {.lex_state = 429, .external_lex_state = 61}, - [2668] = {.lex_state = 429, .external_lex_state = 44}, - [2669] = {.lex_state = 429, .external_lex_state = 61}, - [2670] = {.lex_state = 429, .external_lex_state = 44}, - [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}, - [2676] = {.lex_state = 429, .external_lex_state = 61}, - [2677] = {.lex_state = 458, .external_lex_state = 29}, - [2678] = {.lex_state = 429, .external_lex_state = 61}, - [2679] = {.lex_state = 429, .external_lex_state = 61}, - [2680] = {.lex_state = 429, .external_lex_state = 61}, - [2681] = {.lex_state = 429, .external_lex_state = 61}, - [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}, - [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}, - [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}, - [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}, - [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}, - [2705] = {.lex_state = 429, .external_lex_state = 61}, - [2706] = {.lex_state = 429, .external_lex_state = 61}, - [2707] = {.lex_state = 429, .external_lex_state = 61}, - [2708] = {.lex_state = 429, .external_lex_state = 61}, - [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}, - [2714] = {.lex_state = 429, .external_lex_state = 61}, - [2715] = {.lex_state = 429, .external_lex_state = 61}, - [2716] = {.lex_state = 429, .external_lex_state = 61}, - [2717] = {.lex_state = 429, .external_lex_state = 61}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [2998] = {.lex_state = 429, .external_lex_state = 46}, - [2999] = {.lex_state = 463, .external_lex_state = 32}, - [3000] = {.lex_state = 429, .external_lex_state = 46}, - [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}, - [3144] = {.lex_state = 435, .external_lex_state = 61}, - [3145] = {.lex_state = 427, .external_lex_state = 61}, - [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}, - [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}, - [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}, - [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}, - [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}, - [3494] = {.lex_state = 445, .external_lex_state = 76}, - [3495] = {.lex_state = 445, .external_lex_state = 76}, - [3496] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [3502] = {.lex_state = 445, .external_lex_state = 76}, - [3503] = {.lex_state = 475, .external_lex_state = 80}, - [3504] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [3510] = {.lex_state = 445, .external_lex_state = 76}, - [3511] = {.lex_state = 445, .external_lex_state = 76}, - [3512] = {.lex_state = 264, .external_lex_state = 67}, - [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}, - [3519] = {.lex_state = 445, .external_lex_state = 76}, - [3520] = {.lex_state = 452, .external_lex_state = 35}, - [3521] = {.lex_state = 445, .external_lex_state = 76}, - [3522] = {.lex_state = 445, .external_lex_state = 76}, - [3523] = {.lex_state = 445, .external_lex_state = 76}, - [3524] = {.lex_state = 454, .external_lex_state = 78}, - [3525] = {.lex_state = 445, .external_lex_state = 76}, - [3526] = {.lex_state = 257, .external_lex_state = 71}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [3558] = {.lex_state = 445, .external_lex_state = 76}, - [3559] = {.lex_state = 445, .external_lex_state = 76}, - [3560] = {.lex_state = 445, .external_lex_state = 76}, - [3561] = {.lex_state = 454, .external_lex_state = 78}, - [3562] = {.lex_state = 454, .external_lex_state = 78}, - [3563] = {.lex_state = 445, .external_lex_state = 76}, - [3564] = {.lex_state = 454, .external_lex_state = 78}, - [3565] = {.lex_state = 445, .external_lex_state = 76}, - [3566] = {.lex_state = 445, .external_lex_state = 76}, - [3567] = {.lex_state = 445, .external_lex_state = 76}, - [3568] = {.lex_state = 445, .external_lex_state = 76}, - [3569] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [3575] = {.lex_state = 445, .external_lex_state = 76}, - [3576] = {.lex_state = 445, .external_lex_state = 76}, - [3577] = {.lex_state = 445, .external_lex_state = 76}, - [3578] = {.lex_state = 445, .external_lex_state = 76}, - [3579] = {.lex_state = 445, .external_lex_state = 76}, - [3580] = {.lex_state = 445, .external_lex_state = 76}, - [3581] = {.lex_state = 445, .external_lex_state = 76}, - [3582] = {.lex_state = 445, .external_lex_state = 76}, - [3583] = {.lex_state = 445, .external_lex_state = 76}, - [3584] = {.lex_state = 445, .external_lex_state = 76}, - [3585] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [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}, - [3596] = {.lex_state = 445, .external_lex_state = 76}, - [3597] = {.lex_state = 445, .external_lex_state = 76}, - [3598] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [3604] = {.lex_state = 445, .external_lex_state = 76}, - [3605] = {.lex_state = 445, .external_lex_state = 76}, - [3606] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [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}, - [3617] = {.lex_state = 445, .external_lex_state = 76}, - [3618] = {.lex_state = 445, .external_lex_state = 76}, - [3619] = {.lex_state = 445, .external_lex_state = 76}, - [3620] = {.lex_state = 445, .external_lex_state = 76}, - [3621] = {.lex_state = 445, .external_lex_state = 76}, - [3622] = {.lex_state = 445, .external_lex_state = 76}, - [3623] = {.lex_state = 445, .external_lex_state = 76}, - [3624] = {.lex_state = 445, .external_lex_state = 76}, - [3625] = {.lex_state = 445, .external_lex_state = 76}, - [3626] = {.lex_state = 445, .external_lex_state = 76}, - [3627] = {.lex_state = 445, .external_lex_state = 76}, - [3628] = {.lex_state = 445, .external_lex_state = 76}, - [3629] = {.lex_state = 445, .external_lex_state = 76}, - [3630] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [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}, - [3641] = {.lex_state = 445, .external_lex_state = 76}, - [3642] = {.lex_state = 445, .external_lex_state = 76}, - [3643] = {.lex_state = 439, .external_lex_state = 81}, - [3644] = {.lex_state = 445, .external_lex_state = 76}, - [3645] = {.lex_state = 445, .external_lex_state = 76}, - [3646] = {.lex_state = 445, .external_lex_state = 76}, - [3647] = {.lex_state = 445, .external_lex_state = 76}, - [3648] = {.lex_state = 445, .external_lex_state = 76}, - [3649] = {.lex_state = 445, .external_lex_state = 76}, - [3650] = {.lex_state = 445, .external_lex_state = 76}, - [3651] = {.lex_state = 445, .external_lex_state = 76}, - [3652] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [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}, - [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}, - [3667] = {.lex_state = 445, .external_lex_state = 76}, - [3668] = {.lex_state = 445, .external_lex_state = 76}, - [3669] = {.lex_state = 445, .external_lex_state = 76}, - [3670] = {.lex_state = 445, .external_lex_state = 76}, - [3671] = {.lex_state = 445, .external_lex_state = 76}, - [3672] = {.lex_state = 445, .external_lex_state = 76}, - [3673] = {.lex_state = 445, .external_lex_state = 76}, - [3674] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [3680] = {.lex_state = 445, .external_lex_state = 76}, - [3681] = {.lex_state = 445, .external_lex_state = 76}, - [3682] = {.lex_state = 445, .external_lex_state = 76}, - [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}, - [3690] = {.lex_state = 445, .external_lex_state = 76}, - [3691] = {.lex_state = 452, .external_lex_state = 35}, - [3692] = {.lex_state = 452, .external_lex_state = 35}, - [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}, - [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}, - [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}, - [3708] = {.lex_state = 440, .external_lex_state = 77}, - [3709] = {.lex_state = 445, .external_lex_state = 76}, - [3710] = {.lex_state = 411, .external_lex_state = 82}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [3841] = {.lex_state = 454, .external_lex_state = 78}, - [3842] = {.lex_state = 472, .external_lex_state = 85}, - [3843] = {.lex_state = 472, .external_lex_state = 85}, - [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}, - [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}, - [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}, - [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}, - [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}, - [4092] = {.lex_state = 454, .external_lex_state = 78}, - [4093] = {.lex_state = 472, .external_lex_state = 85}, - [4094] = {.lex_state = 454, .external_lex_state = 78}, - [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}, - [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}, - [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}, - [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}, - [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}, - [4697] = {.lex_state = 450, .external_lex_state = 98}, - [4698] = {.lex_state = 468, .external_lex_state = 96}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [4847] = {.lex_state = 450, .external_lex_state = 98}, - [4848] = {.lex_state = 95, .external_lex_state = 92}, - [4849] = {.lex_state = 516, .external_lex_state = 92}, - [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}, - [4863] = {.lex_state = 450, .external_lex_state = 98}, - [4864] = {.lex_state = 450, .external_lex_state = 98}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [5293] = {.lex_state = 454, .external_lex_state = 48}, - [5294] = {.lex_state = 481, .external_lex_state = 99}, - [5295] = {.lex_state = 480, .external_lex_state = 104}, - [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}, - [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}, - [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}, - [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}, - [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}, - [5333] = {.lex_state = 454, .external_lex_state = 48}, - [5334] = {.lex_state = 480, .external_lex_state = 104}, - [5335] = {.lex_state = 454, .external_lex_state = 48}, - [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}, - [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}, - [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}, - [5366] = {.lex_state = 454, .external_lex_state = 48}, - [5367] = {.lex_state = 477, .external_lex_state = 103}, - [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}, - [5374] = {.lex_state = 454, .external_lex_state = 48}, - [5375] = {.lex_state = 480, .external_lex_state = 104}, - [5376] = {.lex_state = 454, .external_lex_state = 48}, - [5377] = {.lex_state = 480, .external_lex_state = 104}, - [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}, - [5383] = {.lex_state = 454, .external_lex_state = 48}, - [5384] = {.lex_state = 477, .external_lex_state = 103}, - [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}, - [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}, - [5400] = {.lex_state = 454, .external_lex_state = 48}, - [5401] = {.lex_state = 454, .external_lex_state = 48}, - [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}, - [5616] = {.lex_state = 449, .external_lex_state = 111}, - [5617] = {.lex_state = 442, .external_lex_state = 111}, - [5618] = {.lex_state = 449, .external_lex_state = 111}, - [5619] = {.lex_state = 474}, - [5620] = {.lex_state = 474}, - [5621] = {.lex_state = 474}, - [5622] = {.lex_state = 474}, - [5623] = {.lex_state = 474}, - [5624] = {.lex_state = 474}, - [5625] = {.lex_state = 474}, - [5626] = {.lex_state = 474}, - [5627] = {.lex_state = 474}, - [5628] = {.lex_state = 474}, - [5629] = {.lex_state = 474}, - [5630] = {.lex_state = 474}, - [5631] = {.lex_state = 474}, - [5632] = {.lex_state = 474}, - [5633] = {.lex_state = 474}, - [5634] = {.lex_state = 474}, - [5635] = {.lex_state = 474}, - [5636] = {.lex_state = 474}, - [5637] = {.lex_state = 474}, - [5638] = {.lex_state = 474}, - [5639] = {.lex_state = 474}, - [5640] = {.lex_state = 474}, - [5641] = {.lex_state = 474}, - [5642] = {.lex_state = 474}, - [5643] = {.lex_state = 474}, - [5644] = {.lex_state = 474}, - [5645] = {.lex_state = 474}, - [5646] = {.lex_state = 474}, - [5647] = {.lex_state = 474}, - [5648] = {.lex_state = 474}, - [5649] = {.lex_state = 474}, - [5650] = {.lex_state = 474}, - [5651] = {.lex_state = 474}, - [5652] = {.lex_state = 474}, - [5653] = {.lex_state = 474}, - [5654] = {.lex_state = 474}, - [5655] = {.lex_state = 474}, - [5656] = {.lex_state = 474}, - [5657] = {.lex_state = 474}, - [5658] = {.lex_state = 474}, - [5659] = {.lex_state = 474}, - [5660] = {.lex_state = 474}, - [5661] = {.lex_state = 474}, - [5662] = {.lex_state = 474}, - [5663] = {.lex_state = 474}, - [5664] = {.lex_state = 474}, - [5665] = {.lex_state = 474}, - [5666] = {.lex_state = 474}, - [5667] = {.lex_state = 474}, - [5668] = {.lex_state = 474}, - [5669] = {.lex_state = 474}, - [5670] = {.lex_state = 474}, - [5671] = {.lex_state = 474}, - [5672] = {.lex_state = 474}, - [5673] = {.lex_state = 474}, - [5674] = {.lex_state = 474}, - [5675] = {.lex_state = 474}, - [5676] = {.lex_state = 474}, - [5677] = {.lex_state = 474}, - [5678] = {.lex_state = 474}, - [5679] = {.lex_state = 474}, - [5680] = {.lex_state = 474}, - [5681] = {.lex_state = 474}, - [5682] = {.lex_state = 474}, - [5683] = {.lex_state = 474}, - [5684] = {.lex_state = 474}, - [5685] = {.lex_state = 474}, - [5686] = {.lex_state = 474}, - [5687] = {.lex_state = 474}, - [5688] = {.lex_state = 474}, - [5689] = {.lex_state = 474}, - [5690] = {.lex_state = 474}, - [5691] = {.lex_state = 474}, - [5692] = {.lex_state = 474}, - [5693] = {.lex_state = 474}, - [5694] = {.lex_state = 474}, - [5695] = {.lex_state = 474}, - [5696] = {.lex_state = 474}, - [5697] = {.lex_state = 474}, - [5698] = {.lex_state = 474}, - [5699] = {.lex_state = 474}, - [5700] = {.lex_state = 474}, - [5701] = {.lex_state = 474}, - [5702] = {.lex_state = 474}, - [5703] = {.lex_state = 474}, - [5704] = {.lex_state = 474}, - [5705] = {.lex_state = 474}, - [5706] = {.lex_state = 474}, - [5707] = {.lex_state = 474}, - [5708] = {.lex_state = 474}, - [5709] = {.lex_state = 474}, - [5710] = {.lex_state = 474}, - [5711] = {.lex_state = 474}, - [5712] = {.lex_state = 474}, - [5713] = {.lex_state = 474}, - [5714] = {.lex_state = 474}, - [5715] = {.lex_state = 474}, - [5716] = {.lex_state = 474}, - [5717] = {.lex_state = 474}, - [5718] = {.lex_state = 474}, - [5719] = {.lex_state = 474}, - [5720] = {.lex_state = 474}, - [5721] = {.lex_state = 474}, - [5722] = {.lex_state = 474}, - [5723] = {.lex_state = 474}, - [5724] = {.lex_state = 474}, - [5725] = {.lex_state = 474}, - [5726] = {.lex_state = 474}, - [5727] = {.lex_state = 474}, - [5728] = {.lex_state = 474}, - [5729] = {.lex_state = 474}, - [5730] = {.lex_state = 474}, - [5731] = {.lex_state = 474}, - [5732] = {.lex_state = 474}, - [5733] = {.lex_state = 474}, - [5734] = {.lex_state = 474}, - [5735] = {.lex_state = 474}, - [5736] = {.lex_state = 474}, - [5737] = {.lex_state = 474}, - [5738] = {.lex_state = 474}, - [5739] = {.lex_state = 474}, - [5740] = {.lex_state = 474}, - [5741] = {.lex_state = 474}, - [5742] = {.lex_state = 474}, - [5743] = {.lex_state = 474}, - [5744] = {.lex_state = 474}, - [5745] = {.lex_state = 474}, - [5746] = {.lex_state = 474}, - [5747] = {.lex_state = 474}, - [5748] = {.lex_state = 474}, - [5749] = {.lex_state = 474}, - [5750] = {.lex_state = 474}, - [5751] = {.lex_state = 474}, - [5752] = {.lex_state = 474}, - [5753] = {.lex_state = 474}, - [5754] = {.lex_state = 474}, - [5755] = {.lex_state = 474}, - [5756] = {.lex_state = 474}, - [5757] = {.lex_state = 474}, - [5758] = {.lex_state = 474}, - [5759] = {.lex_state = 474}, - [5760] = {.lex_state = 474}, - [5761] = {.lex_state = 474}, - [5762] = {.lex_state = 474}, - [5763] = {.lex_state = 474}, - [5764] = {.lex_state = 474}, - [5765] = {.lex_state = 474}, - [5766] = {.lex_state = 474}, - [5767] = {.lex_state = 474}, - [5768] = {.lex_state = 474}, - [5769] = {.lex_state = 474}, - [5770] = {.lex_state = 474}, - [5771] = {.lex_state = 474}, - [5772] = {.lex_state = 474}, - [5773] = {.lex_state = 474}, - [5774] = {.lex_state = 443, .external_lex_state = 111}, - [5775] = {.lex_state = 443, .external_lex_state = 111}, - [5776] = {.lex_state = 443, .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}, - [5780] = {.lex_state = 443, .external_lex_state = 111}, - [5781] = {.lex_state = 444, .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}, - [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}, - [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}, - [5796] = {.lex_state = 443, .external_lex_state = 111}, - [5797] = {.lex_state = 445, .external_lex_state = 112}, - [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}, - [5802] = {.lex_state = 443, .external_lex_state = 111}, - [5803] = {.lex_state = 443, .external_lex_state = 111}, - [5804] = {.lex_state = 444, .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}, - [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}, - [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}, - [5819] = {.lex_state = 443, .external_lex_state = 111}, - [5820] = {.lex_state = 444, .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}, - [5825] = {.lex_state = 443, .external_lex_state = 111}, - [5826] = {.lex_state = 444, .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}, - [5831] = {.lex_state = 444, .external_lex_state = 111}, - [5832] = {.lex_state = 443, .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}, - [5838] = {.lex_state = 443, .external_lex_state = 111}, - [5839] = {.lex_state = 444, .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}, - [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}, - [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}, - [5852] = {.lex_state = 443, .external_lex_state = 111}, - [5853] = {.lex_state = 443, .external_lex_state = 111}, - [5854] = {.lex_state = 445, .external_lex_state = 112}, - [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}, - [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}, - [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}, - [5868] = {.lex_state = 443, .external_lex_state = 111}, - [5869] = {.lex_state = 443, .external_lex_state = 111}, - [5870] = {.lex_state = 443, .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}, - [5875] = {.lex_state = 443, .external_lex_state = 111}, - [5876] = {.lex_state = 443, .external_lex_state = 111}, - [5877] = {.lex_state = 444, .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}, - [5881] = {.lex_state = 443, .external_lex_state = 111}, - [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}, - [5886] = {.lex_state = 443, .external_lex_state = 111}, - [5887] = {.lex_state = 444, .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}, - [5891] = {.lex_state = 443, .external_lex_state = 111}, - [5892] = {.lex_state = 443, .external_lex_state = 111}, - [5893] = {.lex_state = 444, .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}, - [5897] = {.lex_state = 443, .external_lex_state = 111}, - [5898] = {.lex_state = 443, .external_lex_state = 111}, - [5899] = {.lex_state = 443, .external_lex_state = 111}, - [5900] = {.lex_state = 444, .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}, - [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}, - [5911] = {.lex_state = 443, .external_lex_state = 111}, - [5912] = {.lex_state = 444, .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}, - [5916] = {.lex_state = 443, .external_lex_state = 111}, - [5917] = {.lex_state = 444, .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}, - [5922] = {.lex_state = 443, .external_lex_state = 111}, - [5923] = {.lex_state = 443, .external_lex_state = 111}, - [5924] = {.lex_state = 443, .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}, - [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}, - [5934] = {.lex_state = 443, .external_lex_state = 111}, - [5935] = {.lex_state = 444, .external_lex_state = 111}, - [5936] = {.lex_state = 443, .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}, - [5942] = {.lex_state = 443, .external_lex_state = 111}, - [5943] = {.lex_state = 443, .external_lex_state = 111}, - [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}, - [5952] = {.lex_state = 443, .external_lex_state = 111}, - [5953] = {.lex_state = 443, .external_lex_state = 111}, - [5954] = {.lex_state = 443, .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}, - [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}, - [5963] = {.lex_state = 443, .external_lex_state = 111}, - [5964] = {.lex_state = 445, .external_lex_state = 112}, - [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}, - [5969] = {.lex_state = 443, .external_lex_state = 111}, - [5970] = {.lex_state = 444, .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}, - [5974] = {.lex_state = 443, .external_lex_state = 111}, - [5975] = {.lex_state = 444, .external_lex_state = 111}, - [5976] = {.lex_state = 444, .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}, - [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}, - [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}, - [5991] = {.lex_state = 443, .external_lex_state = 111}, - [5992] = {.lex_state = 443, .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}, - [5997] = {.lex_state = 443, .external_lex_state = 111}, - [5998] = {.lex_state = 444, .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}, - [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}, - [6012] = {.lex_state = 479}, - [6013] = {.lex_state = 427, .external_lex_state = 113}, - [6014] = {.lex_state = 479}, - [6015] = {.lex_state = 469, .external_lex_state = 114}, - [6016] = {.lex_state = 447, .external_lex_state = 111}, - [6017] = {.lex_state = 479}, - [6018] = {.lex_state = 479}, - [6019] = {.lex_state = 447, .external_lex_state = 111}, - [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}, - [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}, - [6033] = {.lex_state = 479}, - [6034] = {.lex_state = 479}, - [6035] = {.lex_state = 479}, - [6036] = {.lex_state = 479}, - [6037] = {.lex_state = 479}, - [6038] = {.lex_state = 479}, - [6039] = {.lex_state = 479}, - [6040] = {.lex_state = 479}, - [6041] = {.lex_state = 447, .external_lex_state = 111}, - [6042] = {.lex_state = 479}, - [6043] = {.lex_state = 479}, - [6044] = {.lex_state = 479}, - [6045] = {.lex_state = 447, .external_lex_state = 111}, - [6046] = {.lex_state = 479}, - [6047] = {.lex_state = 479}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [6150] = {.lex_state = 427, .external_lex_state = 113}, - [6151] = {.lex_state = 470, .external_lex_state = 114}, - [6152] = {.lex_state = 453, .external_lex_state = 115}, - [6153] = {.lex_state = 453, .external_lex_state = 115}, - [6154] = {.lex_state = 427}, - [6155] = {.lex_state = 427}, - [6156] = {.lex_state = 427}, - [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}, - [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}, - [6179] = {.lex_state = 427}, - [6180] = {.lex_state = 427}, - [6181] = {.lex_state = 480}, - [6182] = {.lex_state = 427}, - [6183] = {.lex_state = 427}, - [6184] = {.lex_state = 427}, - [6185] = {.lex_state = 427}, - [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}, - [6191] = {.lex_state = 470, .external_lex_state = 114}, - [6192] = {.lex_state = 427}, - [6193] = {.lex_state = 427}, - [6194] = {.lex_state = 479}, - [6195] = {.lex_state = 427}, - [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}, - [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}, - [6208] = {.lex_state = 470, .external_lex_state = 114}, - [6209] = {.lex_state = 427}, - [6210] = {.lex_state = 427}, - [6211] = {.lex_state = 427}, - [6212] = {.lex_state = 427}, - [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}, - [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}, - [6228] = {.lex_state = 427}, - [6229] = {.lex_state = 480}, - [6230] = {.lex_state = 427}, - [6231] = {.lex_state = 427}, - [6232] = {.lex_state = 482, .external_lex_state = 120}, - [6233] = {.lex_state = 98, .external_lex_state = 119}, - [6234] = {.lex_state = 427}, - [6235] = {.lex_state = 427}, - [6236] = {.lex_state = 427}, - [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}, - [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}, - [6250] = {.lex_state = 427}, - [6251] = {.lex_state = 427}, - [6252] = {.lex_state = 427}, - [6253] = {.lex_state = 470, .external_lex_state = 114}, - [6254] = {.lex_state = 427}, - [6255] = {.lex_state = 427}, - [6256] = {.lex_state = 471, .external_lex_state = 118}, - [6257] = {.lex_state = 427}, - [6258] = {.lex_state = 427}, - [6259] = {.lex_state = 427}, - [6260] = {.lex_state = 427}, - [6261] = {.lex_state = 479}, - [6262] = {.lex_state = 427}, - [6263] = {.lex_state = 427}, - [6264] = {.lex_state = 427}, - [6265] = {.lex_state = 470, .external_lex_state = 114}, - [6266] = {.lex_state = 427}, - [6267] = {.lex_state = 93, .external_lex_state = 119}, - [6268] = {.lex_state = 427}, - [6269] = {.lex_state = 427}, - [6270] = {.lex_state = 480}, - [6271] = {.lex_state = 427}, - [6272] = {.lex_state = 471, .external_lex_state = 118}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [6443] = {.lex_state = 427, .external_lex_state = 125}, - [6444] = {.lex_state = 427, .external_lex_state = 125}, - [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}, - [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}, - [6471] = {.lex_state = 429}, - [6472] = {.lex_state = 429}, - [6473] = {.lex_state = 540}, - [6474] = {.lex_state = 482}, - [6475] = {.lex_state = 429}, - [6476] = {.lex_state = 482}, - [6477] = {.lex_state = 429}, - [6478] = {.lex_state = 429}, - [6479] = {.lex_state = 470, .external_lex_state = 114}, - [6480] = {.lex_state = 482}, - [6481] = {.lex_state = 482}, - [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}, - [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}, - [6507] = {.lex_state = 429}, - [6508] = {.lex_state = 429}, - [6509] = {.lex_state = 429}, - [6510] = {.lex_state = 427}, - [6511] = {.lex_state = 540}, - [6512] = {.lex_state = 429}, - [6513] = {.lex_state = 540}, - [6514] = {.lex_state = 429}, - [6515] = {.lex_state = 429}, - [6516] = {.lex_state = 429}, - [6517] = {.lex_state = 429}, - [6518] = {.lex_state = 540}, - [6519] = {.lex_state = 429}, - [6520] = {.lex_state = 413}, - [6521] = {.lex_state = 429}, - [6522] = {.lex_state = 429}, - [6523] = {.lex_state = 429}, - [6524] = {.lex_state = 468, .external_lex_state = 115}, - [6525] = {.lex_state = 468, .external_lex_state = 115}, - [6526] = {.lex_state = 429}, - [6527] = {.lex_state = 429}, - [6528] = {.lex_state = 470, .external_lex_state = 117}, - [6529] = {.lex_state = 429}, - [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}, - [6540] = {.lex_state = 429}, - [6541] = {.lex_state = 540}, - [6542] = {.lex_state = 429}, - [6543] = {.lex_state = 470, .external_lex_state = 117}, - [6544] = {.lex_state = 429}, - [6545] = {.lex_state = 540}, - [6546] = {.lex_state = 540}, - [6547] = {.lex_state = 429}, - [6548] = {.lex_state = 429}, - [6549] = {.lex_state = 429}, - [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}, - [6557] = {.lex_state = 429}, - [6558] = {.lex_state = 429}, - [6559] = {.lex_state = 482}, - [6560] = {.lex_state = 429}, - [6561] = {.lex_state = 540}, - [6562] = {.lex_state = 427}, - [6563] = {.lex_state = 429}, - [6564] = {.lex_state = 429}, - [6565] = {.lex_state = 429}, - [6566] = {.lex_state = 429}, - [6567] = {.lex_state = 399, .external_lex_state = 115}, - [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}, - [6595] = {.lex_state = 482}, - [6596] = {.lex_state = 429}, - [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}, - [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}, - [6620] = {.lex_state = 540}, - [6621] = {.lex_state = 429}, - [6622] = {.lex_state = 540}, - [6623] = {.lex_state = 468, .external_lex_state = 115}, - [6624] = {.lex_state = 482}, - [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}, - [6637] = {.lex_state = 468}, - [6638] = {.lex_state = 470, .external_lex_state = 114}, - [6639] = {.lex_state = 414, .external_lex_state = 127}, - [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}, - [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}, - [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}, - [6670] = {.lex_state = 470, .external_lex_state = 114}, - [6671] = {.lex_state = 470, .external_lex_state = 114}, - [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}, - [6690] = {.lex_state = 429}, - [6691] = {.lex_state = 470, .external_lex_state = 114}, - [6692] = {.lex_state = 427}, - [6693] = {.lex_state = 468}, - [6694] = {.lex_state = 470, .external_lex_state = 114}, - [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}, - [6706] = {.lex_state = 540}, - [6707] = {.lex_state = 434, .external_lex_state = 114}, - [6708] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [6716] = {.lex_state = 434, .external_lex_state = 114}, - [6717] = {.lex_state = 434, .external_lex_state = 114}, - [6718] = {.lex_state = 540}, - [6719] = {.lex_state = 427}, - [6720] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [6727] = {.lex_state = 540}, - [6728] = {.lex_state = 427}, - [6729] = {.lex_state = 156, .external_lex_state = 119}, - [6730] = {.lex_state = 540}, - [6731] = {.lex_state = 540}, - [6732] = {.lex_state = 435}, - [6733] = {.lex_state = 540}, - [6734] = {.lex_state = 480}, - [6735] = {.lex_state = 435}, - [6736] = {.lex_state = 434, .external_lex_state = 114}, - [6737] = {.lex_state = 427}, - [6738] = {.lex_state = 540}, - [6739] = {.lex_state = 540}, - [6740] = {.lex_state = 540}, - [6741] = {.lex_state = 434, .external_lex_state = 114}, - [6742] = {.lex_state = 540}, - [6743] = {.lex_state = 435}, - [6744] = {.lex_state = 540}, - [6745] = {.lex_state = 540}, - [6746] = {.lex_state = 427}, - [6747] = {.lex_state = 540}, - [6748] = {.lex_state = 540}, - [6749] = {.lex_state = 434, .external_lex_state = 114}, - [6750] = {.lex_state = 435}, - [6751] = {.lex_state = 540}, - [6752] = {.lex_state = 434, .external_lex_state = 114}, - [6753] = {.lex_state = 540}, - [6754] = {.lex_state = 540}, - [6755] = {.lex_state = 427}, - [6756] = {.lex_state = 434, .external_lex_state = 114}, - [6757] = {.lex_state = 540}, - [6758] = {.lex_state = 540}, - [6759] = {.lex_state = 156, .external_lex_state = 119}, - [6760] = {.lex_state = 540}, - [6761] = {.lex_state = 540}, - [6762] = {.lex_state = 540}, - [6763] = {.lex_state = 427, .external_lex_state = 125}, - [6764] = {.lex_state = 427}, - [6765] = {.lex_state = 435}, - [6766] = {.lex_state = 434, .external_lex_state = 114}, - [6767] = {.lex_state = 540}, - [6768] = {.lex_state = 434, .external_lex_state = 114}, - [6769] = {.lex_state = 427, .external_lex_state = 125}, - [6770] = {.lex_state = 434, .external_lex_state = 114}, - [6771] = {.lex_state = 435}, - [6772] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [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}, - [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}, - [6791] = {.lex_state = 540}, - [6792] = {.lex_state = 427, .external_lex_state = 125}, - [6793] = {.lex_state = 540}, - [6794] = {.lex_state = 427}, - [6795] = {.lex_state = 540}, - [6796] = {.lex_state = 540}, - [6797] = {.lex_state = 434, .external_lex_state = 114}, - [6798] = {.lex_state = 435}, - [6799] = {.lex_state = 434, .external_lex_state = 114}, - [6800] = {.lex_state = 435}, - [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}, - [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}, - [6815] = {.lex_state = 427}, - [6816] = {.lex_state = 540}, - [6817] = {.lex_state = 403}, - [6818] = {.lex_state = 540}, - [6819] = {.lex_state = 434, .external_lex_state = 114}, - [6820] = {.lex_state = 480}, - [6821] = {.lex_state = 427, .external_lex_state = 125}, - [6822] = {.lex_state = 427}, - [6823] = {.lex_state = 427, .external_lex_state = 125}, - [6824] = {.lex_state = 540}, - [6825] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [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}, - [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}, - [6848] = {.lex_state = 540}, - [6849] = {.lex_state = 435}, - [6850] = {.lex_state = 427}, - [6851] = {.lex_state = 540}, - [6852] = {.lex_state = 540}, - [6853] = {.lex_state = 435}, - [6854] = {.lex_state = 540}, - [6855] = {.lex_state = 540}, - [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}, - [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}, - [6868] = {.lex_state = 434, .external_lex_state = 114}, - [6869] = {.lex_state = 540}, - [6870] = {.lex_state = 427}, - [6871] = {.lex_state = 427}, - [6872] = {.lex_state = 540}, - [6873] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [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}, - [6892] = {.lex_state = 427}, - [6893] = {.lex_state = 540}, - [6894] = {.lex_state = 435}, - [6895] = {.lex_state = 156, .external_lex_state = 119}, - [6896] = {.lex_state = 540}, - [6897] = {.lex_state = 434, .external_lex_state = 114}, - [6898] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [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}, - [6913] = {.lex_state = 427}, - [6914] = {.lex_state = 540}, - [6915] = {.lex_state = 434, .external_lex_state = 114}, - [6916] = {.lex_state = 540}, - [6917] = {.lex_state = 434, .external_lex_state = 114}, - [6918] = {.lex_state = 540}, - [6919] = {.lex_state = 403}, - [6920] = {.lex_state = 427}, - [6921] = {.lex_state = 156, .external_lex_state = 119}, - [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}, - [6927] = {.lex_state = 427}, - [6928] = {.lex_state = 540, .external_lex_state = 130}, - [6929] = {.lex_state = 540}, - [6930] = {.lex_state = 540}, - [6931] = {.lex_state = 540}, - [6932] = {.lex_state = 540, .external_lex_state = 129}, - [6933] = {.lex_state = 540}, - [6934] = {.lex_state = 427}, - [6935] = {.lex_state = 435}, - [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}, - [6941] = {.lex_state = 427}, - [6942] = {.lex_state = 435}, - [6943] = {.lex_state = 540}, - [6944] = {.lex_state = 434, .external_lex_state = 114}, - [6945] = {.lex_state = 540}, - [6946] = {.lex_state = 434, .external_lex_state = 114}, - [6947] = {.lex_state = 540}, - [6948] = {.lex_state = 427}, - [6949] = {.lex_state = 540}, - [6950] = {.lex_state = 540}, - [6951] = {.lex_state = 434}, - [6952] = {.lex_state = 156, .external_lex_state = 119}, - [6953] = {.lex_state = 156, .external_lex_state = 119}, - [6954] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [6962] = {.lex_state = 427}, - [6963] = {.lex_state = 540}, - [6964] = {.lex_state = 540}, - [6965] = {.lex_state = 156, .external_lex_state = 119}, - [6966] = {.lex_state = 540}, - [6967] = {.lex_state = 540}, - [6968] = {.lex_state = 540}, - [6969] = {.lex_state = 427}, - [6970] = {.lex_state = 434, .external_lex_state = 114}, - [6971] = {.lex_state = 540}, - [6972] = {.lex_state = 435}, - [6973] = {.lex_state = 435}, - [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}, - [6979] = {.lex_state = 540}, - [6980] = {.lex_state = 434, .external_lex_state = 114}, - [6981] = {.lex_state = 540}, - [6982] = {.lex_state = 540}, - [6983] = {.lex_state = 427}, - [6984] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [6990] = {.lex_state = 427}, - [6991] = {.lex_state = 156, .external_lex_state = 119}, - [6992] = {.lex_state = 434, .external_lex_state = 114}, - [6993] = {.lex_state = 540}, - [6994] = {.lex_state = 540}, - [6995] = {.lex_state = 540}, - [6996] = {.lex_state = 480}, - [6997] = {.lex_state = 427}, - [6998] = {.lex_state = 540}, - [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}, - [7004] = {.lex_state = 427}, - [7005] = {.lex_state = 540}, - [7006] = {.lex_state = 435}, - [7007] = {.lex_state = 540}, - [7008] = {.lex_state = 540}, - [7009] = {.lex_state = 413}, - [7010] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [7017] = {.lex_state = 540}, - [7018] = {.lex_state = 427}, - [7019] = {.lex_state = 427, .external_lex_state = 125}, - [7020] = {.lex_state = 540}, - [7021] = {.lex_state = 435}, - [7022] = {.lex_state = 540}, - [7023] = {.lex_state = 540, .external_lex_state = 129}, - [7024] = {.lex_state = 540, .external_lex_state = 129}, - [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}, - [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}, - [7036] = {.lex_state = 434, .external_lex_state = 114}, - [7037] = {.lex_state = 434, .external_lex_state = 114}, - [7038] = {.lex_state = 435}, - [7039] = {.lex_state = 427}, - [7040] = {.lex_state = 427, .external_lex_state = 125}, - [7041] = {.lex_state = 427, .external_lex_state = 125}, - [7042] = {.lex_state = 540}, - [7043] = {.lex_state = 434, .external_lex_state = 114}, - [7044] = {.lex_state = 540}, - [7045] = {.lex_state = 434, .external_lex_state = 114}, - [7046] = {.lex_state = 427}, - [7047] = {.lex_state = 434, .external_lex_state = 114}, - [7048] = {.lex_state = 540}, - [7049] = {.lex_state = 540}, - [7050] = {.lex_state = 427}, - [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}, - [7058] = {.lex_state = 540}, - [7059] = {.lex_state = 427}, - [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}, - [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}, - [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}, - [7080] = {.lex_state = 540}, - [7081] = {.lex_state = 427}, - [7082] = {.lex_state = 540}, - [7083] = {.lex_state = 540}, - [7084] = {.lex_state = 540}, - [7085] = {.lex_state = 540}, - [7086] = {.lex_state = 434, .external_lex_state = 114}, - [7087] = {.lex_state = 540}, - [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}, - [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}, - [7100] = {.lex_state = 540}, - [7101] = {.lex_state = 540}, - [7102] = {.lex_state = 434, .external_lex_state = 114}, - [7103] = {.lex_state = 540}, - [7104] = {.lex_state = 434, .external_lex_state = 114}, - [7105] = {.lex_state = 434, .external_lex_state = 114}, - [7106] = {.lex_state = 435}, - [7107] = {.lex_state = 434, .external_lex_state = 114}, - [7108] = {.lex_state = 540}, - [7109] = {.lex_state = 540}, - [7110] = {.lex_state = 540}, - [7111] = {.lex_state = 540}, - [7112] = {.lex_state = 403}, - [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}, - [7119] = {.lex_state = 540}, - [7120] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [7128] = {.lex_state = 540}, - [7129] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [7137] = {.lex_state = 429}, - [7138] = {.lex_state = 540}, - [7139] = {.lex_state = 435}, - [7140] = {.lex_state = 480}, - [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}, - [7147] = {.lex_state = 540}, - [7148] = {.lex_state = 434, .external_lex_state = 114}, - [7149] = {.lex_state = 540}, - [7150] = {.lex_state = 540, .external_lex_state = 130}, - [7151] = {.lex_state = 434, .external_lex_state = 114}, - [7152] = {.lex_state = 540}, - [7153] = {.lex_state = 414, .external_lex_state = 128}, - [7154] = {.lex_state = 414, .external_lex_state = 128}, - [7155] = {.lex_state = 435}, - [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}, - [7161] = {.lex_state = 434, .external_lex_state = 114}, - [7162] = {.lex_state = 427, .external_lex_state = 125}, - [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}, - [7167] = {.lex_state = 540}, - [7168] = {.lex_state = 434, .external_lex_state = 114}, - [7169] = {.lex_state = 540}, - [7170] = {.lex_state = 540}, - [7171] = {.lex_state = 540}, - [7172] = {.lex_state = 434, .external_lex_state = 114}, - [7173] = {.lex_state = 480}, - [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}, - [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}, - [7183] = {.lex_state = 540}, - [7184] = {.lex_state = 434, .external_lex_state = 114}, - [7185] = {.lex_state = 540}, - [7186] = {.lex_state = 540}, - [7187] = {.lex_state = 480}, - [7188] = {.lex_state = 427, .external_lex_state = 125}, - [7189] = {.lex_state = 427, .external_lex_state = 125}, - [7190] = {.lex_state = 540}, - [7191] = {.lex_state = 540}, - [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}, - [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}, - [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}, - [7215] = {.lex_state = 540}, - [7216] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [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}, - [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}, - [7236] = {.lex_state = 540}, - [7237] = {.lex_state = 434, .external_lex_state = 114}, - [7238] = {.lex_state = 434, .external_lex_state = 114}, - [7239] = {.lex_state = 540}, - [7240] = {.lex_state = 540}, - [7241] = {.lex_state = 540}, - [7242] = {.lex_state = 540}, - [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}, - [7250] = {.lex_state = 540}, - [7251] = {.lex_state = 434, .external_lex_state = 114}, - [7252] = {.lex_state = 540}, - [7253] = {.lex_state = 156, .external_lex_state = 119}, - [7254] = {.lex_state = 540}, - [7255] = {.lex_state = 434, .external_lex_state = 114}, - [7256] = {.lex_state = 540}, - [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}, - [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}, - [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}, - [7283] = {.lex_state = 540}, - [7284] = {.lex_state = 540}, - [7285] = {.lex_state = 540}, - [7286] = {.lex_state = 540, .external_lex_state = 130}, - [7287] = {.lex_state = 540}, - [7288] = {.lex_state = 540}, - [7289] = {.lex_state = 540}, - [7290] = {.lex_state = 540, .external_lex_state = 130}, - [7291] = {.lex_state = 540}, - [7292] = {.lex_state = 435}, - [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}, - [7306] = {.lex_state = 540}, - [7307] = {.lex_state = 540}, - [7308] = {.lex_state = 427}, - [7309] = {.lex_state = 156, .external_lex_state = 119}, - [7310] = {.lex_state = 540}, - [7311] = {.lex_state = 435}, - [7312] = {.lex_state = 480}, - [7313] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [7320] = {.lex_state = 540}, - [7321] = {.lex_state = 427}, - [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}, - [7328] = {.lex_state = 540}, - [7329] = {.lex_state = 540}, - [7330] = {.lex_state = 540}, - [7331] = {.lex_state = 540}, - [7332] = {.lex_state = 540}, - [7333] = {.lex_state = 540}, - [7334] = {.lex_state = 540}, - [7335] = {.lex_state = 540}, - [7336] = {.lex_state = 540}, - [7337] = {.lex_state = 434, .external_lex_state = 114}, - [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}, - [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}, - [7350] = {.lex_state = 540}, - [7351] = {.lex_state = 540}, - [7352] = {.lex_state = 540}, - [7353] = {.lex_state = 540}, - [7354] = {.lex_state = 540}, - [7355] = {.lex_state = 427}, - [7356] = {.lex_state = 540}, - [7357] = {.lex_state = 540}, - [7358] = {.lex_state = 427}, - [7359] = {.lex_state = 434, .external_lex_state = 114}, - [7360] = {.lex_state = 413}, - [7361] = {.lex_state = 540}, - [7362] = {.lex_state = 427}, - [7363] = {.lex_state = 427}, - [7364] = {.lex_state = 435}, - [7365] = {.lex_state = 434, .external_lex_state = 114}, - [7366] = {.lex_state = 427, .external_lex_state = 125}, - [7367] = {.lex_state = 540}, - [7368] = {.lex_state = 540}, - [7369] = {.lex_state = 429}, - [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}, - [7375] = {.lex_state = 540}, - [7376] = {.lex_state = 540}, - [7377] = {.lex_state = 540}, - [7378] = {.lex_state = 540}, - [7379] = {.lex_state = 427}, - [7380] = {.lex_state = 429}, - [7381] = {.lex_state = 427}, - [7382] = {.lex_state = 540}, - [7383] = {.lex_state = 480}, - [7384] = {.lex_state = 427}, - [7385] = {.lex_state = 540}, - [7386] = {.lex_state = 435}, - [7387] = {.lex_state = 540}, - [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}, - [7393] = {.lex_state = 540}, - [7394] = {.lex_state = 540}, - [7395] = {.lex_state = 540}, - [7396] = {.lex_state = 156, .external_lex_state = 119}, - [7397] = {.lex_state = 156, .external_lex_state = 119}, - [7398] = {.lex_state = 540}, - [7399] = {.lex_state = 540}, - [7400] = {.lex_state = 540}, - [7401] = {.lex_state = 427}, - [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}, - [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}, - [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}, - [7434] = {.lex_state = 427}, - [7435] = {.lex_state = 427}, - [7436] = {.lex_state = 427}, - [7437] = {.lex_state = 427}, - [7438] = {.lex_state = 427}, - [7439] = {.lex_state = 427}, - [7440] = {.lex_state = 427}, - [7441] = {.lex_state = 427}, - [7442] = {.lex_state = 427}, - [7443] = {.lex_state = 427}, - [7444] = {.lex_state = 427}, - [7445] = {.lex_state = 427}, - [7446] = {.lex_state = 427}, - [7447] = {.lex_state = 427}, - [7448] = {.lex_state = 427}, - [7449] = {.lex_state = 427}, - [7450] = {.lex_state = 427}, - [7451] = {.lex_state = 427}, - [7452] = {.lex_state = 427}, - [7453] = {.lex_state = 427}, - [7454] = {.lex_state = 427}, - [7455] = {.lex_state = 427}, - [7456] = {.lex_state = 427}, - [7457] = {.lex_state = 427}, - [7458] = {.lex_state = 427}, - [7459] = {.lex_state = 427}, - [7460] = {.lex_state = 427}, - [7461] = {.lex_state = 427}, - [7462] = {.lex_state = 427}, - [7463] = {.lex_state = 427}, - [7464] = {.lex_state = 427}, - [7465] = {.lex_state = 427}, - [7466] = {.lex_state = 427}, - [7467] = {.lex_state = 427}, - [7468] = {.lex_state = 427}, - [7469] = {.lex_state = 427}, - [7470] = {.lex_state = 427}, - [7471] = {.lex_state = 427}, - [7472] = {.lex_state = 427}, - [7473] = {.lex_state = 427}, - [7474] = {.lex_state = 427}, - [7475] = {.lex_state = 427}, - [7476] = {.lex_state = 427}, - [7477] = {.lex_state = 427}, - [7478] = {.lex_state = 427}, - [7479] = {.lex_state = 427}, - [7480] = {.lex_state = 427}, - [7481] = {.lex_state = 427}, - [7482] = {.lex_state = 427}, - [7483] = {.lex_state = 427}, - [7484] = {.lex_state = 427}, - [7485] = {.lex_state = 427}, - [7486] = {.lex_state = 427}, - [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}, - [7494] = {.lex_state = 540}, - [7495] = {.lex_state = 540}, - [7496] = {.lex_state = 427, .external_lex_state = 125}, - [7497] = {.lex_state = 540}, - [7498] = {.lex_state = 540}, - [7499] = {.lex_state = 480}, - [7500] = {.lex_state = 414, .external_lex_state = 128}, - [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}, - [7506] = {.lex_state = 540}, - [7507] = {.lex_state = 434, .external_lex_state = 114}, - [7508] = {.lex_state = 540}, - [7509] = {.lex_state = 427}, - [7510] = {.lex_state = 427}, - [7511] = {.lex_state = 427}, - [7512] = {.lex_state = 427}, - [7513] = {.lex_state = 427}, - [7514] = {.lex_state = 427}, - [7515] = {.lex_state = 427}, - [7516] = {.lex_state = 427}, - [7517] = {.lex_state = 427}, - [7518] = {.lex_state = 427}, - [7519] = {.lex_state = 427}, - [7520] = {.lex_state = 427}, - [7521] = {.lex_state = 427}, - [7522] = {.lex_state = 427}, - [7523] = {.lex_state = 427}, - [7524] = {.lex_state = 427}, - [7525] = {.lex_state = 427}, - [7526] = {.lex_state = 427}, - [7527] = {.lex_state = 427}, - [7528] = {.lex_state = 427}, - [7529] = {.lex_state = 427}, - [7530] = {.lex_state = 427}, - [7531] = {.lex_state = 427}, - [7532] = {.lex_state = 427}, - [7533] = {.lex_state = 427}, - [7534] = {.lex_state = 427}, - [7535] = {.lex_state = 427}, - [7536] = {.lex_state = 427}, - [7537] = {.lex_state = 427}, - [7538] = {.lex_state = 427}, - [7539] = {.lex_state = 427}, - [7540] = {.lex_state = 427}, - [7541] = {.lex_state = 427}, - [7542] = {.lex_state = 427}, - [7543] = {.lex_state = 427}, - [7544] = {.lex_state = 427}, - [7545] = {.lex_state = 427}, - [7546] = {.lex_state = 427}, - [7547] = {.lex_state = 427}, - [7548] = {.lex_state = 427}, - [7549] = {.lex_state = 427}, - [7550] = {.lex_state = 427}, - [7551] = {.lex_state = 427}, - [7552] = {.lex_state = 427}, - [7553] = {.lex_state = 427}, - [7554] = {.lex_state = 427}, - [7555] = {.lex_state = 427}, - [7556] = {.lex_state = 427}, - [7557] = {.lex_state = 427}, - [7558] = {.lex_state = 427}, - [7559] = {.lex_state = 427}, - [7560] = {.lex_state = 427}, - [7561] = {.lex_state = 427}, - [7562] = {.lex_state = 427}, - [7563] = {.lex_state = 427}, - [7564] = {.lex_state = 427}, - [7565] = {.lex_state = 427}, - [7566] = {.lex_state = 427}, - [7567] = {.lex_state = 427}, - [7568] = {.lex_state = 427}, - [7569] = {.lex_state = 427}, - [7570] = {.lex_state = 434, .external_lex_state = 114}, + [14] = {.lex_state = 588, .external_lex_state = 2}, + [15] = {.lex_state = 588, .external_lex_state = 2}, + [16] = {.lex_state = 588, .external_lex_state = 2}, + [17] = {.lex_state = 588, .external_lex_state = 2}, + [18] = {.lex_state = 588, .external_lex_state = 2}, + [19] = {.lex_state = 588, .external_lex_state = 2}, + [20] = {.lex_state = 588, .external_lex_state = 2}, + [21] = {.lex_state = 588, .external_lex_state = 2}, + [22] = {.lex_state = 451, .external_lex_state = 5}, + [23] = {.lex_state = 451, .external_lex_state = 5}, + [24] = {.lex_state = 451, .external_lex_state = 5}, + [25] = {.lex_state = 451, .external_lex_state = 5}, + [26] = {.lex_state = 451, .external_lex_state = 5}, + [27] = {.lex_state = 451, .external_lex_state = 5}, + [28] = {.lex_state = 451, .external_lex_state = 5}, + [29] = {.lex_state = 451, .external_lex_state = 5}, + [30] = {.lex_state = 451, .external_lex_state = 5}, + [31] = {.lex_state = 451, .external_lex_state = 5}, + [32] = {.lex_state = 451, .external_lex_state = 5}, + [33] = {.lex_state = 435, .external_lex_state = 6}, + [34] = {.lex_state = 588, .external_lex_state = 2}, + [35] = {.lex_state = 451, .external_lex_state = 5}, + [36] = {.lex_state = 588, .external_lex_state = 2}, + [37] = {.lex_state = 588, .external_lex_state = 2}, + [38] = {.lex_state = 588, .external_lex_state = 2}, + [39] = {.lex_state = 588, .external_lex_state = 2}, + [40] = {.lex_state = 588, .external_lex_state = 2}, + [41] = {.lex_state = 588, .external_lex_state = 2}, + [42] = {.lex_state = 588, .external_lex_state = 2}, + [43] = {.lex_state = 588, .external_lex_state = 2}, + [44] = {.lex_state = 588, .external_lex_state = 2}, + [45] = {.lex_state = 588, .external_lex_state = 2}, + [46] = {.lex_state = 588, .external_lex_state = 2}, + [47] = {.lex_state = 588, .external_lex_state = 2}, + [48] = {.lex_state = 588, .external_lex_state = 2}, + [49] = {.lex_state = 588, .external_lex_state = 2}, + [50] = {.lex_state = 588, .external_lex_state = 2}, + [51] = {.lex_state = 588, .external_lex_state = 2}, + [52] = {.lex_state = 588, .external_lex_state = 2}, + [53] = {.lex_state = 588, .external_lex_state = 2}, + [54] = {.lex_state = 588, .external_lex_state = 2}, + [55] = {.lex_state = 588, .external_lex_state = 2}, + [56] = {.lex_state = 588, .external_lex_state = 2}, + [57] = {.lex_state = 588, .external_lex_state = 2}, + [58] = {.lex_state = 588, .external_lex_state = 2}, + [59] = {.lex_state = 588, .external_lex_state = 2}, + [60] = {.lex_state = 588, .external_lex_state = 2}, + [61] = {.lex_state = 588, .external_lex_state = 2}, + [62] = {.lex_state = 588, .external_lex_state = 2}, + [63] = {.lex_state = 452, .external_lex_state = 2}, + [64] = {.lex_state = 588, .external_lex_state = 2}, + [65] = {.lex_state = 452, .external_lex_state = 2}, + [66] = {.lex_state = 588, .external_lex_state = 2}, + [67] = {.lex_state = 452, .external_lex_state = 2}, + [68] = {.lex_state = 452, .external_lex_state = 2}, + [69] = {.lex_state = 588, .external_lex_state = 2}, + [70] = {.lex_state = 452, .external_lex_state = 2}, + [71] = {.lex_state = 588, .external_lex_state = 2}, + [72] = {.lex_state = 452, .external_lex_state = 2}, + [73] = {.lex_state = 588, .external_lex_state = 2}, + [74] = {.lex_state = 588, .external_lex_state = 2}, + [75] = {.lex_state = 452, .external_lex_state = 2}, + [76] = {.lex_state = 452, .external_lex_state = 2}, + [77] = {.lex_state = 588, .external_lex_state = 2}, + [78] = {.lex_state = 588, .external_lex_state = 2}, + [79] = {.lex_state = 452, .external_lex_state = 2}, + [80] = {.lex_state = 588, .external_lex_state = 2}, + [81] = {.lex_state = 588, .external_lex_state = 2}, + [82] = {.lex_state = 588, .external_lex_state = 2}, + [83] = {.lex_state = 452, .external_lex_state = 2}, + [84] = {.lex_state = 452, .external_lex_state = 2}, + [85] = {.lex_state = 588, .external_lex_state = 2}, + [86] = {.lex_state = 588, .external_lex_state = 2}, + [87] = {.lex_state = 452, .external_lex_state = 2}, + [88] = {.lex_state = 588, .external_lex_state = 2}, + [89] = {.lex_state = 452, .external_lex_state = 2}, + [90] = {.lex_state = 588, .external_lex_state = 2}, + [91] = {.lex_state = 588, .external_lex_state = 2}, + [92] = {.lex_state = 452, .external_lex_state = 2}, + [93] = {.lex_state = 588, .external_lex_state = 2}, + [94] = {.lex_state = 452, .external_lex_state = 2}, + [95] = {.lex_state = 588, .external_lex_state = 2}, + [96] = {.lex_state = 588, .external_lex_state = 2}, + [97] = {.lex_state = 452, .external_lex_state = 2}, + [98] = {.lex_state = 452, .external_lex_state = 2}, + [99] = {.lex_state = 588, .external_lex_state = 2}, + [100] = {.lex_state = 588, .external_lex_state = 2}, + [101] = {.lex_state = 588, .external_lex_state = 2}, + [102] = {.lex_state = 452, .external_lex_state = 2}, + [103] = {.lex_state = 588, .external_lex_state = 2}, + [104] = {.lex_state = 588, .external_lex_state = 2}, + [105] = {.lex_state = 588, .external_lex_state = 2}, + [106] = {.lex_state = 588, .external_lex_state = 2}, + [107] = {.lex_state = 588, .external_lex_state = 2}, + [108] = {.lex_state = 588, .external_lex_state = 2}, + [109] = {.lex_state = 588, .external_lex_state = 2}, + [110] = {.lex_state = 588, .external_lex_state = 2}, + [111] = {.lex_state = 588, .external_lex_state = 2}, + [112] = {.lex_state = 588, .external_lex_state = 2}, + [113] = {.lex_state = 588, .external_lex_state = 2}, + [114] = {.lex_state = 588, .external_lex_state = 2}, + [115] = {.lex_state = 588, .external_lex_state = 2}, + [116] = {.lex_state = 588, .external_lex_state = 2}, + [117] = {.lex_state = 588, .external_lex_state = 2}, + [118] = {.lex_state = 588, .external_lex_state = 2}, + [119] = {.lex_state = 588, .external_lex_state = 2}, + [120] = {.lex_state = 588, .external_lex_state = 2}, + [121] = {.lex_state = 588, .external_lex_state = 2}, + [122] = {.lex_state = 588, .external_lex_state = 2}, + [123] = {.lex_state = 588, .external_lex_state = 2}, + [124] = {.lex_state = 588, .external_lex_state = 2}, + [125] = {.lex_state = 588, .external_lex_state = 2}, + [126] = {.lex_state = 588, .external_lex_state = 2}, + [127] = {.lex_state = 588, .external_lex_state = 2}, + [128] = {.lex_state = 588, .external_lex_state = 2}, + [129] = {.lex_state = 588, .external_lex_state = 2}, + [130] = {.lex_state = 588, .external_lex_state = 2}, + [131] = {.lex_state = 588, .external_lex_state = 2}, + [132] = {.lex_state = 588, .external_lex_state = 2}, + [133] = {.lex_state = 588, .external_lex_state = 2}, + [134] = {.lex_state = 588, .external_lex_state = 2}, + [135] = {.lex_state = 588, .external_lex_state = 2}, + [136] = {.lex_state = 588, .external_lex_state = 2}, + [137] = {.lex_state = 588, .external_lex_state = 2}, + [138] = {.lex_state = 588, .external_lex_state = 2}, + [139] = {.lex_state = 588, .external_lex_state = 2}, + [140] = {.lex_state = 588, .external_lex_state = 2}, + [141] = {.lex_state = 588, .external_lex_state = 2}, + [142] = {.lex_state = 588, .external_lex_state = 2}, + [143] = {.lex_state = 588, .external_lex_state = 2}, + [144] = {.lex_state = 588, .external_lex_state = 2}, + [145] = {.lex_state = 588, .external_lex_state = 2}, + [146] = {.lex_state = 588, .external_lex_state = 2}, + [147] = {.lex_state = 588, .external_lex_state = 2}, + [148] = {.lex_state = 588, .external_lex_state = 2}, + [149] = {.lex_state = 588, .external_lex_state = 2}, + [150] = {.lex_state = 588, .external_lex_state = 2}, + [151] = {.lex_state = 588, .external_lex_state = 2}, + [152] = {.lex_state = 588, .external_lex_state = 2}, + [153] = {.lex_state = 588, .external_lex_state = 2}, + [154] = {.lex_state = 588, .external_lex_state = 2}, + [155] = {.lex_state = 588, .external_lex_state = 2}, + [156] = {.lex_state = 588, .external_lex_state = 2}, + [157] = {.lex_state = 588, .external_lex_state = 2}, + [158] = {.lex_state = 588, .external_lex_state = 2}, + [159] = {.lex_state = 588, .external_lex_state = 2}, + [160] = {.lex_state = 588, .external_lex_state = 2}, + [161] = {.lex_state = 588, .external_lex_state = 2}, + [162] = {.lex_state = 588, .external_lex_state = 2}, + [163] = {.lex_state = 588, .external_lex_state = 2}, + [164] = {.lex_state = 588, .external_lex_state = 2}, + [165] = {.lex_state = 588, .external_lex_state = 2}, + [166] = {.lex_state = 588, .external_lex_state = 2}, + [167] = {.lex_state = 588, .external_lex_state = 2}, + [168] = {.lex_state = 588, .external_lex_state = 2}, + [169] = {.lex_state = 588, .external_lex_state = 2}, + [170] = {.lex_state = 588, .external_lex_state = 2}, + [171] = {.lex_state = 588, .external_lex_state = 2}, + [172] = {.lex_state = 588, .external_lex_state = 2}, + [173] = {.lex_state = 588, .external_lex_state = 2}, + [174] = {.lex_state = 588, .external_lex_state = 2}, + [175] = {.lex_state = 588, .external_lex_state = 2}, + [176] = {.lex_state = 588, .external_lex_state = 2}, + [177] = {.lex_state = 588, .external_lex_state = 2}, + [178] = {.lex_state = 588, .external_lex_state = 2}, + [179] = {.lex_state = 588, .external_lex_state = 2}, + [180] = {.lex_state = 588, .external_lex_state = 2}, + [181] = {.lex_state = 588, .external_lex_state = 2}, + [182] = {.lex_state = 588, .external_lex_state = 2}, + [183] = {.lex_state = 588, .external_lex_state = 2}, + [184] = {.lex_state = 588, .external_lex_state = 2}, + [185] = {.lex_state = 588, .external_lex_state = 2}, + [186] = {.lex_state = 588, .external_lex_state = 2}, + [187] = {.lex_state = 588, .external_lex_state = 2}, + [188] = {.lex_state = 588, .external_lex_state = 2}, + [189] = {.lex_state = 588, .external_lex_state = 2}, + [190] = {.lex_state = 588, .external_lex_state = 2}, + [191] = {.lex_state = 588, .external_lex_state = 2}, + [192] = {.lex_state = 588, .external_lex_state = 2}, + [193] = {.lex_state = 588, .external_lex_state = 2}, + [194] = {.lex_state = 588, .external_lex_state = 2}, + [195] = {.lex_state = 588, .external_lex_state = 2}, + [196] = {.lex_state = 588, .external_lex_state = 2}, + [197] = {.lex_state = 588, .external_lex_state = 2}, + [198] = {.lex_state = 588, .external_lex_state = 2}, + [199] = {.lex_state = 588, .external_lex_state = 2}, + [200] = {.lex_state = 588, .external_lex_state = 2}, + [201] = {.lex_state = 588, .external_lex_state = 2}, + [202] = {.lex_state = 588, .external_lex_state = 2}, + [203] = {.lex_state = 588, .external_lex_state = 2}, + [204] = {.lex_state = 588, .external_lex_state = 2}, + [205] = {.lex_state = 588, .external_lex_state = 2}, + [206] = {.lex_state = 588, .external_lex_state = 2}, + [207] = {.lex_state = 588, .external_lex_state = 2}, + [208] = {.lex_state = 588, .external_lex_state = 2}, + [209] = {.lex_state = 588, .external_lex_state = 2}, + [210] = {.lex_state = 588, .external_lex_state = 2}, + [211] = {.lex_state = 588, .external_lex_state = 2}, + [212] = {.lex_state = 588, .external_lex_state = 2}, + [213] = {.lex_state = 588, .external_lex_state = 2}, + [214] = {.lex_state = 588, .external_lex_state = 2}, + [215] = {.lex_state = 588, .external_lex_state = 2}, + [216] = {.lex_state = 588, .external_lex_state = 2}, + [217] = {.lex_state = 588, .external_lex_state = 2}, + [218] = {.lex_state = 588, .external_lex_state = 2}, + [219] = {.lex_state = 588, .external_lex_state = 2}, + [220] = {.lex_state = 588, .external_lex_state = 2}, + [221] = {.lex_state = 588, .external_lex_state = 2}, + [222] = {.lex_state = 588, .external_lex_state = 2}, + [223] = {.lex_state = 588, .external_lex_state = 2}, + [224] = {.lex_state = 588, .external_lex_state = 2}, + [225] = {.lex_state = 588, .external_lex_state = 2}, + [226] = {.lex_state = 588, .external_lex_state = 2}, + [227] = {.lex_state = 588, .external_lex_state = 2}, + [228] = {.lex_state = 588, .external_lex_state = 2}, + [229] = {.lex_state = 588, .external_lex_state = 2}, + [230] = {.lex_state = 588, .external_lex_state = 2}, + [231] = {.lex_state = 588, .external_lex_state = 2}, + [232] = {.lex_state = 588, .external_lex_state = 2}, + [233] = {.lex_state = 588, .external_lex_state = 2}, + [234] = {.lex_state = 588, .external_lex_state = 2}, + [235] = {.lex_state = 588, .external_lex_state = 2}, + [236] = {.lex_state = 588, .external_lex_state = 2}, + [237] = {.lex_state = 588, .external_lex_state = 2}, + [238] = {.lex_state = 588, .external_lex_state = 2}, + [239] = {.lex_state = 588, .external_lex_state = 2}, + [240] = {.lex_state = 588, .external_lex_state = 2}, + [241] = {.lex_state = 588, .external_lex_state = 2}, + [242] = {.lex_state = 588, .external_lex_state = 2}, + [243] = {.lex_state = 588, .external_lex_state = 2}, + [244] = {.lex_state = 588, .external_lex_state = 2}, + [245] = {.lex_state = 588, .external_lex_state = 2}, + [246] = {.lex_state = 588, .external_lex_state = 2}, + [247] = {.lex_state = 588, .external_lex_state = 2}, + [248] = {.lex_state = 588, .external_lex_state = 2}, + [249] = {.lex_state = 588, .external_lex_state = 2}, + [250] = {.lex_state = 588, .external_lex_state = 2}, + [251] = {.lex_state = 588, .external_lex_state = 2}, + [252] = {.lex_state = 588, .external_lex_state = 2}, + [253] = {.lex_state = 588, .external_lex_state = 2}, + [254] = {.lex_state = 588, .external_lex_state = 2}, + [255] = {.lex_state = 588, .external_lex_state = 2}, + [256] = {.lex_state = 588, .external_lex_state = 2}, + [257] = {.lex_state = 588, .external_lex_state = 2}, + [258] = {.lex_state = 588, .external_lex_state = 2}, + [259] = {.lex_state = 588, .external_lex_state = 2}, + [260] = {.lex_state = 588, .external_lex_state = 2}, + [261] = {.lex_state = 588, .external_lex_state = 2}, + [262] = {.lex_state = 588, .external_lex_state = 2}, + [263] = {.lex_state = 588, .external_lex_state = 2}, + [264] = {.lex_state = 588, .external_lex_state = 2}, + [265] = {.lex_state = 588, .external_lex_state = 2}, + [266] = {.lex_state = 588, .external_lex_state = 2}, + [267] = {.lex_state = 588, .external_lex_state = 2}, + [268] = {.lex_state = 588, .external_lex_state = 2}, + [269] = {.lex_state = 588, .external_lex_state = 2}, + [270] = {.lex_state = 588, .external_lex_state = 2}, + [271] = {.lex_state = 588, .external_lex_state = 2}, + [272] = {.lex_state = 588, .external_lex_state = 2}, + [273] = {.lex_state = 588, .external_lex_state = 2}, + [274] = {.lex_state = 588, .external_lex_state = 2}, + [275] = {.lex_state = 588, .external_lex_state = 2}, + [276] = {.lex_state = 588, .external_lex_state = 2}, + [277] = {.lex_state = 588, .external_lex_state = 2}, + [278] = {.lex_state = 588, .external_lex_state = 2}, + [279] = {.lex_state = 588, .external_lex_state = 2}, + [280] = {.lex_state = 588, .external_lex_state = 2}, + [281] = {.lex_state = 588, .external_lex_state = 2}, + [282] = {.lex_state = 588, .external_lex_state = 2}, + [283] = {.lex_state = 588, .external_lex_state = 2}, + [284] = {.lex_state = 588, .external_lex_state = 2}, + [285] = {.lex_state = 588, .external_lex_state = 2}, + [286] = {.lex_state = 588, .external_lex_state = 2}, + [287] = {.lex_state = 588, .external_lex_state = 2}, + [288] = {.lex_state = 588, .external_lex_state = 2}, + [289] = {.lex_state = 588, .external_lex_state = 2}, + [290] = {.lex_state = 588, .external_lex_state = 2}, + [291] = {.lex_state = 588, .external_lex_state = 2}, + [292] = {.lex_state = 588, .external_lex_state = 2}, + [293] = {.lex_state = 588, .external_lex_state = 2}, + [294] = {.lex_state = 588, .external_lex_state = 2}, + [295] = {.lex_state = 588, .external_lex_state = 2}, + [296] = {.lex_state = 588, .external_lex_state = 2}, + [297] = {.lex_state = 588, .external_lex_state = 2}, + [298] = {.lex_state = 588, .external_lex_state = 2}, + [299] = {.lex_state = 588, .external_lex_state = 2}, + [300] = {.lex_state = 588, .external_lex_state = 2}, + [301] = {.lex_state = 588, .external_lex_state = 2}, + [302] = {.lex_state = 588, .external_lex_state = 2}, + [303] = {.lex_state = 588, .external_lex_state = 2}, + [304] = {.lex_state = 588, .external_lex_state = 2}, + [305] = {.lex_state = 588, .external_lex_state = 2}, + [306] = {.lex_state = 588, .external_lex_state = 2}, + [307] = {.lex_state = 588, .external_lex_state = 2}, + [308] = {.lex_state = 588, .external_lex_state = 2}, + [309] = {.lex_state = 588, .external_lex_state = 2}, + [310] = {.lex_state = 588, .external_lex_state = 2}, + [311] = {.lex_state = 588, .external_lex_state = 2}, + [312] = {.lex_state = 588, .external_lex_state = 2}, + [313] = {.lex_state = 588, .external_lex_state = 2}, + [314] = {.lex_state = 588, .external_lex_state = 2}, + [315] = {.lex_state = 588, .external_lex_state = 2}, + [316] = {.lex_state = 588, .external_lex_state = 2}, + [317] = {.lex_state = 588, .external_lex_state = 2}, + [318] = {.lex_state = 588, .external_lex_state = 2}, + [319] = {.lex_state = 588, .external_lex_state = 2}, + [320] = {.lex_state = 588, .external_lex_state = 2}, + [321] = {.lex_state = 588, .external_lex_state = 2}, + [322] = {.lex_state = 588, .external_lex_state = 2}, + [323] = {.lex_state = 588, .external_lex_state = 2}, + [324] = {.lex_state = 588, .external_lex_state = 2}, + [325] = {.lex_state = 588, .external_lex_state = 2}, + [326] = {.lex_state = 588, .external_lex_state = 2}, + [327] = {.lex_state = 588, .external_lex_state = 2}, + [328] = {.lex_state = 588, .external_lex_state = 2}, + [329] = {.lex_state = 588, .external_lex_state = 2}, + [330] = {.lex_state = 588, .external_lex_state = 2}, + [331] = {.lex_state = 588, .external_lex_state = 2}, + [332] = {.lex_state = 588, .external_lex_state = 2}, + [333] = {.lex_state = 588, .external_lex_state = 2}, + [334] = {.lex_state = 588, .external_lex_state = 2}, + [335] = {.lex_state = 588, .external_lex_state = 2}, + [336] = {.lex_state = 588, .external_lex_state = 2}, + [337] = {.lex_state = 588, .external_lex_state = 2}, + [338] = {.lex_state = 588, .external_lex_state = 2}, + [339] = {.lex_state = 588, .external_lex_state = 2}, + [340] = {.lex_state = 588, .external_lex_state = 2}, + [341] = {.lex_state = 588, .external_lex_state = 2}, + [342] = {.lex_state = 588, .external_lex_state = 2}, + [343] = {.lex_state = 588, .external_lex_state = 2}, + [344] = {.lex_state = 588, .external_lex_state = 2}, + [345] = {.lex_state = 588, .external_lex_state = 2}, + [346] = {.lex_state = 588, .external_lex_state = 2}, + [347] = {.lex_state = 588, .external_lex_state = 2}, + [348] = {.lex_state = 588, .external_lex_state = 2}, + [349] = {.lex_state = 588, .external_lex_state = 2}, + [350] = {.lex_state = 588, .external_lex_state = 2}, + [351] = {.lex_state = 588, .external_lex_state = 2}, + [352] = {.lex_state = 588, .external_lex_state = 2}, + [353] = {.lex_state = 588, .external_lex_state = 2}, + [354] = {.lex_state = 588, .external_lex_state = 2}, + [355] = {.lex_state = 588, .external_lex_state = 2}, + [356] = {.lex_state = 588, .external_lex_state = 2}, + [357] = {.lex_state = 588, .external_lex_state = 2}, + [358] = {.lex_state = 588, .external_lex_state = 2}, + [359] = {.lex_state = 588, .external_lex_state = 2}, + [360] = {.lex_state = 588, .external_lex_state = 2}, + [361] = {.lex_state = 588, .external_lex_state = 2}, + [362] = {.lex_state = 588, .external_lex_state = 2}, + [363] = {.lex_state = 588, .external_lex_state = 2}, + [364] = {.lex_state = 588, .external_lex_state = 2}, + [365] = {.lex_state = 588, .external_lex_state = 2}, + [366] = {.lex_state = 588, .external_lex_state = 2}, + [367] = {.lex_state = 588, .external_lex_state = 2}, + [368] = {.lex_state = 588, .external_lex_state = 2}, + [369] = {.lex_state = 588, .external_lex_state = 2}, + [370] = {.lex_state = 588, .external_lex_state = 2}, + [371] = {.lex_state = 588, .external_lex_state = 2}, + [372] = {.lex_state = 588, .external_lex_state = 2}, + [373] = {.lex_state = 588, .external_lex_state = 2}, + [374] = {.lex_state = 588, .external_lex_state = 2}, + [375] = {.lex_state = 588, .external_lex_state = 2}, + [376] = {.lex_state = 588, .external_lex_state = 2}, + [377] = {.lex_state = 588, .external_lex_state = 2}, + [378] = {.lex_state = 588, .external_lex_state = 2}, + [379] = {.lex_state = 588, .external_lex_state = 2}, + [380] = {.lex_state = 588, .external_lex_state = 2}, + [381] = {.lex_state = 588, .external_lex_state = 2}, + [382] = {.lex_state = 588, .external_lex_state = 2}, + [383] = {.lex_state = 588, .external_lex_state = 2}, + [384] = {.lex_state = 588, .external_lex_state = 2}, + [385] = {.lex_state = 588, .external_lex_state = 2}, + [386] = {.lex_state = 588, .external_lex_state = 2}, + [387] = {.lex_state = 588, .external_lex_state = 2}, + [388] = {.lex_state = 588, .external_lex_state = 2}, + [389] = {.lex_state = 588, .external_lex_state = 2}, + [390] = {.lex_state = 588, .external_lex_state = 2}, + [391] = {.lex_state = 588, .external_lex_state = 2}, + [392] = {.lex_state = 588, .external_lex_state = 2}, + [393] = {.lex_state = 588, .external_lex_state = 2}, + [394] = {.lex_state = 588, .external_lex_state = 2}, + [395] = {.lex_state = 588, .external_lex_state = 2}, + [396] = {.lex_state = 588, .external_lex_state = 2}, + [397] = {.lex_state = 588, .external_lex_state = 2}, + [398] = {.lex_state = 588, .external_lex_state = 2}, + [399] = {.lex_state = 588, .external_lex_state = 2}, + [400] = {.lex_state = 588, .external_lex_state = 2}, + [401] = {.lex_state = 588, .external_lex_state = 2}, + [402] = {.lex_state = 588, .external_lex_state = 2}, + [403] = {.lex_state = 588, .external_lex_state = 2}, + [404] = {.lex_state = 588, .external_lex_state = 2}, + [405] = {.lex_state = 588, .external_lex_state = 2}, + [406] = {.lex_state = 588, .external_lex_state = 2}, + [407] = {.lex_state = 588, .external_lex_state = 2}, + [408] = {.lex_state = 588, .external_lex_state = 2}, + [409] = {.lex_state = 588, .external_lex_state = 2}, + [410] = {.lex_state = 588, .external_lex_state = 2}, + [411] = {.lex_state = 588, .external_lex_state = 2}, + [412] = {.lex_state = 588, .external_lex_state = 2}, + [413] = {.lex_state = 588, .external_lex_state = 2}, + [414] = {.lex_state = 588, .external_lex_state = 2}, + [415] = {.lex_state = 588, .external_lex_state = 2}, + [416] = {.lex_state = 588, .external_lex_state = 2}, + [417] = {.lex_state = 588, .external_lex_state = 2}, + [418] = {.lex_state = 588, .external_lex_state = 2}, + [419] = {.lex_state = 588, .external_lex_state = 2}, + [420] = {.lex_state = 588, .external_lex_state = 2}, + [421] = {.lex_state = 588, .external_lex_state = 2}, + [422] = {.lex_state = 588, .external_lex_state = 2}, + [423] = {.lex_state = 588, .external_lex_state = 2}, + [424] = {.lex_state = 588, .external_lex_state = 2}, + [425] = {.lex_state = 588, .external_lex_state = 2}, + [426] = {.lex_state = 588, .external_lex_state = 2}, + [427] = {.lex_state = 588, .external_lex_state = 2}, + [428] = {.lex_state = 588, .external_lex_state = 2}, + [429] = {.lex_state = 588, .external_lex_state = 2}, + [430] = {.lex_state = 588, .external_lex_state = 2}, + [431] = {.lex_state = 588, .external_lex_state = 2}, + [432] = {.lex_state = 588, .external_lex_state = 2}, + [433] = {.lex_state = 588, .external_lex_state = 2}, + [434] = {.lex_state = 588, .external_lex_state = 2}, + [435] = {.lex_state = 588, .external_lex_state = 2}, + [436] = {.lex_state = 588, .external_lex_state = 2}, + [437] = {.lex_state = 588, .external_lex_state = 2}, + [438] = {.lex_state = 588, .external_lex_state = 2}, + [439] = {.lex_state = 588, .external_lex_state = 2}, + [440] = {.lex_state = 588, .external_lex_state = 2}, + [441] = {.lex_state = 588, .external_lex_state = 2}, + [442] = {.lex_state = 452, .external_lex_state = 2}, + [443] = {.lex_state = 588, .external_lex_state = 2}, + [444] = {.lex_state = 588, .external_lex_state = 2}, + [445] = {.lex_state = 588, .external_lex_state = 2}, + [446] = {.lex_state = 588, .external_lex_state = 2}, + [447] = {.lex_state = 588, .external_lex_state = 2}, + [448] = {.lex_state = 588, .external_lex_state = 2}, + [449] = {.lex_state = 588, .external_lex_state = 2}, + [450] = {.lex_state = 588, .external_lex_state = 2}, + [451] = {.lex_state = 588, .external_lex_state = 2}, + [452] = {.lex_state = 588, .external_lex_state = 2}, + [453] = {.lex_state = 588, .external_lex_state = 2}, + [454] = {.lex_state = 588, .external_lex_state = 2}, + [455] = {.lex_state = 588, .external_lex_state = 2}, + [456] = {.lex_state = 588, .external_lex_state = 2}, + [457] = {.lex_state = 588, .external_lex_state = 2}, + [458] = {.lex_state = 588, .external_lex_state = 2}, + [459] = {.lex_state = 588, .external_lex_state = 2}, + [460] = {.lex_state = 588, .external_lex_state = 2}, + [461] = {.lex_state = 588, .external_lex_state = 2}, + [462] = {.lex_state = 588, .external_lex_state = 2}, + [463] = {.lex_state = 588, .external_lex_state = 2}, + [464] = {.lex_state = 588, .external_lex_state = 2}, + [465] = {.lex_state = 588, .external_lex_state = 2}, + [466] = {.lex_state = 588, .external_lex_state = 2}, + [467] = {.lex_state = 588, .external_lex_state = 2}, + [468] = {.lex_state = 588, .external_lex_state = 2}, + [469] = {.lex_state = 588, .external_lex_state = 2}, + [470] = {.lex_state = 588, .external_lex_state = 2}, + [471] = {.lex_state = 588, .external_lex_state = 2}, + [472] = {.lex_state = 588, .external_lex_state = 2}, + [473] = {.lex_state = 588, .external_lex_state = 2}, + [474] = {.lex_state = 588, .external_lex_state = 2}, + [475] = {.lex_state = 588, .external_lex_state = 2}, + [476] = {.lex_state = 588, .external_lex_state = 2}, + [477] = {.lex_state = 588, .external_lex_state = 2}, + [478] = {.lex_state = 438, .external_lex_state = 7}, + [479] = {.lex_state = 438, .external_lex_state = 7}, + [480] = {.lex_state = 438, .external_lex_state = 7}, + [481] = {.lex_state = 436, .external_lex_state = 8}, + [482] = {.lex_state = 439, .external_lex_state = 8}, + [483] = {.lex_state = 438, .external_lex_state = 7}, + [484] = {.lex_state = 438, .external_lex_state = 7}, + [485] = {.lex_state = 438, .external_lex_state = 7}, + [486] = {.lex_state = 438, .external_lex_state = 7}, + [487] = {.lex_state = 437, .external_lex_state = 8}, + [488] = {.lex_state = 438, .external_lex_state = 7}, + [489] = {.lex_state = 436, .external_lex_state = 8}, + [490] = {.lex_state = 12, .external_lex_state = 9}, + [491] = {.lex_state = 12, .external_lex_state = 9}, + [492] = {.lex_state = 434, .external_lex_state = 10}, + [493] = {.lex_state = 434, .external_lex_state = 10}, + [494] = {.lex_state = 159, .external_lex_state = 4}, + [495] = {.lex_state = 159, .external_lex_state = 4}, + [496] = {.lex_state = 159, .external_lex_state = 4}, + [497] = {.lex_state = 159, .external_lex_state = 4}, + [498] = {.lex_state = 159, .external_lex_state = 4}, + [499] = {.lex_state = 159, .external_lex_state = 4}, + [500] = {.lex_state = 159, .external_lex_state = 4}, + [501] = {.lex_state = 159, .external_lex_state = 4}, + [502] = {.lex_state = 159, .external_lex_state = 4}, + [503] = {.lex_state = 159, .external_lex_state = 4}, + [504] = {.lex_state = 159, .external_lex_state = 4}, + [505] = {.lex_state = 159, .external_lex_state = 4}, + [506] = {.lex_state = 159, .external_lex_state = 4}, + [507] = {.lex_state = 159, .external_lex_state = 4}, + [508] = {.lex_state = 159, .external_lex_state = 4}, + [509] = {.lex_state = 159, .external_lex_state = 4}, + [510] = {.lex_state = 159, .external_lex_state = 4}, + [511] = {.lex_state = 159, .external_lex_state = 4}, + [512] = {.lex_state = 159, .external_lex_state = 4}, + [513] = {.lex_state = 159, .external_lex_state = 4}, + [514] = {.lex_state = 159, .external_lex_state = 4}, + [515] = {.lex_state = 159, .external_lex_state = 4}, + [516] = {.lex_state = 159, .external_lex_state = 4}, + [517] = {.lex_state = 159, .external_lex_state = 4}, + [518] = {.lex_state = 159, .external_lex_state = 4}, + [519] = {.lex_state = 249, .external_lex_state = 11}, + [520] = {.lex_state = 249, .external_lex_state = 11}, + [521] = {.lex_state = 456, .external_lex_state = 6}, + [522] = {.lex_state = 456, .external_lex_state = 6}, + [523] = {.lex_state = 249, .external_lex_state = 11}, + [524] = {.lex_state = 456, .external_lex_state = 6}, + [525] = {.lex_state = 456, .external_lex_state = 6}, + [526] = {.lex_state = 456, .external_lex_state = 6}, + [527] = {.lex_state = 249, .external_lex_state = 11}, + [528] = {.lex_state = 456, .external_lex_state = 6}, + [529] = {.lex_state = 456, .external_lex_state = 6}, + [530] = {.lex_state = 456, .external_lex_state = 6}, + [531] = {.lex_state = 456, .external_lex_state = 6}, + [532] = {.lex_state = 456, .external_lex_state = 6}, + [533] = {.lex_state = 456, .external_lex_state = 6}, + [534] = {.lex_state = 456, .external_lex_state = 6}, + [535] = {.lex_state = 456, .external_lex_state = 6}, + [536] = {.lex_state = 456, .external_lex_state = 6}, + [537] = {.lex_state = 456, .external_lex_state = 6}, + [538] = {.lex_state = 456, .external_lex_state = 6}, + [539] = {.lex_state = 456, .external_lex_state = 6}, + [540] = {.lex_state = 456, .external_lex_state = 6}, + [541] = {.lex_state = 456, .external_lex_state = 6}, + [542] = {.lex_state = 456, .external_lex_state = 6}, + [543] = {.lex_state = 456, .external_lex_state = 6}, + [544] = {.lex_state = 456, .external_lex_state = 6}, + [545] = {.lex_state = 456, .external_lex_state = 6}, + [546] = {.lex_state = 456, .external_lex_state = 6}, + [547] = {.lex_state = 456, .external_lex_state = 6}, + [548] = {.lex_state = 457, .external_lex_state = 12}, + [549] = {.lex_state = 457, .external_lex_state = 12}, + [550] = {.lex_state = 457, .external_lex_state = 12}, + [551] = {.lex_state = 457, .external_lex_state = 12}, + [552] = {.lex_state = 453, .external_lex_state = 2}, + [553] = {.lex_state = 453, .external_lex_state = 2}, + [554] = {.lex_state = 252, .external_lex_state = 13}, + [555] = {.lex_state = 252, .external_lex_state = 13}, + [556] = {.lex_state = 255, .external_lex_state = 11}, + [557] = {.lex_state = 255, .external_lex_state = 11}, + [558] = {.lex_state = 566, .external_lex_state = 11}, + [559] = {.lex_state = 252, .external_lex_state = 14}, + [560] = {.lex_state = 261, .external_lex_state = 11}, + [561] = {.lex_state = 252, .external_lex_state = 14}, + [562] = {.lex_state = 566, .external_lex_state = 11}, + [563] = {.lex_state = 252, .external_lex_state = 14}, + [564] = {.lex_state = 566, .external_lex_state = 11}, + [565] = {.lex_state = 566, .external_lex_state = 11}, + [566] = {.lex_state = 261, .external_lex_state = 11}, + [567] = {.lex_state = 231, .external_lex_state = 15}, + [568] = {.lex_state = 255, .external_lex_state = 16}, + [569] = {.lex_state = 264, .external_lex_state = 17}, + [570] = {.lex_state = 255, .external_lex_state = 16}, + [571] = {.lex_state = 255, .external_lex_state = 16}, + [572] = {.lex_state = 231, .external_lex_state = 15}, + [573] = {.lex_state = 264, .external_lex_state = 17}, + [574] = {.lex_state = 566, .external_lex_state = 11}, + [575] = {.lex_state = 566, .external_lex_state = 11}, + [576] = {.lex_state = 264, .external_lex_state = 17}, + [577] = {.lex_state = 566, .external_lex_state = 11}, + [578] = {.lex_state = 566, .external_lex_state = 11}, + [579] = {.lex_state = 566, .external_lex_state = 16}, + [580] = {.lex_state = 566, .external_lex_state = 16}, + [581] = {.lex_state = 566, .external_lex_state = 16}, + [582] = {.lex_state = 267, .external_lex_state = 18}, + [583] = {.lex_state = 566, .external_lex_state = 16}, + [584] = {.lex_state = 267, .external_lex_state = 18}, + [585] = {.lex_state = 566, .external_lex_state = 16}, + [586] = {.lex_state = 267, .external_lex_state = 18}, + [587] = {.lex_state = 566, .external_lex_state = 16}, + [588] = {.lex_state = 261, .external_lex_state = 16}, + [589] = {.lex_state = 251, .external_lex_state = 19}, + [590] = {.lex_state = 251, .external_lex_state = 19}, + [591] = {.lex_state = 261, .external_lex_state = 16}, + [592] = {.lex_state = 261, .external_lex_state = 16}, + [593] = {.lex_state = 254, .external_lex_state = 9}, + [594] = {.lex_state = 254, .external_lex_state = 9}, + [595] = {.lex_state = 257, .external_lex_state = 9}, + [596] = {.lex_state = 568, .external_lex_state = 18}, + [597] = {.lex_state = 273, .external_lex_state = 17}, + [598] = {.lex_state = 273, .external_lex_state = 17}, + [599] = {.lex_state = 273, .external_lex_state = 17}, + [600] = {.lex_state = 276, .external_lex_state = 18}, + [601] = {.lex_state = 260, .external_lex_state = 9}, + [602] = {.lex_state = 567, .external_lex_state = 9}, + [603] = {.lex_state = 257, .external_lex_state = 9}, + [604] = {.lex_state = 266, .external_lex_state = 20}, + [605] = {.lex_state = 266, .external_lex_state = 20}, + [606] = {.lex_state = 568, .external_lex_state = 18}, + [607] = {.lex_state = 568, .external_lex_state = 18}, + [608] = {.lex_state = 588, .external_lex_state = 2}, + [609] = {.lex_state = 568, .external_lex_state = 18}, + [610] = {.lex_state = 566, .external_lex_state = 16}, + [611] = {.lex_state = 276, .external_lex_state = 18}, + [612] = {.lex_state = 566, .external_lex_state = 16}, + [613] = {.lex_state = 568, .external_lex_state = 18}, + [614] = {.lex_state = 566, .external_lex_state = 16}, + [615] = {.lex_state = 566, .external_lex_state = 16}, + [616] = {.lex_state = 567, .external_lex_state = 9}, + [617] = {.lex_state = 566, .external_lex_state = 16}, + [618] = {.lex_state = 568, .external_lex_state = 18}, + [619] = {.lex_state = 276, .external_lex_state = 18}, + [620] = {.lex_state = 260, .external_lex_state = 9}, + [621] = {.lex_state = 568, .external_lex_state = 18}, + [622] = {.lex_state = 451, .external_lex_state = 5}, + [623] = {.lex_state = 567, .external_lex_state = 9}, + [624] = {.lex_state = 567, .external_lex_state = 9}, + [625] = {.lex_state = 568, .external_lex_state = 18}, + [626] = {.lex_state = 273, .external_lex_state = 21}, + [627] = {.lex_state = 568, .external_lex_state = 18}, + [628] = {.lex_state = 273, .external_lex_state = 17}, + [629] = {.lex_state = 264, .external_lex_state = 21}, + [630] = {.lex_state = 588, .external_lex_state = 2}, + [631] = {.lex_state = 273, .external_lex_state = 21}, + [632] = {.lex_state = 269, .external_lex_state = 20}, + [633] = {.lex_state = 568, .external_lex_state = 18}, + [634] = {.lex_state = 269, .external_lex_state = 20}, + [635] = {.lex_state = 588, .external_lex_state = 2}, + [636] = {.lex_state = 273, .external_lex_state = 17}, + [637] = {.lex_state = 279, .external_lex_state = 18}, + [638] = {.lex_state = 570, .external_lex_state = 20}, + [639] = {.lex_state = 264, .external_lex_state = 21}, + [640] = {.lex_state = 275, .external_lex_state = 20}, + [641] = {.lex_state = 264, .external_lex_state = 21}, + [642] = {.lex_state = 279, .external_lex_state = 18}, + [643] = {.lex_state = 279, .external_lex_state = 18}, + [644] = {.lex_state = 255, .external_lex_state = 11}, + [645] = {.lex_state = 275, .external_lex_state = 20}, + [646] = {.lex_state = 273, .external_lex_state = 21}, + [647] = {.lex_state = 451, .external_lex_state = 5}, + [648] = {.lex_state = 568, .external_lex_state = 18}, + [649] = {.lex_state = 570, .external_lex_state = 20}, + [650] = {.lex_state = 255, .external_lex_state = 11}, + [651] = {.lex_state = 487, .external_lex_state = 2}, + [652] = {.lex_state = 279, .external_lex_state = 18}, + [653] = {.lex_state = 487, .external_lex_state = 2}, + [654] = {.lex_state = 279, .external_lex_state = 18}, + [655] = {.lex_state = 282, .external_lex_state = 18}, + [656] = {.lex_state = 571, .external_lex_state = 18}, + [657] = {.lex_state = 491, .external_lex_state = 22}, + [658] = {.lex_state = 279, .external_lex_state = 23}, + [659] = {.lex_state = 279, .external_lex_state = 23}, + [660] = {.lex_state = 279, .external_lex_state = 23}, + [661] = {.lex_state = 571, .external_lex_state = 18}, + [662] = {.lex_state = 491, .external_lex_state = 22}, + [663] = {.lex_state = 487, .external_lex_state = 2}, + [664] = {.lex_state = 571, .external_lex_state = 18}, + [665] = {.lex_state = 571, .external_lex_state = 18}, + [666] = {.lex_state = 267, .external_lex_state = 23}, + [667] = {.lex_state = 282, .external_lex_state = 18}, + [668] = {.lex_state = 278, .external_lex_state = 17}, + [669] = {.lex_state = 278, .external_lex_state = 17}, + [670] = {.lex_state = 278, .external_lex_state = 17}, + [671] = {.lex_state = 487, .external_lex_state = 2}, + [672] = {.lex_state = 570, .external_lex_state = 20}, + [673] = {.lex_state = 570, .external_lex_state = 20}, + [674] = {.lex_state = 267, .external_lex_state = 23}, + [675] = {.lex_state = 267, .external_lex_state = 23}, + [676] = {.lex_state = 487, .external_lex_state = 2}, + [677] = {.lex_state = 487, .external_lex_state = 2}, + [678] = {.lex_state = 571, .external_lex_state = 18}, + [679] = {.lex_state = 288, .external_lex_state = 21}, + [680] = {.lex_state = 278, .external_lex_state = 17}, + [681] = {.lex_state = 487, .external_lex_state = 2}, + [682] = {.lex_state = 288, .external_lex_state = 21}, + [683] = {.lex_state = 487, .external_lex_state = 2}, + [684] = {.lex_state = 288, .external_lex_state = 21}, + [685] = {.lex_state = 282, .external_lex_state = 18}, + [686] = {.lex_state = 487, .external_lex_state = 2}, + [687] = {.lex_state = 273, .external_lex_state = 21}, + [688] = {.lex_state = 273, .external_lex_state = 21}, + [689] = {.lex_state = 571, .external_lex_state = 18}, + [690] = {.lex_state = 255, .external_lex_state = 16}, + [691] = {.lex_state = 568, .external_lex_state = 23}, + [692] = {.lex_state = 281, .external_lex_state = 18}, + [693] = {.lex_state = 571, .external_lex_state = 23}, + [694] = {.lex_state = 281, .external_lex_state = 18}, + [695] = {.lex_state = 276, .external_lex_state = 23}, + [696] = {.lex_state = 290, .external_lex_state = 23}, + [697] = {.lex_state = 284, .external_lex_state = 17}, + [698] = {.lex_state = 284, .external_lex_state = 17}, + [699] = {.lex_state = 284, .external_lex_state = 17}, + [700] = {.lex_state = 284, .external_lex_state = 17}, + [701] = {.lex_state = 282, .external_lex_state = 23}, + [702] = {.lex_state = 568, .external_lex_state = 23}, + [703] = {.lex_state = 284, .external_lex_state = 17}, + [704] = {.lex_state = 284, .external_lex_state = 17}, + [705] = {.lex_state = 571, .external_lex_state = 23}, + [706] = {.lex_state = 290, .external_lex_state = 23}, + [707] = {.lex_state = 290, .external_lex_state = 23}, + [708] = {.lex_state = 571, .external_lex_state = 18}, + [709] = {.lex_state = 279, .external_lex_state = 23}, + [710] = {.lex_state = 571, .external_lex_state = 18}, + [711] = {.lex_state = 571, .external_lex_state = 23}, + [712] = {.lex_state = 282, .external_lex_state = 18}, + [713] = {.lex_state = 571, .external_lex_state = 18}, + [714] = {.lex_state = 571, .external_lex_state = 18}, + [715] = {.lex_state = 571, .external_lex_state = 18}, + [716] = {.lex_state = 568, .external_lex_state = 23}, + [717] = {.lex_state = 571, .external_lex_state = 18}, + [718] = {.lex_state = 288, .external_lex_state = 21}, + [719] = {.lex_state = 288, .external_lex_state = 21}, + [720] = {.lex_state = 568, .external_lex_state = 23}, + [721] = {.lex_state = 568, .external_lex_state = 23}, + [722] = {.lex_state = 282, .external_lex_state = 18}, + [723] = {.lex_state = 571, .external_lex_state = 23}, + [724] = {.lex_state = 571, .external_lex_state = 23}, + [725] = {.lex_state = 255, .external_lex_state = 16}, + [726] = {.lex_state = 282, .external_lex_state = 23}, + [727] = {.lex_state = 255, .external_lex_state = 16}, + [728] = {.lex_state = 276, .external_lex_state = 23}, + [729] = {.lex_state = 282, .external_lex_state = 23}, + [730] = {.lex_state = 281, .external_lex_state = 18}, + [731] = {.lex_state = 571, .external_lex_state = 23}, + [732] = {.lex_state = 281, .external_lex_state = 18}, + [733] = {.lex_state = 568, .external_lex_state = 23}, + [734] = {.lex_state = 571, .external_lex_state = 18}, + [735] = {.lex_state = 276, .external_lex_state = 23}, + [736] = {.lex_state = 279, .external_lex_state = 23}, + [737] = {.lex_state = 292, .external_lex_state = 23}, + [738] = {.lex_state = 572, .external_lex_state = 18}, + [739] = {.lex_state = 294, .external_lex_state = 24}, + [740] = {.lex_state = 289, .external_lex_state = 18}, + [741] = {.lex_state = 289, .external_lex_state = 18}, + [742] = {.lex_state = 571, .external_lex_state = 23}, + [743] = {.lex_state = 571, .external_lex_state = 23}, + [744] = {.lex_state = 572, .external_lex_state = 18}, + [745] = {.lex_state = 291, .external_lex_state = 18}, + [746] = {.lex_state = 291, .external_lex_state = 18}, + [747] = {.lex_state = 293, .external_lex_state = 18}, + [748] = {.lex_state = 572, .external_lex_state = 18}, + [749] = {.lex_state = 572, .external_lex_state = 18}, + [750] = {.lex_state = 294, .external_lex_state = 24}, + [751] = {.lex_state = 294, .external_lex_state = 24}, + [752] = {.lex_state = 573, .external_lex_state = 23}, + [753] = {.lex_state = 294, .external_lex_state = 24}, + [754] = {.lex_state = 294, .external_lex_state = 24}, + [755] = {.lex_state = 289, .external_lex_state = 18}, + [756] = {.lex_state = 588, .external_lex_state = 2}, + [757] = {.lex_state = 289, .external_lex_state = 18}, + [758] = {.lex_state = 573, .external_lex_state = 23}, + [759] = {.lex_state = 290, .external_lex_state = 23}, + [760] = {.lex_state = 290, .external_lex_state = 23}, + [761] = {.lex_state = 588, .external_lex_state = 2}, + [762] = {.lex_state = 573, .external_lex_state = 23}, + [763] = {.lex_state = 291, .external_lex_state = 18}, + [764] = {.lex_state = 294, .external_lex_state = 24}, + [765] = {.lex_state = 588, .external_lex_state = 2}, + [766] = {.lex_state = 291, .external_lex_state = 18}, + [767] = {.lex_state = 294, .external_lex_state = 24}, + [768] = {.lex_state = 294, .external_lex_state = 24}, + [769] = {.lex_state = 571, .external_lex_state = 23}, + [770] = {.lex_state = 571, .external_lex_state = 23}, + [771] = {.lex_state = 571, .external_lex_state = 23}, + [772] = {.lex_state = 571, .external_lex_state = 23}, + [773] = {.lex_state = 571, .external_lex_state = 23}, + [774] = {.lex_state = 295, .external_lex_state = 9}, + [775] = {.lex_state = 295, .external_lex_state = 9}, + [776] = {.lex_state = 293, .external_lex_state = 18}, + [777] = {.lex_state = 293, .external_lex_state = 18}, + [778] = {.lex_state = 491, .external_lex_state = 25}, + [779] = {.lex_state = 452, .external_lex_state = 2}, + [780] = {.lex_state = 491, .external_lex_state = 25}, + [781] = {.lex_state = 293, .external_lex_state = 18}, + [782] = {.lex_state = 491, .external_lex_state = 25}, + [783] = {.lex_state = 293, .external_lex_state = 18}, + [784] = {.lex_state = 293, .external_lex_state = 18}, + [785] = {.lex_state = 294, .external_lex_state = 24}, + [786] = {.lex_state = 294, .external_lex_state = 24}, + [787] = {.lex_state = 568, .external_lex_state = 23}, + [788] = {.lex_state = 568, .external_lex_state = 23}, + [789] = {.lex_state = 573, .external_lex_state = 23}, + [790] = {.lex_state = 568, .external_lex_state = 23}, + [791] = {.lex_state = 573, .external_lex_state = 23}, + [792] = {.lex_state = 571, .external_lex_state = 23}, + [793] = {.lex_state = 571, .external_lex_state = 23}, + [794] = {.lex_state = 267, .external_lex_state = 18}, + [795] = {.lex_state = 292, .external_lex_state = 23}, + [796] = {.lex_state = 267, .external_lex_state = 18}, + [797] = {.lex_state = 292, .external_lex_state = 23}, + [798] = {.lex_state = 573, .external_lex_state = 23}, + [799] = {.lex_state = 282, .external_lex_state = 23}, + [800] = {.lex_state = 282, .external_lex_state = 23}, + [801] = {.lex_state = 568, .external_lex_state = 23}, + [802] = {.lex_state = 571, .external_lex_state = 18}, + [803] = {.lex_state = 571, .external_lex_state = 18}, + [804] = {.lex_state = 267, .external_lex_state = 18}, + [805] = {.lex_state = 568, .external_lex_state = 23}, + [806] = {.lex_state = 297, .external_lex_state = 18}, + [807] = {.lex_state = 297, .external_lex_state = 18}, + [808] = {.lex_state = 500, .external_lex_state = 26}, + [809] = {.lex_state = 573, .external_lex_state = 23}, + [810] = {.lex_state = 573, .external_lex_state = 23}, + [811] = {.lex_state = 441, .external_lex_state = 27}, + [812] = {.lex_state = 441, .external_lex_state = 27}, + [813] = {.lex_state = 574, .external_lex_state = 18}, + [814] = {.lex_state = 574, .external_lex_state = 18}, + [815] = {.lex_state = 301, .external_lex_state = 18}, + [816] = {.lex_state = 573, .external_lex_state = 23}, + [817] = {.lex_state = 500, .external_lex_state = 26}, + [818] = {.lex_state = 301, .external_lex_state = 18}, + [819] = {.lex_state = 303, .external_lex_state = 20}, + [820] = {.lex_state = 303, .external_lex_state = 20}, + [821] = {.lex_state = 301, .external_lex_state = 18}, + [822] = {.lex_state = 572, .external_lex_state = 18}, + [823] = {.lex_state = 301, .external_lex_state = 18}, + [824] = {.lex_state = 572, .external_lex_state = 18}, + [825] = {.lex_state = 500, .external_lex_state = 26}, + [826] = {.lex_state = 573, .external_lex_state = 23}, + [827] = {.lex_state = 573, .external_lex_state = 23}, + [828] = {.lex_state = 297, .external_lex_state = 18}, + [829] = {.lex_state = 572, .external_lex_state = 18}, + [830] = {.lex_state = 588, .external_lex_state = 2}, + [831] = {.lex_state = 573, .external_lex_state = 23}, + [832] = {.lex_state = 573, .external_lex_state = 23}, + [833] = {.lex_state = 572, .external_lex_state = 18}, + [834] = {.lex_state = 297, .external_lex_state = 18}, + [835] = {.lex_state = 571, .external_lex_state = 23}, + [836] = {.lex_state = 571, .external_lex_state = 23}, + [837] = {.lex_state = 574, .external_lex_state = 18}, + [838] = {.lex_state = 571, .external_lex_state = 23}, + [839] = {.lex_state = 574, .external_lex_state = 18}, + [840] = {.lex_state = 292, .external_lex_state = 23}, + [841] = {.lex_state = 292, .external_lex_state = 23}, + [842] = {.lex_state = 571, .external_lex_state = 23}, + [843] = {.lex_state = 301, .external_lex_state = 18}, + [844] = {.lex_state = 301, .external_lex_state = 18}, + [845] = {.lex_state = 574, .external_lex_state = 18}, + [846] = {.lex_state = 574, .external_lex_state = 18}, + [847] = {.lex_state = 297, .external_lex_state = 18}, + [848] = {.lex_state = 588, .external_lex_state = 2}, + [849] = {.lex_state = 588, .external_lex_state = 2}, + [850] = {.lex_state = 573, .external_lex_state = 23}, + [851] = {.lex_state = 573, .external_lex_state = 23}, + [852] = {.lex_state = 297, .external_lex_state = 18}, + [853] = {.lex_state = 574, .external_lex_state = 18}, + [854] = {.lex_state = 273, .external_lex_state = 17}, + [855] = {.lex_state = 494, .external_lex_state = 28}, + [856] = {.lex_state = 494, .external_lex_state = 28}, + [857] = {.lex_state = 573, .external_lex_state = 23}, + [858] = {.lex_state = 573, .external_lex_state = 23}, + [859] = {.lex_state = 298, .external_lex_state = 29}, + [860] = {.lex_state = 574, .external_lex_state = 18}, + [861] = {.lex_state = 574, .external_lex_state = 18}, + [862] = {.lex_state = 279, .external_lex_state = 18}, + [863] = {.lex_state = 574, .external_lex_state = 18}, + [864] = {.lex_state = 442, .external_lex_state = 30}, + [865] = {.lex_state = 442, .external_lex_state = 30}, + [866] = {.lex_state = 573, .external_lex_state = 23}, + [867] = {.lex_state = 574, .external_lex_state = 18}, + [868] = {.lex_state = 279, .external_lex_state = 18}, + [869] = {.lex_state = 279, .external_lex_state = 18}, + [870] = {.lex_state = 298, .external_lex_state = 29}, + [871] = {.lex_state = 273, .external_lex_state = 17}, + [872] = {.lex_state = 273, .external_lex_state = 17}, + [873] = {.lex_state = 574, .external_lex_state = 18}, + [874] = {.lex_state = 573, .external_lex_state = 23}, + [875] = {.lex_state = 273, .external_lex_state = 17}, + [876] = {.lex_state = 298, .external_lex_state = 29}, + [877] = {.lex_state = 298, .external_lex_state = 29}, + [878] = {.lex_state = 298, .external_lex_state = 29}, + [879] = {.lex_state = 494, .external_lex_state = 28}, + [880] = {.lex_state = 298, .external_lex_state = 29}, + [881] = {.lex_state = 298, .external_lex_state = 29}, + [882] = {.lex_state = 298, .external_lex_state = 31}, + [883] = {.lex_state = 300, .external_lex_state = 4}, + [884] = {.lex_state = 298, .external_lex_state = 31}, + [885] = {.lex_state = 490, .external_lex_state = 26}, + [886] = {.lex_state = 490, .external_lex_state = 26}, + [887] = {.lex_state = 300, .external_lex_state = 4}, + [888] = {.lex_state = 494, .external_lex_state = 32}, + [889] = {.lex_state = 298, .external_lex_state = 29}, + [890] = {.lex_state = 298, .external_lex_state = 29}, + [891] = {.lex_state = 494, .external_lex_state = 32}, + [892] = {.lex_state = 298, .external_lex_state = 29}, + [893] = {.lex_state = 298, .external_lex_state = 29}, + [894] = {.lex_state = 494, .external_lex_state = 28}, + [895] = {.lex_state = 298, .external_lex_state = 29}, + [896] = {.lex_state = 298, .external_lex_state = 29}, + [897] = {.lex_state = 298, .external_lex_state = 29}, + [898] = {.lex_state = 298, .external_lex_state = 31}, + [899] = {.lex_state = 298, .external_lex_state = 31}, + [900] = {.lex_state = 279, .external_lex_state = 18}, + [901] = {.lex_state = 494, .external_lex_state = 32}, + [902] = {.lex_state = 298, .external_lex_state = 29}, + [903] = {.lex_state = 298, .external_lex_state = 29}, + [904] = {.lex_state = 298, .external_lex_state = 31}, + [905] = {.lex_state = 298, .external_lex_state = 31}, + [906] = {.lex_state = 279, .external_lex_state = 23}, + [907] = {.lex_state = 300, .external_lex_state = 4}, + [908] = {.lex_state = 300, .external_lex_state = 4}, + [909] = {.lex_state = 279, .external_lex_state = 23}, + [910] = {.lex_state = 279, .external_lex_state = 18}, + [911] = {.lex_state = 298, .external_lex_state = 29}, + [912] = {.lex_state = 298, .external_lex_state = 29}, + [913] = {.lex_state = 298, .external_lex_state = 31}, + [914] = {.lex_state = 267, .external_lex_state = 23}, + [915] = {.lex_state = 300, .external_lex_state = 4}, + [916] = {.lex_state = 298, .external_lex_state = 29}, + [917] = {.lex_state = 300, .external_lex_state = 4}, + [918] = {.lex_state = 298, .external_lex_state = 29}, + [919] = {.lex_state = 300, .external_lex_state = 4}, + [920] = {.lex_state = 298, .external_lex_state = 29}, + [921] = {.lex_state = 298, .external_lex_state = 29}, + [922] = {.lex_state = 267, .external_lex_state = 23}, + [923] = {.lex_state = 298, .external_lex_state = 31}, + [924] = {.lex_state = 298, .external_lex_state = 29}, + [925] = {.lex_state = 298, .external_lex_state = 31}, + [926] = {.lex_state = 298, .external_lex_state = 29}, + [927] = {.lex_state = 298, .external_lex_state = 29}, + [928] = {.lex_state = 298, .external_lex_state = 29}, + [929] = {.lex_state = 494, .external_lex_state = 28}, + [930] = {.lex_state = 298, .external_lex_state = 31}, + [931] = {.lex_state = 298, .external_lex_state = 31}, + [932] = {.lex_state = 279, .external_lex_state = 18}, + [933] = {.lex_state = 490, .external_lex_state = 26}, + [934] = {.lex_state = 298, .external_lex_state = 31}, + [935] = {.lex_state = 267, .external_lex_state = 23}, + [936] = {.lex_state = 279, .external_lex_state = 18}, + [937] = {.lex_state = 279, .external_lex_state = 23}, + [938] = {.lex_state = 279, .external_lex_state = 18}, + [939] = {.lex_state = 279, .external_lex_state = 18}, + [940] = {.lex_state = 575, .external_lex_state = 4}, + [941] = {.lex_state = 571, .external_lex_state = 18}, + [942] = {.lex_state = 443, .external_lex_state = 28}, + [943] = {.lex_state = 443, .external_lex_state = 28}, + [944] = {.lex_state = 488, .external_lex_state = 33}, + [945] = {.lex_state = 252, .external_lex_state = 13}, + [946] = {.lex_state = 304, .external_lex_state = 4}, + [947] = {.lex_state = 304, .external_lex_state = 4}, + [948] = {.lex_state = 300, .external_lex_state = 34}, + [949] = {.lex_state = 304, .external_lex_state = 4}, + [950] = {.lex_state = 575, .external_lex_state = 4}, + [951] = {.lex_state = 252, .external_lex_state = 13}, + [952] = {.lex_state = 298, .external_lex_state = 31}, + [953] = {.lex_state = 298, .external_lex_state = 31}, + [954] = {.lex_state = 298, .external_lex_state = 31}, + [955] = {.lex_state = 298, .external_lex_state = 31}, + [956] = {.lex_state = 298, .external_lex_state = 31}, + [957] = {.lex_state = 298, .external_lex_state = 31}, + [958] = {.lex_state = 305, .external_lex_state = 18}, + [959] = {.lex_state = 298, .external_lex_state = 31}, + [960] = {.lex_state = 305, .external_lex_state = 18}, + [961] = {.lex_state = 571, .external_lex_state = 18}, + [962] = {.lex_state = 300, .external_lex_state = 4}, + [963] = {.lex_state = 300, .external_lex_state = 4}, + [964] = {.lex_state = 300, .external_lex_state = 4}, + [965] = {.lex_state = 300, .external_lex_state = 4}, + [966] = {.lex_state = 300, .external_lex_state = 4}, + [967] = {.lex_state = 298, .external_lex_state = 31}, + [968] = {.lex_state = 298, .external_lex_state = 31}, + [969] = {.lex_state = 300, .external_lex_state = 4}, + [970] = {.lex_state = 488, .external_lex_state = 33}, + [971] = {.lex_state = 300, .external_lex_state = 4}, + [972] = {.lex_state = 300, .external_lex_state = 34}, + [973] = {.lex_state = 298, .external_lex_state = 31}, + [974] = {.lex_state = 298, .external_lex_state = 31}, + [975] = {.lex_state = 300, .external_lex_state = 34}, + [976] = {.lex_state = 300, .external_lex_state = 34}, + [977] = {.lex_state = 300, .external_lex_state = 4}, + [978] = {.lex_state = 300, .external_lex_state = 4}, + [979] = {.lex_state = 305, .external_lex_state = 18}, + [980] = {.lex_state = 305, .external_lex_state = 18}, + [981] = {.lex_state = 298, .external_lex_state = 31}, + [982] = {.lex_state = 298, .external_lex_state = 31}, + [983] = {.lex_state = 298, .external_lex_state = 31}, + [984] = {.lex_state = 298, .external_lex_state = 31}, + [985] = {.lex_state = 298, .external_lex_state = 31}, + [986] = {.lex_state = 300, .external_lex_state = 34}, + [987] = {.lex_state = 300, .external_lex_state = 4}, + [988] = {.lex_state = 300, .external_lex_state = 4}, + [989] = {.lex_state = 298, .external_lex_state = 31}, + [990] = {.lex_state = 298, .external_lex_state = 31}, + [991] = {.lex_state = 298, .external_lex_state = 31}, + [992] = {.lex_state = 300, .external_lex_state = 4}, + [993] = {.lex_state = 300, .external_lex_state = 4}, + [994] = {.lex_state = 300, .external_lex_state = 4}, + [995] = {.lex_state = 300, .external_lex_state = 4}, + [996] = {.lex_state = 300, .external_lex_state = 4}, + [997] = {.lex_state = 300, .external_lex_state = 4}, + [998] = {.lex_state = 300, .external_lex_state = 4}, + [999] = {.lex_state = 300, .external_lex_state = 4}, + [1000] = {.lex_state = 300, .external_lex_state = 34}, + [1001] = {.lex_state = 300, .external_lex_state = 34}, + [1002] = {.lex_state = 571, .external_lex_state = 18}, + [1003] = {.lex_state = 282, .external_lex_state = 18}, + [1004] = {.lex_state = 575, .external_lex_state = 4}, + [1005] = {.lex_state = 282, .external_lex_state = 18}, + [1006] = {.lex_state = 488, .external_lex_state = 33}, + [1007] = {.lex_state = 300, .external_lex_state = 34}, + [1008] = {.lex_state = 300, .external_lex_state = 34}, + [1009] = {.lex_state = 571, .external_lex_state = 18}, + [1010] = {.lex_state = 304, .external_lex_state = 4}, + [1011] = {.lex_state = 443, .external_lex_state = 28}, + [1012] = {.lex_state = 443, .external_lex_state = 28}, + [1013] = {.lex_state = 575, .external_lex_state = 4}, + [1014] = {.lex_state = 282, .external_lex_state = 18}, + [1015] = {.lex_state = 304, .external_lex_state = 4}, + [1016] = {.lex_state = 304, .external_lex_state = 4}, + [1017] = {.lex_state = 282, .external_lex_state = 18}, + [1018] = {.lex_state = 488, .external_lex_state = 33}, + [1019] = {.lex_state = 282, .external_lex_state = 18}, + [1020] = {.lex_state = 282, .external_lex_state = 18}, + [1021] = {.lex_state = 575, .external_lex_state = 4}, + [1022] = {.lex_state = 571, .external_lex_state = 18}, + [1023] = {.lex_state = 282, .external_lex_state = 18}, + [1024] = {.lex_state = 282, .external_lex_state = 18}, + [1025] = {.lex_state = 282, .external_lex_state = 18}, + [1026] = {.lex_state = 282, .external_lex_state = 18}, + [1027] = {.lex_state = 282, .external_lex_state = 18}, + [1028] = {.lex_state = 571, .external_lex_state = 18}, + [1029] = {.lex_state = 282, .external_lex_state = 18}, + [1030] = {.lex_state = 282, .external_lex_state = 18}, + [1031] = {.lex_state = 282, .external_lex_state = 18}, + [1032] = {.lex_state = 282, .external_lex_state = 18}, + [1033] = {.lex_state = 575, .external_lex_state = 4}, + [1034] = {.lex_state = 282, .external_lex_state = 18}, + [1035] = {.lex_state = 282, .external_lex_state = 18}, + [1036] = {.lex_state = 488, .external_lex_state = 33}, + [1037] = {.lex_state = 290, .external_lex_state = 23}, + [1038] = {.lex_state = 290, .external_lex_state = 23}, + [1039] = {.lex_state = 290, .external_lex_state = 23}, + [1040] = {.lex_state = 499, .external_lex_state = 32}, + [1041] = {.lex_state = 499, .external_lex_state = 32}, + [1042] = {.lex_state = 575, .external_lex_state = 4}, + [1043] = {.lex_state = 460, .external_lex_state = 35}, + [1044] = {.lex_state = 460, .external_lex_state = 35}, + [1045] = {.lex_state = 494, .external_lex_state = 32}, + [1046] = {.lex_state = 494, .external_lex_state = 32}, + [1047] = {.lex_state = 575, .external_lex_state = 4}, + [1048] = {.lex_state = 499, .external_lex_state = 32}, + [1049] = {.lex_state = 282, .external_lex_state = 18}, + [1050] = {.lex_state = 490, .external_lex_state = 26}, + [1051] = {.lex_state = 490, .external_lex_state = 26}, + [1052] = {.lex_state = 575, .external_lex_state = 4}, + [1053] = {.lex_state = 575, .external_lex_state = 4}, + [1054] = {.lex_state = 490, .external_lex_state = 36}, + [1055] = {.lex_state = 490, .external_lex_state = 36}, + [1056] = {.lex_state = 490, .external_lex_state = 36}, + [1057] = {.lex_state = 500, .external_lex_state = 36}, + [1058] = {.lex_state = 575, .external_lex_state = 4}, + [1059] = {.lex_state = 488, .external_lex_state = 33}, + [1060] = {.lex_state = 282, .external_lex_state = 18}, + [1061] = {.lex_state = 282, .external_lex_state = 18}, + [1062] = {.lex_state = 500, .external_lex_state = 36}, + [1063] = {.lex_state = 575, .external_lex_state = 4}, + [1064] = {.lex_state = 575, .external_lex_state = 4}, + [1065] = {.lex_state = 575, .external_lex_state = 4}, + [1066] = {.lex_state = 571, .external_lex_state = 18}, + [1067] = {.lex_state = 500, .external_lex_state = 36}, + [1068] = {.lex_state = 488, .external_lex_state = 33}, + [1069] = {.lex_state = 488, .external_lex_state = 33}, + [1070] = {.lex_state = 488, .external_lex_state = 33}, + [1071] = {.lex_state = 279, .external_lex_state = 23}, + [1072] = {.lex_state = 279, .external_lex_state = 23}, + [1073] = {.lex_state = 304, .external_lex_state = 4}, + [1074] = {.lex_state = 300, .external_lex_state = 34}, + [1075] = {.lex_state = 300, .external_lex_state = 34}, + [1076] = {.lex_state = 571, .external_lex_state = 18}, + [1077] = {.lex_state = 300, .external_lex_state = 34}, + [1078] = {.lex_state = 306, .external_lex_state = 37}, + [1079] = {.lex_state = 575, .external_lex_state = 34}, + [1080] = {.lex_state = 304, .external_lex_state = 4}, + [1081] = {.lex_state = 575, .external_lex_state = 34}, + [1082] = {.lex_state = 304, .external_lex_state = 4}, + [1083] = {.lex_state = 575, .external_lex_state = 4}, + [1084] = {.lex_state = 252, .external_lex_state = 14}, + [1085] = {.lex_state = 575, .external_lex_state = 4}, + [1086] = {.lex_state = 571, .external_lex_state = 18}, + [1087] = {.lex_state = 304, .external_lex_state = 4}, + [1088] = {.lex_state = 304, .external_lex_state = 4}, + [1089] = {.lex_state = 304, .external_lex_state = 4}, + [1090] = {.lex_state = 304, .external_lex_state = 4}, + [1091] = {.lex_state = 304, .external_lex_state = 4}, + [1092] = {.lex_state = 304, .external_lex_state = 4}, + [1093] = {.lex_state = 308, .external_lex_state = 37}, + [1094] = {.lex_state = 308, .external_lex_state = 37}, + [1095] = {.lex_state = 306, .external_lex_state = 37}, + [1096] = {.lex_state = 306, .external_lex_state = 37}, + [1097] = {.lex_state = 575, .external_lex_state = 4}, + [1098] = {.lex_state = 304, .external_lex_state = 4}, + [1099] = {.lex_state = 306, .external_lex_state = 37}, + [1100] = {.lex_state = 255, .external_lex_state = 11}, + [1101] = {.lex_state = 444, .external_lex_state = 26}, + [1102] = {.lex_state = 444, .external_lex_state = 26}, + [1103] = {.lex_state = 575, .external_lex_state = 34}, + [1104] = {.lex_state = 571, .external_lex_state = 18}, + [1105] = {.lex_state = 304, .external_lex_state = 4}, + [1106] = {.lex_state = 571, .external_lex_state = 18}, + [1107] = {.lex_state = 308, .external_lex_state = 37}, + [1108] = {.lex_state = 308, .external_lex_state = 37}, + [1109] = {.lex_state = 252, .external_lex_state = 13}, + [1110] = {.lex_state = 575, .external_lex_state = 34}, + [1111] = {.lex_state = 571, .external_lex_state = 18}, + [1112] = {.lex_state = 304, .external_lex_state = 4}, + [1113] = {.lex_state = 575, .external_lex_state = 34}, + [1114] = {.lex_state = 575, .external_lex_state = 34}, + [1115] = {.lex_state = 300, .external_lex_state = 34}, + [1116] = {.lex_state = 300, .external_lex_state = 34}, + [1117] = {.lex_state = 308, .external_lex_state = 37}, + [1118] = {.lex_state = 300, .external_lex_state = 34}, + [1119] = {.lex_state = 255, .external_lex_state = 11}, + [1120] = {.lex_state = 300, .external_lex_state = 34}, + [1121] = {.lex_state = 307, .external_lex_state = 18}, + [1122] = {.lex_state = 575, .external_lex_state = 34}, + [1123] = {.lex_state = 575, .external_lex_state = 34}, + [1124] = {.lex_state = 307, .external_lex_state = 18}, + [1125] = {.lex_state = 300, .external_lex_state = 34}, + [1126] = {.lex_state = 304, .external_lex_state = 4}, + [1127] = {.lex_state = 571, .external_lex_state = 18}, + [1128] = {.lex_state = 300, .external_lex_state = 34}, + [1129] = {.lex_state = 575, .external_lex_state = 4}, + [1130] = {.lex_state = 300, .external_lex_state = 34}, + [1131] = {.lex_state = 575, .external_lex_state = 34}, + [1132] = {.lex_state = 252, .external_lex_state = 13}, + [1133] = {.lex_state = 575, .external_lex_state = 34}, + [1134] = {.lex_state = 252, .external_lex_state = 14}, + [1135] = {.lex_state = 575, .external_lex_state = 4}, + [1136] = {.lex_state = 571, .external_lex_state = 18}, + [1137] = {.lex_state = 575, .external_lex_state = 4}, + [1138] = {.lex_state = 575, .external_lex_state = 4}, + [1139] = {.lex_state = 461, .external_lex_state = 38}, + [1140] = {.lex_state = 461, .external_lex_state = 38}, + [1141] = {.lex_state = 575, .external_lex_state = 34}, + [1142] = {.lex_state = 304, .external_lex_state = 34}, + [1143] = {.lex_state = 575, .external_lex_state = 34}, + [1144] = {.lex_state = 575, .external_lex_state = 34}, + [1145] = {.lex_state = 304, .external_lex_state = 4}, + [1146] = {.lex_state = 458, .external_lex_state = 38}, + [1147] = {.lex_state = 458, .external_lex_state = 38}, + [1148] = {.lex_state = 575, .external_lex_state = 34}, + [1149] = {.lex_state = 575, .external_lex_state = 34}, + [1150] = {.lex_state = 304, .external_lex_state = 34}, + [1151] = {.lex_state = 575, .external_lex_state = 34}, + [1152] = {.lex_state = 575, .external_lex_state = 34}, + [1153] = {.lex_state = 571, .external_lex_state = 18}, + [1154] = {.lex_state = 304, .external_lex_state = 34}, + [1155] = {.lex_state = 304, .external_lex_state = 34}, + [1156] = {.lex_state = 575, .external_lex_state = 34}, + [1157] = {.lex_state = 304, .external_lex_state = 34}, + [1158] = {.lex_state = 304, .external_lex_state = 34}, + [1159] = {.lex_state = 575, .external_lex_state = 34}, + [1160] = {.lex_state = 575, .external_lex_state = 4}, + [1161] = {.lex_state = 575, .external_lex_state = 4}, + [1162] = {.lex_state = 499, .external_lex_state = 32}, + [1163] = {.lex_state = 499, .external_lex_state = 32}, + [1164] = {.lex_state = 252, .external_lex_state = 14}, + [1165] = {.lex_state = 306, .external_lex_state = 37}, + [1166] = {.lex_state = 306, .external_lex_state = 37}, + [1167] = {.lex_state = 306, .external_lex_state = 37}, + [1168] = {.lex_state = 444, .external_lex_state = 26}, + [1169] = {.lex_state = 444, .external_lex_state = 26}, + [1170] = {.lex_state = 445, .external_lex_state = 28}, + [1171] = {.lex_state = 300, .external_lex_state = 34}, + [1172] = {.lex_state = 300, .external_lex_state = 34}, + [1173] = {.lex_state = 308, .external_lex_state = 37}, + [1174] = {.lex_state = 308, .external_lex_state = 37}, + [1175] = {.lex_state = 575, .external_lex_state = 4}, + [1176] = {.lex_state = 575, .external_lex_state = 4}, + [1177] = {.lex_state = 575, .external_lex_state = 4}, + [1178] = {.lex_state = 571, .external_lex_state = 18}, + [1179] = {.lex_state = 304, .external_lex_state = 4}, + [1180] = {.lex_state = 575, .external_lex_state = 34}, + [1181] = {.lex_state = 575, .external_lex_state = 4}, + [1182] = {.lex_state = 575, .external_lex_state = 34}, + [1183] = {.lex_state = 445, .external_lex_state = 28}, + [1184] = {.lex_state = 575, .external_lex_state = 34}, + [1185] = {.lex_state = 304, .external_lex_state = 34}, + [1186] = {.lex_state = 575, .external_lex_state = 34}, + [1187] = {.lex_state = 304, .external_lex_state = 34}, + [1188] = {.lex_state = 308, .external_lex_state = 37}, + [1189] = {.lex_state = 307, .external_lex_state = 18}, + [1190] = {.lex_state = 575, .external_lex_state = 4}, + [1191] = {.lex_state = 575, .external_lex_state = 4}, + [1192] = {.lex_state = 307, .external_lex_state = 18}, + [1193] = {.lex_state = 463, .external_lex_state = 39}, + [1194] = {.lex_state = 575, .external_lex_state = 4}, + [1195] = {.lex_state = 496, .external_lex_state = 36}, + [1196] = {.lex_state = 306, .external_lex_state = 37}, + [1197] = {.lex_state = 306, .external_lex_state = 37}, + [1198] = {.lex_state = 496, .external_lex_state = 36}, + [1199] = {.lex_state = 306, .external_lex_state = 37}, + [1200] = {.lex_state = 306, .external_lex_state = 37}, + [1201] = {.lex_state = 496, .external_lex_state = 36}, + [1202] = {.lex_state = 304, .external_lex_state = 4}, + [1203] = {.lex_state = 575, .external_lex_state = 4}, + [1204] = {.lex_state = 490, .external_lex_state = 36}, + [1205] = {.lex_state = 304, .external_lex_state = 34}, + [1206] = {.lex_state = 490, .external_lex_state = 36}, + [1207] = {.lex_state = 304, .external_lex_state = 34}, + [1208] = {.lex_state = 307, .external_lex_state = 18}, + [1209] = {.lex_state = 304, .external_lex_state = 34}, + [1210] = {.lex_state = 575, .external_lex_state = 4}, + [1211] = {.lex_state = 304, .external_lex_state = 34}, + [1212] = {.lex_state = 300, .external_lex_state = 34}, + [1213] = {.lex_state = 300, .external_lex_state = 34}, + [1214] = {.lex_state = 575, .external_lex_state = 4}, + [1215] = {.lex_state = 306, .external_lex_state = 37}, + [1216] = {.lex_state = 306, .external_lex_state = 37}, + [1217] = {.lex_state = 307, .external_lex_state = 18}, + [1218] = {.lex_state = 304, .external_lex_state = 4}, + [1219] = {.lex_state = 459, .external_lex_state = 38}, + [1220] = {.lex_state = 304, .external_lex_state = 4}, + [1221] = {.lex_state = 575, .external_lex_state = 4}, + [1222] = {.lex_state = 575, .external_lex_state = 4}, + [1223] = {.lex_state = 575, .external_lex_state = 4}, + [1224] = {.lex_state = 575, .external_lex_state = 4}, + [1225] = {.lex_state = 575, .external_lex_state = 4}, + [1226] = {.lex_state = 575, .external_lex_state = 4}, + [1227] = {.lex_state = 304, .external_lex_state = 4}, + [1228] = {.lex_state = 304, .external_lex_state = 4}, + [1229] = {.lex_state = 300, .external_lex_state = 34}, + [1230] = {.lex_state = 575, .external_lex_state = 4}, + [1231] = {.lex_state = 252, .external_lex_state = 14}, + [1232] = {.lex_state = 300, .external_lex_state = 34}, + [1233] = {.lex_state = 300, .external_lex_state = 34}, + [1234] = {.lex_state = 575, .external_lex_state = 4}, + [1235] = {.lex_state = 575, .external_lex_state = 4}, + [1236] = {.lex_state = 575, .external_lex_state = 4}, + [1237] = {.lex_state = 575, .external_lex_state = 4}, + [1238] = {.lex_state = 300, .external_lex_state = 34}, + [1239] = {.lex_state = 252, .external_lex_state = 14}, + [1240] = {.lex_state = 575, .external_lex_state = 4}, + [1241] = {.lex_state = 575, .external_lex_state = 4}, + [1242] = {.lex_state = 575, .external_lex_state = 4}, + [1243] = {.lex_state = 575, .external_lex_state = 4}, + [1244] = {.lex_state = 575, .external_lex_state = 4}, + [1245] = {.lex_state = 571, .external_lex_state = 18}, + [1246] = {.lex_state = 300, .external_lex_state = 34}, + [1247] = {.lex_state = 575, .external_lex_state = 4}, + [1248] = {.lex_state = 571, .external_lex_state = 18}, + [1249] = {.lex_state = 575, .external_lex_state = 4}, + [1250] = {.lex_state = 575, .external_lex_state = 4}, + [1251] = {.lex_state = 575, .external_lex_state = 4}, + [1252] = {.lex_state = 575, .external_lex_state = 4}, + [1253] = {.lex_state = 460, .external_lex_state = 40}, + [1254] = {.lex_state = 575, .external_lex_state = 4}, + [1255] = {.lex_state = 460, .external_lex_state = 40}, + [1256] = {.lex_state = 290, .external_lex_state = 23}, + [1257] = {.lex_state = 290, .external_lex_state = 23}, + [1258] = {.lex_state = 459, .external_lex_state = 38}, + [1259] = {.lex_state = 300, .external_lex_state = 34}, + [1260] = {.lex_state = 300, .external_lex_state = 34}, + [1261] = {.lex_state = 575, .external_lex_state = 4}, + [1262] = {.lex_state = 575, .external_lex_state = 4}, + [1263] = {.lex_state = 300, .external_lex_state = 34}, + [1264] = {.lex_state = 575, .external_lex_state = 34}, + [1265] = {.lex_state = 575, .external_lex_state = 4}, + [1266] = {.lex_state = 575, .external_lex_state = 4}, + [1267] = {.lex_state = 306, .external_lex_state = 37}, + [1268] = {.lex_state = 261, .external_lex_state = 11}, + [1269] = {.lex_state = 255, .external_lex_state = 16}, + [1270] = {.lex_state = 308, .external_lex_state = 37}, + [1271] = {.lex_state = 252, .external_lex_state = 14}, + [1272] = {.lex_state = 304, .external_lex_state = 34}, + [1273] = {.lex_state = 308, .external_lex_state = 37}, + [1274] = {.lex_state = 304, .external_lex_state = 34}, + [1275] = {.lex_state = 308, .external_lex_state = 37}, + [1276] = {.lex_state = 306, .external_lex_state = 41}, + [1277] = {.lex_state = 255, .external_lex_state = 16}, + [1278] = {.lex_state = 306, .external_lex_state = 41}, + [1279] = {.lex_state = 306, .external_lex_state = 41}, + [1280] = {.lex_state = 308, .external_lex_state = 41}, + [1281] = {.lex_state = 306, .external_lex_state = 37}, + [1282] = {.lex_state = 306, .external_lex_state = 37}, + [1283] = {.lex_state = 255, .external_lex_state = 16}, + [1284] = {.lex_state = 255, .external_lex_state = 16}, + [1285] = {.lex_state = 308, .external_lex_state = 37}, + [1286] = {.lex_state = 446, .external_lex_state = 26}, + [1287] = {.lex_state = 446, .external_lex_state = 26}, + [1288] = {.lex_state = 308, .external_lex_state = 37}, + [1289] = {.lex_state = 255, .external_lex_state = 16}, + [1290] = {.lex_state = 446, .external_lex_state = 26}, + [1291] = {.lex_state = 446, .external_lex_state = 26}, + [1292] = {.lex_state = 261, .external_lex_state = 11}, + [1293] = {.lex_state = 252, .external_lex_state = 14}, + [1294] = {.lex_state = 462, .external_lex_state = 38}, + [1295] = {.lex_state = 462, .external_lex_state = 38}, + [1296] = {.lex_state = 446, .external_lex_state = 26}, + [1297] = {.lex_state = 308, .external_lex_state = 41}, + [1298] = {.lex_state = 310, .external_lex_state = 42}, + [1299] = {.lex_state = 306, .external_lex_state = 37}, + [1300] = {.lex_state = 306, .external_lex_state = 37}, + [1301] = {.lex_state = 310, .external_lex_state = 42}, + [1302] = {.lex_state = 446, .external_lex_state = 26}, + [1303] = {.lex_state = 310, .external_lex_state = 42}, + [1304] = {.lex_state = 255, .external_lex_state = 11}, + [1305] = {.lex_state = 454, .external_lex_state = 43}, + [1306] = {.lex_state = 308, .external_lex_state = 41}, + [1307] = {.lex_state = 306, .external_lex_state = 41}, + [1308] = {.lex_state = 575, .external_lex_state = 34}, + [1309] = {.lex_state = 575, .external_lex_state = 34}, + [1310] = {.lex_state = 312, .external_lex_state = 42}, + [1311] = {.lex_state = 454, .external_lex_state = 43}, + [1312] = {.lex_state = 308, .external_lex_state = 37}, + [1313] = {.lex_state = 308, .external_lex_state = 37}, + [1314] = {.lex_state = 312, .external_lex_state = 42}, + [1315] = {.lex_state = 454, .external_lex_state = 43}, + [1316] = {.lex_state = 454, .external_lex_state = 43}, + [1317] = {.lex_state = 566, .external_lex_state = 11}, + [1318] = {.lex_state = 312, .external_lex_state = 42}, + [1319] = {.lex_state = 454, .external_lex_state = 43}, + [1320] = {.lex_state = 575, .external_lex_state = 34}, + [1321] = {.lex_state = 566, .external_lex_state = 11}, + [1322] = {.lex_state = 575, .external_lex_state = 34}, + [1323] = {.lex_state = 575, .external_lex_state = 34}, + [1324] = {.lex_state = 575, .external_lex_state = 34}, + [1325] = {.lex_state = 566, .external_lex_state = 11}, + [1326] = {.lex_state = 575, .external_lex_state = 34}, + [1327] = {.lex_state = 575, .external_lex_state = 34}, + [1328] = {.lex_state = 575, .external_lex_state = 34}, + [1329] = {.lex_state = 575, .external_lex_state = 34}, + [1330] = {.lex_state = 575, .external_lex_state = 34}, + [1331] = {.lex_state = 575, .external_lex_state = 34}, + [1332] = {.lex_state = 306, .external_lex_state = 37}, + [1333] = {.lex_state = 575, .external_lex_state = 34}, + [1334] = {.lex_state = 312, .external_lex_state = 42}, + [1335] = {.lex_state = 575, .external_lex_state = 34}, + [1336] = {.lex_state = 312, .external_lex_state = 42}, + [1337] = {.lex_state = 575, .external_lex_state = 34}, + [1338] = {.lex_state = 575, .external_lex_state = 34}, + [1339] = {.lex_state = 575, .external_lex_state = 34}, + [1340] = {.lex_state = 306, .external_lex_state = 37}, + [1341] = {.lex_state = 575, .external_lex_state = 34}, + [1342] = {.lex_state = 304, .external_lex_state = 34}, + [1343] = {.lex_state = 304, .external_lex_state = 34}, + [1344] = {.lex_state = 575, .external_lex_state = 34}, + [1345] = {.lex_state = 575, .external_lex_state = 34}, + [1346] = {.lex_state = 575, .external_lex_state = 34}, + [1347] = {.lex_state = 306, .external_lex_state = 37}, + [1348] = {.lex_state = 575, .external_lex_state = 34}, + [1349] = {.lex_state = 310, .external_lex_state = 42}, + [1350] = {.lex_state = 310, .external_lex_state = 42}, + [1351] = {.lex_state = 575, .external_lex_state = 34}, + [1352] = {.lex_state = 575, .external_lex_state = 34}, + [1353] = {.lex_state = 575, .external_lex_state = 34}, + [1354] = {.lex_state = 575, .external_lex_state = 34}, + [1355] = {.lex_state = 312, .external_lex_state = 42}, + [1356] = {.lex_state = 312, .external_lex_state = 42}, + [1357] = {.lex_state = 306, .external_lex_state = 37}, + [1358] = {.lex_state = 575, .external_lex_state = 34}, + [1359] = {.lex_state = 454, .external_lex_state = 43}, + [1360] = {.lex_state = 304, .external_lex_state = 34}, + [1361] = {.lex_state = 310, .external_lex_state = 42}, + [1362] = {.lex_state = 310, .external_lex_state = 42}, + [1363] = {.lex_state = 306, .external_lex_state = 37}, + [1364] = {.lex_state = 496, .external_lex_state = 36}, + [1365] = {.lex_state = 496, .external_lex_state = 36}, + [1366] = {.lex_state = 255, .external_lex_state = 11}, + [1367] = {.lex_state = 252, .external_lex_state = 14}, + [1368] = {.lex_state = 306, .external_lex_state = 37}, + [1369] = {.lex_state = 306, .external_lex_state = 37}, + [1370] = {.lex_state = 308, .external_lex_state = 37}, + [1371] = {.lex_state = 308, .external_lex_state = 37}, + [1372] = {.lex_state = 306, .external_lex_state = 37}, + [1373] = {.lex_state = 575, .external_lex_state = 34}, + [1374] = {.lex_state = 306, .external_lex_state = 37}, + [1375] = {.lex_state = 310, .external_lex_state = 42}, + [1376] = {.lex_state = 304, .external_lex_state = 34}, + [1377] = {.lex_state = 575, .external_lex_state = 34}, + [1378] = {.lex_state = 308, .external_lex_state = 37}, + [1379] = {.lex_state = 575, .external_lex_state = 34}, + [1380] = {.lex_state = 304, .external_lex_state = 34}, + [1381] = {.lex_state = 304, .external_lex_state = 34}, + [1382] = {.lex_state = 308, .external_lex_state = 37}, + [1383] = {.lex_state = 306, .external_lex_state = 37}, + [1384] = {.lex_state = 575, .external_lex_state = 34}, + [1385] = {.lex_state = 304, .external_lex_state = 34}, + [1386] = {.lex_state = 575, .external_lex_state = 34}, + [1387] = {.lex_state = 304, .external_lex_state = 34}, + [1388] = {.lex_state = 308, .external_lex_state = 37}, + [1389] = {.lex_state = 308, .external_lex_state = 37}, + [1390] = {.lex_state = 252, .external_lex_state = 14}, + [1391] = {.lex_state = 308, .external_lex_state = 37}, + [1392] = {.lex_state = 312, .external_lex_state = 42}, + [1393] = {.lex_state = 252, .external_lex_state = 14}, + [1394] = {.lex_state = 575, .external_lex_state = 34}, + [1395] = {.lex_state = 575, .external_lex_state = 34}, + [1396] = {.lex_state = 575, .external_lex_state = 34}, + [1397] = {.lex_state = 252, .external_lex_state = 14}, + [1398] = {.lex_state = 304, .external_lex_state = 34}, + [1399] = {.lex_state = 575, .external_lex_state = 34}, + [1400] = {.lex_state = 304, .external_lex_state = 34}, + [1401] = {.lex_state = 575, .external_lex_state = 34}, + [1402] = {.lex_state = 575, .external_lex_state = 34}, + [1403] = {.lex_state = 575, .external_lex_state = 34}, + [1404] = {.lex_state = 306, .external_lex_state = 37}, + [1405] = {.lex_state = 306, .external_lex_state = 41}, + [1406] = {.lex_state = 306, .external_lex_state = 41}, + [1407] = {.lex_state = 310, .external_lex_state = 42}, + [1408] = {.lex_state = 310, .external_lex_state = 42}, + [1409] = {.lex_state = 306, .external_lex_state = 37}, + [1410] = {.lex_state = 306, .external_lex_state = 37}, + [1411] = {.lex_state = 308, .external_lex_state = 41}, + [1412] = {.lex_state = 310, .external_lex_state = 42}, + [1413] = {.lex_state = 308, .external_lex_state = 37}, + [1414] = {.lex_state = 310, .external_lex_state = 42}, + [1415] = {.lex_state = 308, .external_lex_state = 41}, + [1416] = {.lex_state = 575, .external_lex_state = 34}, + [1417] = {.lex_state = 575, .external_lex_state = 34}, + [1418] = {.lex_state = 308, .external_lex_state = 37}, + [1419] = {.lex_state = 575, .external_lex_state = 34}, + [1420] = {.lex_state = 575, .external_lex_state = 34}, + [1421] = {.lex_state = 308, .external_lex_state = 37}, + [1422] = {.lex_state = 566, .external_lex_state = 11}, + [1423] = {.lex_state = 308, .external_lex_state = 37}, + [1424] = {.lex_state = 304, .external_lex_state = 34}, + [1425] = {.lex_state = 465, .external_lex_state = 44}, + [1426] = {.lex_state = 310, .external_lex_state = 42}, + [1427] = {.lex_state = 310, .external_lex_state = 42}, + [1428] = {.lex_state = 308, .external_lex_state = 41}, + [1429] = {.lex_state = 575, .external_lex_state = 34}, + [1430] = {.lex_state = 575, .external_lex_state = 34}, + [1431] = {.lex_state = 575, .external_lex_state = 34}, + [1432] = {.lex_state = 575, .external_lex_state = 34}, + [1433] = {.lex_state = 575, .external_lex_state = 34}, + [1434] = {.lex_state = 304, .external_lex_state = 34}, + [1435] = {.lex_state = 304, .external_lex_state = 34}, + [1436] = {.lex_state = 306, .external_lex_state = 37}, + [1437] = {.lex_state = 304, .external_lex_state = 34}, + [1438] = {.lex_state = 308, .external_lex_state = 37}, + [1439] = {.lex_state = 306, .external_lex_state = 37}, + [1440] = {.lex_state = 304, .external_lex_state = 34}, + [1441] = {.lex_state = 304, .external_lex_state = 34}, + [1442] = {.lex_state = 304, .external_lex_state = 34}, + [1443] = {.lex_state = 575, .external_lex_state = 34}, + [1444] = {.lex_state = 310, .external_lex_state = 42}, + [1445] = {.lex_state = 308, .external_lex_state = 41}, + [1446] = {.lex_state = 566, .external_lex_state = 16}, + [1447] = {.lex_state = 566, .external_lex_state = 16}, + [1448] = {.lex_state = 308, .external_lex_state = 41}, + [1449] = {.lex_state = 314, .external_lex_state = 42}, + [1450] = {.lex_state = 306, .external_lex_state = 41}, + [1451] = {.lex_state = 314, .external_lex_state = 42}, + [1452] = {.lex_state = 306, .external_lex_state = 41}, + [1453] = {.lex_state = 314, .external_lex_state = 42}, + [1454] = {.lex_state = 306, .external_lex_state = 41}, + [1455] = {.lex_state = 576, .external_lex_state = 42}, + [1456] = {.lex_state = 310, .external_lex_state = 42}, + [1457] = {.lex_state = 577, .external_lex_state = 42}, + [1458] = {.lex_state = 310, .external_lex_state = 42}, + [1459] = {.lex_state = 577, .external_lex_state = 42}, + [1460] = {.lex_state = 308, .external_lex_state = 41}, + [1461] = {.lex_state = 576, .external_lex_state = 42}, + [1462] = {.lex_state = 577, .external_lex_state = 42}, + [1463] = {.lex_state = 317, .external_lex_state = 41}, + [1464] = {.lex_state = 577, .external_lex_state = 42}, + [1465] = {.lex_state = 577, .external_lex_state = 42}, + [1466] = {.lex_state = 577, .external_lex_state = 42}, + [1467] = {.lex_state = 577, .external_lex_state = 42}, + [1468] = {.lex_state = 576, .external_lex_state = 42}, + [1469] = {.lex_state = 310, .external_lex_state = 45}, + [1470] = {.lex_state = 310, .external_lex_state = 42}, + [1471] = {.lex_state = 566, .external_lex_state = 11}, + [1472] = {.lex_state = 310, .external_lex_state = 42}, + [1473] = {.lex_state = 255, .external_lex_state = 16}, + [1474] = {.lex_state = 310, .external_lex_state = 42}, + [1475] = {.lex_state = 566, .external_lex_state = 16}, + [1476] = {.lex_state = 310, .external_lex_state = 42}, + [1477] = {.lex_state = 317, .external_lex_state = 41}, + [1478] = {.lex_state = 312, .external_lex_state = 42}, + [1479] = {.lex_state = 566, .external_lex_state = 16}, + [1480] = {.lex_state = 318, .external_lex_state = 42}, + [1481] = {.lex_state = 318, .external_lex_state = 42}, + [1482] = {.lex_state = 310, .external_lex_state = 42}, + [1483] = {.lex_state = 312, .external_lex_state = 42}, + [1484] = {.lex_state = 312, .external_lex_state = 42}, + [1485] = {.lex_state = 312, .external_lex_state = 42}, + [1486] = {.lex_state = 261, .external_lex_state = 16}, + [1487] = {.lex_state = 310, .external_lex_state = 42}, + [1488] = {.lex_state = 312, .external_lex_state = 42}, + [1489] = {.lex_state = 310, .external_lex_state = 42}, + [1490] = {.lex_state = 312, .external_lex_state = 42}, + [1491] = {.lex_state = 312, .external_lex_state = 45}, + [1492] = {.lex_state = 566, .external_lex_state = 16}, + [1493] = {.lex_state = 308, .external_lex_state = 41}, + [1494] = {.lex_state = 308, .external_lex_state = 41}, + [1495] = {.lex_state = 312, .external_lex_state = 42}, + [1496] = {.lex_state = 317, .external_lex_state = 41}, + [1497] = {.lex_state = 312, .external_lex_state = 42}, + [1498] = {.lex_state = 566, .external_lex_state = 11}, + [1499] = {.lex_state = 576, .external_lex_state = 42}, + [1500] = {.lex_state = 314, .external_lex_state = 42}, + [1501] = {.lex_state = 314, .external_lex_state = 42}, + [1502] = {.lex_state = 314, .external_lex_state = 42}, + [1503] = {.lex_state = 261, .external_lex_state = 16}, + [1504] = {.lex_state = 314, .external_lex_state = 42}, + [1505] = {.lex_state = 261, .external_lex_state = 16}, + [1506] = {.lex_state = 314, .external_lex_state = 42}, + [1507] = {.lex_state = 312, .external_lex_state = 45}, + [1508] = {.lex_state = 576, .external_lex_state = 42}, + [1509] = {.lex_state = 576, .external_lex_state = 42}, + [1510] = {.lex_state = 312, .external_lex_state = 45}, + [1511] = {.lex_state = 310, .external_lex_state = 42}, + [1512] = {.lex_state = 576, .external_lex_state = 42}, + [1513] = {.lex_state = 310, .external_lex_state = 42}, + [1514] = {.lex_state = 310, .external_lex_state = 42}, + [1515] = {.lex_state = 312, .external_lex_state = 42}, + [1516] = {.lex_state = 310, .external_lex_state = 42}, + [1517] = {.lex_state = 576, .external_lex_state = 42}, + [1518] = {.lex_state = 310, .external_lex_state = 42}, + [1519] = {.lex_state = 308, .external_lex_state = 41}, + [1520] = {.lex_state = 312, .external_lex_state = 42}, + [1521] = {.lex_state = 308, .external_lex_state = 41}, + [1522] = {.lex_state = 577, .external_lex_state = 42}, + [1523] = {.lex_state = 306, .external_lex_state = 41}, + [1524] = {.lex_state = 577, .external_lex_state = 42}, + [1525] = {.lex_state = 576, .external_lex_state = 42}, + [1526] = {.lex_state = 577, .external_lex_state = 42}, + [1527] = {.lex_state = 576, .external_lex_state = 42}, + [1528] = {.lex_state = 312, .external_lex_state = 42}, + [1529] = {.lex_state = 273, .external_lex_state = 17}, + [1530] = {.lex_state = 577, .external_lex_state = 42}, + [1531] = {.lex_state = 576, .external_lex_state = 42}, + [1532] = {.lex_state = 312, .external_lex_state = 42}, + [1533] = {.lex_state = 576, .external_lex_state = 42}, + [1534] = {.lex_state = 576, .external_lex_state = 42}, + [1535] = {.lex_state = 312, .external_lex_state = 42}, + [1536] = {.lex_state = 306, .external_lex_state = 41}, + [1537] = {.lex_state = 264, .external_lex_state = 17}, + [1538] = {.lex_state = 576, .external_lex_state = 42}, + [1539] = {.lex_state = 312, .external_lex_state = 42}, + [1540] = {.lex_state = 576, .external_lex_state = 42}, + [1541] = {.lex_state = 566, .external_lex_state = 16}, + [1542] = {.lex_state = 312, .external_lex_state = 42}, + [1543] = {.lex_state = 255, .external_lex_state = 16}, + [1544] = {.lex_state = 261, .external_lex_state = 16}, + [1545] = {.lex_state = 314, .external_lex_state = 42}, + [1546] = {.lex_state = 314, .external_lex_state = 42}, + [1547] = {.lex_state = 273, .external_lex_state = 17}, + [1548] = {.lex_state = 314, .external_lex_state = 42}, + [1549] = {.lex_state = 273, .external_lex_state = 17}, + [1550] = {.lex_state = 255, .external_lex_state = 16}, + [1551] = {.lex_state = 314, .external_lex_state = 42}, + [1552] = {.lex_state = 318, .external_lex_state = 42}, + [1553] = {.lex_state = 318, .external_lex_state = 42}, + [1554] = {.lex_state = 294, .external_lex_state = 24}, + [1555] = {.lex_state = 255, .external_lex_state = 16}, + [1556] = {.lex_state = 312, .external_lex_state = 45}, + [1557] = {.lex_state = 294, .external_lex_state = 24}, + [1558] = {.lex_state = 310, .external_lex_state = 42}, + [1559] = {.lex_state = 318, .external_lex_state = 42}, + [1560] = {.lex_state = 294, .external_lex_state = 24}, + [1561] = {.lex_state = 310, .external_lex_state = 42}, + [1562] = {.lex_state = 273, .external_lex_state = 17}, + [1563] = {.lex_state = 306, .external_lex_state = 41}, + [1564] = {.lex_state = 566, .external_lex_state = 16}, + [1565] = {.lex_state = 306, .external_lex_state = 41}, + [1566] = {.lex_state = 566, .external_lex_state = 16}, + [1567] = {.lex_state = 306, .external_lex_state = 41}, + [1568] = {.lex_state = 261, .external_lex_state = 16}, + [1569] = {.lex_state = 306, .external_lex_state = 41}, + [1570] = {.lex_state = 306, .external_lex_state = 41}, + [1571] = {.lex_state = 306, .external_lex_state = 41}, + [1572] = {.lex_state = 576, .external_lex_state = 42}, + [1573] = {.lex_state = 264, .external_lex_state = 17}, + [1574] = {.lex_state = 576, .external_lex_state = 42}, + [1575] = {.lex_state = 465, .external_lex_state = 46}, + [1576] = {.lex_state = 306, .external_lex_state = 41}, + [1577] = {.lex_state = 255, .external_lex_state = 16}, + [1578] = {.lex_state = 310, .external_lex_state = 45}, + [1579] = {.lex_state = 577, .external_lex_state = 42}, + [1580] = {.lex_state = 273, .external_lex_state = 17}, + [1581] = {.lex_state = 577, .external_lex_state = 42}, + [1582] = {.lex_state = 306, .external_lex_state = 41}, + [1583] = {.lex_state = 273, .external_lex_state = 17}, + [1584] = {.lex_state = 306, .external_lex_state = 41}, + [1585] = {.lex_state = 310, .external_lex_state = 45}, + [1586] = {.lex_state = 306, .external_lex_state = 41}, + [1587] = {.lex_state = 306, .external_lex_state = 41}, + [1588] = {.lex_state = 273, .external_lex_state = 17}, + [1589] = {.lex_state = 576, .external_lex_state = 42}, + [1590] = {.lex_state = 566, .external_lex_state = 16}, + [1591] = {.lex_state = 308, .external_lex_state = 41}, + [1592] = {.lex_state = 310, .external_lex_state = 45}, + [1593] = {.lex_state = 308, .external_lex_state = 41}, + [1594] = {.lex_state = 317, .external_lex_state = 41}, + [1595] = {.lex_state = 317, .external_lex_state = 41}, + [1596] = {.lex_state = 310, .external_lex_state = 45}, + [1597] = {.lex_state = 577, .external_lex_state = 42}, + [1598] = {.lex_state = 306, .external_lex_state = 41}, + [1599] = {.lex_state = 576, .external_lex_state = 42}, + [1600] = {.lex_state = 308, .external_lex_state = 41}, + [1601] = {.lex_state = 308, .external_lex_state = 41}, + [1602] = {.lex_state = 566, .external_lex_state = 11}, + [1603] = {.lex_state = 576, .external_lex_state = 42}, + [1604] = {.lex_state = 576, .external_lex_state = 42}, + [1605] = {.lex_state = 261, .external_lex_state = 11}, + [1606] = {.lex_state = 308, .external_lex_state = 41}, + [1607] = {.lex_state = 306, .external_lex_state = 41}, + [1608] = {.lex_state = 576, .external_lex_state = 42}, + [1609] = {.lex_state = 312, .external_lex_state = 45}, + [1610] = {.lex_state = 310, .external_lex_state = 42}, + [1611] = {.lex_state = 310, .external_lex_state = 42}, + [1612] = {.lex_state = 308, .external_lex_state = 41}, + [1613] = {.lex_state = 576, .external_lex_state = 42}, + [1614] = {.lex_state = 566, .external_lex_state = 11}, + [1615] = {.lex_state = 308, .external_lex_state = 41}, + [1616] = {.lex_state = 264, .external_lex_state = 17}, + [1617] = {.lex_state = 261, .external_lex_state = 11}, + [1618] = {.lex_state = 310, .external_lex_state = 45}, + [1619] = {.lex_state = 312, .external_lex_state = 42}, + [1620] = {.lex_state = 306, .external_lex_state = 41}, + [1621] = {.lex_state = 576, .external_lex_state = 42}, + [1622] = {.lex_state = 576, .external_lex_state = 42}, + [1623] = {.lex_state = 317, .external_lex_state = 41}, + [1624] = {.lex_state = 566, .external_lex_state = 16}, + [1625] = {.lex_state = 312, .external_lex_state = 42}, + [1626] = {.lex_state = 308, .external_lex_state = 41}, + [1627] = {.lex_state = 314, .external_lex_state = 42}, + [1628] = {.lex_state = 314, .external_lex_state = 42}, + [1629] = {.lex_state = 576, .external_lex_state = 42}, + [1630] = {.lex_state = 576, .external_lex_state = 42}, + [1631] = {.lex_state = 576, .external_lex_state = 42}, + [1632] = {.lex_state = 312, .external_lex_state = 42}, + [1633] = {.lex_state = 308, .external_lex_state = 41}, + [1634] = {.lex_state = 577, .external_lex_state = 42}, + [1635] = {.lex_state = 318, .external_lex_state = 42}, + [1636] = {.lex_state = 312, .external_lex_state = 42}, + [1637] = {.lex_state = 308, .external_lex_state = 41}, + [1638] = {.lex_state = 308, .external_lex_state = 41}, + [1639] = {.lex_state = 308, .external_lex_state = 41}, + [1640] = {.lex_state = 312, .external_lex_state = 45}, + [1641] = {.lex_state = 255, .external_lex_state = 16}, + [1642] = {.lex_state = 577, .external_lex_state = 42}, + [1643] = {.lex_state = 318, .external_lex_state = 42}, + [1644] = {.lex_state = 318, .external_lex_state = 42}, + [1645] = {.lex_state = 314, .external_lex_state = 42}, + [1646] = {.lex_state = 264, .external_lex_state = 17}, + [1647] = {.lex_state = 576, .external_lex_state = 42}, + [1648] = {.lex_state = 577, .external_lex_state = 42}, + [1649] = {.lex_state = 576, .external_lex_state = 42}, + [1650] = {.lex_state = 264, .external_lex_state = 17}, + [1651] = {.lex_state = 576, .external_lex_state = 42}, + [1652] = {.lex_state = 312, .external_lex_state = 45}, + [1653] = {.lex_state = 577, .external_lex_state = 45}, + [1654] = {.lex_state = 577, .external_lex_state = 42}, + [1655] = {.lex_state = 312, .external_lex_state = 45}, + [1656] = {.lex_state = 312, .external_lex_state = 45}, + [1657] = {.lex_state = 576, .external_lex_state = 42}, + [1658] = {.lex_state = 566, .external_lex_state = 16}, + [1659] = {.lex_state = 273, .external_lex_state = 17}, + [1660] = {.lex_state = 576, .external_lex_state = 42}, + [1661] = {.lex_state = 576, .external_lex_state = 45}, + [1662] = {.lex_state = 261, .external_lex_state = 16}, + [1663] = {.lex_state = 314, .external_lex_state = 45}, + [1664] = {.lex_state = 314, .external_lex_state = 45}, + [1665] = {.lex_state = 267, .external_lex_state = 18}, + [1666] = {.lex_state = 261, .external_lex_state = 16}, + [1667] = {.lex_state = 317, .external_lex_state = 41}, + [1668] = {.lex_state = 312, .external_lex_state = 45}, + [1669] = {.lex_state = 576, .external_lex_state = 42}, + [1670] = {.lex_state = 314, .external_lex_state = 45}, + [1671] = {.lex_state = 319, .external_lex_state = 45}, + [1672] = {.lex_state = 576, .external_lex_state = 42}, + [1673] = {.lex_state = 576, .external_lex_state = 42}, + [1674] = {.lex_state = 317, .external_lex_state = 41}, + [1675] = {.lex_state = 566, .external_lex_state = 16}, + [1676] = {.lex_state = 317, .external_lex_state = 41}, + [1677] = {.lex_state = 577, .external_lex_state = 42}, + [1678] = {.lex_state = 314, .external_lex_state = 42}, + [1679] = {.lex_state = 576, .external_lex_state = 42}, + [1680] = {.lex_state = 317, .external_lex_state = 41}, + [1681] = {.lex_state = 576, .external_lex_state = 42}, + [1682] = {.lex_state = 577, .external_lex_state = 45}, + [1683] = {.lex_state = 577, .external_lex_state = 42}, + [1684] = {.lex_state = 310, .external_lex_state = 45}, + [1685] = {.lex_state = 310, .external_lex_state = 45}, + [1686] = {.lex_state = 279, .external_lex_state = 18}, + [1687] = {.lex_state = 314, .external_lex_state = 42}, + [1688] = {.lex_state = 314, .external_lex_state = 42}, + [1689] = {.lex_state = 261, .external_lex_state = 16}, + [1690] = {.lex_state = 310, .external_lex_state = 45}, + [1691] = {.lex_state = 310, .external_lex_state = 45}, + [1692] = {.lex_state = 576, .external_lex_state = 42}, + [1693] = {.lex_state = 314, .external_lex_state = 42}, + [1694] = {.lex_state = 310, .external_lex_state = 45}, + [1695] = {.lex_state = 310, .external_lex_state = 45}, + [1696] = {.lex_state = 576, .external_lex_state = 42}, + [1697] = {.lex_state = 319, .external_lex_state = 45}, + [1698] = {.lex_state = 314, .external_lex_state = 42}, + [1699] = {.lex_state = 294, .external_lex_state = 24}, + [1700] = {.lex_state = 576, .external_lex_state = 42}, + [1701] = {.lex_state = 577, .external_lex_state = 42}, + [1702] = {.lex_state = 294, .external_lex_state = 24}, + [1703] = {.lex_state = 577, .external_lex_state = 45}, + [1704] = {.lex_state = 577, .external_lex_state = 42}, + [1705] = {.lex_state = 577, .external_lex_state = 42}, + [1706] = {.lex_state = 576, .external_lex_state = 42}, + [1707] = {.lex_state = 576, .external_lex_state = 42}, + [1708] = {.lex_state = 318, .external_lex_state = 42}, + [1709] = {.lex_state = 577, .external_lex_state = 42}, + [1710] = {.lex_state = 310, .external_lex_state = 45}, + [1711] = {.lex_state = 577, .external_lex_state = 42}, + [1712] = {.lex_state = 576, .external_lex_state = 42}, + [1713] = {.lex_state = 310, .external_lex_state = 45}, + [1714] = {.lex_state = 577, .external_lex_state = 45}, + [1715] = {.lex_state = 267, .external_lex_state = 18}, + [1716] = {.lex_state = 318, .external_lex_state = 42}, + [1717] = {.lex_state = 318, .external_lex_state = 42}, + [1718] = {.lex_state = 312, .external_lex_state = 45}, + [1719] = {.lex_state = 317, .external_lex_state = 41}, + [1720] = {.lex_state = 319, .external_lex_state = 45}, + [1721] = {.lex_state = 577, .external_lex_state = 42}, + [1722] = {.lex_state = 576, .external_lex_state = 42}, + [1723] = {.lex_state = 318, .external_lex_state = 42}, + [1724] = {.lex_state = 310, .external_lex_state = 45}, + [1725] = {.lex_state = 314, .external_lex_state = 42}, + [1726] = {.lex_state = 577, .external_lex_state = 42}, + [1727] = {.lex_state = 576, .external_lex_state = 42}, + [1728] = {.lex_state = 318, .external_lex_state = 42}, + [1729] = {.lex_state = 310, .external_lex_state = 45}, + [1730] = {.lex_state = 318, .external_lex_state = 45}, + [1731] = {.lex_state = 310, .external_lex_state = 45}, + [1732] = {.lex_state = 318, .external_lex_state = 45}, + [1733] = {.lex_state = 576, .external_lex_state = 42}, + [1734] = {.lex_state = 576, .external_lex_state = 42}, + [1735] = {.lex_state = 319, .external_lex_state = 45}, + [1736] = {.lex_state = 273, .external_lex_state = 17}, + [1737] = {.lex_state = 577, .external_lex_state = 42}, + [1738] = {.lex_state = 577, .external_lex_state = 42}, + [1739] = {.lex_state = 318, .external_lex_state = 45}, + [1740] = {.lex_state = 577, .external_lex_state = 42}, + [1741] = {.lex_state = 312, .external_lex_state = 45}, + [1742] = {.lex_state = 576, .external_lex_state = 42}, + [1743] = {.lex_state = 273, .external_lex_state = 17}, + [1744] = {.lex_state = 273, .external_lex_state = 17}, + [1745] = {.lex_state = 318, .external_lex_state = 45}, + [1746] = {.lex_state = 576, .external_lex_state = 45}, + [1747] = {.lex_state = 318, .external_lex_state = 42}, + [1748] = {.lex_state = 577, .external_lex_state = 42}, + [1749] = {.lex_state = 576, .external_lex_state = 42}, + [1750] = {.lex_state = 576, .external_lex_state = 42}, + [1751] = {.lex_state = 576, .external_lex_state = 42}, + [1752] = {.lex_state = 576, .external_lex_state = 45}, + [1753] = {.lex_state = 318, .external_lex_state = 42}, + [1754] = {.lex_state = 312, .external_lex_state = 45}, + [1755] = {.lex_state = 566, .external_lex_state = 16}, + [1756] = {.lex_state = 566, .external_lex_state = 16}, + [1757] = {.lex_state = 576, .external_lex_state = 45}, + [1758] = {.lex_state = 566, .external_lex_state = 16}, + [1759] = {.lex_state = 310, .external_lex_state = 45}, + [1760] = {.lex_state = 309, .external_lex_state = 47}, + [1761] = {.lex_state = 279, .external_lex_state = 18}, + [1762] = {.lex_state = 317, .external_lex_state = 41}, + [1763] = {.lex_state = 314, .external_lex_state = 45}, + [1764] = {.lex_state = 455, .external_lex_state = 48}, + [1765] = {.lex_state = 317, .external_lex_state = 41}, + [1766] = {.lex_state = 261, .external_lex_state = 16}, + [1767] = {.lex_state = 577, .external_lex_state = 42}, + [1768] = {.lex_state = 309, .external_lex_state = 47}, + [1769] = {.lex_state = 279, .external_lex_state = 18}, + [1770] = {.lex_state = 566, .external_lex_state = 16}, + [1771] = {.lex_state = 576, .external_lex_state = 45}, + [1772] = {.lex_state = 312, .external_lex_state = 45}, + [1773] = {.lex_state = 300, .external_lex_state = 4}, + [1774] = {.lex_state = 312, .external_lex_state = 45}, + [1775] = {.lex_state = 577, .external_lex_state = 42}, + [1776] = {.lex_state = 577, .external_lex_state = 42}, + [1777] = {.lex_state = 577, .external_lex_state = 42}, + [1778] = {.lex_state = 264, .external_lex_state = 17}, + [1779] = {.lex_state = 273, .external_lex_state = 21}, + [1780] = {.lex_state = 312, .external_lex_state = 45}, + [1781] = {.lex_state = 300, .external_lex_state = 4}, + [1782] = {.lex_state = 312, .external_lex_state = 45}, + [1783] = {.lex_state = 576, .external_lex_state = 42}, + [1784] = {.lex_state = 314, .external_lex_state = 42}, + [1785] = {.lex_state = 312, .external_lex_state = 45}, + [1786] = {.lex_state = 576, .external_lex_state = 45}, + [1787] = {.lex_state = 576, .external_lex_state = 42}, + [1788] = {.lex_state = 576, .external_lex_state = 42}, + [1789] = {.lex_state = 577, .external_lex_state = 42}, + [1790] = {.lex_state = 577, .external_lex_state = 42}, + [1791] = {.lex_state = 577, .external_lex_state = 42}, + [1792] = {.lex_state = 317, .external_lex_state = 41}, + [1793] = {.lex_state = 577, .external_lex_state = 45}, + [1794] = {.lex_state = 576, .external_lex_state = 42}, + [1795] = {.lex_state = 273, .external_lex_state = 17}, + [1796] = {.lex_state = 314, .external_lex_state = 42}, + [1797] = {.lex_state = 314, .external_lex_state = 42}, + [1798] = {.lex_state = 279, .external_lex_state = 18}, + [1799] = {.lex_state = 577, .external_lex_state = 42}, + [1800] = {.lex_state = 577, .external_lex_state = 42}, + [1801] = {.lex_state = 576, .external_lex_state = 42}, + [1802] = {.lex_state = 317, .external_lex_state = 41}, + [1803] = {.lex_state = 576, .external_lex_state = 42}, + [1804] = {.lex_state = 455, .external_lex_state = 48}, + [1805] = {.lex_state = 261, .external_lex_state = 16}, + [1806] = {.lex_state = 314, .external_lex_state = 42}, + [1807] = {.lex_state = 317, .external_lex_state = 41}, + [1808] = {.lex_state = 577, .external_lex_state = 42}, + [1809] = {.lex_state = 312, .external_lex_state = 45}, + [1810] = {.lex_state = 314, .external_lex_state = 42}, + [1811] = {.lex_state = 576, .external_lex_state = 42}, + [1812] = {.lex_state = 312, .external_lex_state = 45}, + [1813] = {.lex_state = 318, .external_lex_state = 42}, + [1814] = {.lex_state = 279, .external_lex_state = 18}, + [1815] = {.lex_state = 576, .external_lex_state = 45}, + [1816] = {.lex_state = 566, .external_lex_state = 16}, + [1817] = {.lex_state = 310, .external_lex_state = 45}, + [1818] = {.lex_state = 314, .external_lex_state = 42}, + [1819] = {.lex_state = 314, .external_lex_state = 42}, + [1820] = {.lex_state = 318, .external_lex_state = 42}, + [1821] = {.lex_state = 318, .external_lex_state = 42}, + [1822] = {.lex_state = 314, .external_lex_state = 42}, + [1823] = {.lex_state = 310, .external_lex_state = 45}, + [1824] = {.lex_state = 576, .external_lex_state = 42}, + [1825] = {.lex_state = 318, .external_lex_state = 42}, + [1826] = {.lex_state = 314, .external_lex_state = 42}, + [1827] = {.lex_state = 312, .external_lex_state = 45}, + [1828] = {.lex_state = 317, .external_lex_state = 41}, + [1829] = {.lex_state = 576, .external_lex_state = 42}, + [1830] = {.lex_state = 577, .external_lex_state = 45}, + [1831] = {.lex_state = 318, .external_lex_state = 42}, + [1832] = {.lex_state = 577, .external_lex_state = 42}, + [1833] = {.lex_state = 566, .external_lex_state = 16}, + [1834] = {.lex_state = 314, .external_lex_state = 45}, + [1835] = {.lex_state = 314, .external_lex_state = 45}, + [1836] = {.lex_state = 577, .external_lex_state = 45}, + [1837] = {.lex_state = 566, .external_lex_state = 16}, + [1838] = {.lex_state = 455, .external_lex_state = 48}, + [1839] = {.lex_state = 273, .external_lex_state = 21}, + [1840] = {.lex_state = 264, .external_lex_state = 21}, + [1841] = {.lex_state = 566, .external_lex_state = 16}, + [1842] = {.lex_state = 576, .external_lex_state = 45}, + [1843] = {.lex_state = 318, .external_lex_state = 42}, + [1844] = {.lex_state = 318, .external_lex_state = 42}, + [1845] = {.lex_state = 576, .external_lex_state = 45}, + [1846] = {.lex_state = 576, .external_lex_state = 42}, + [1847] = {.lex_state = 318, .external_lex_state = 42}, + [1848] = {.lex_state = 577, .external_lex_state = 42}, + [1849] = {.lex_state = 577, .external_lex_state = 42}, + [1850] = {.lex_state = 317, .external_lex_state = 41}, + [1851] = {.lex_state = 273, .external_lex_state = 17}, + [1852] = {.lex_state = 577, .external_lex_state = 42}, + [1853] = {.lex_state = 264, .external_lex_state = 17}, + [1854] = {.lex_state = 310, .external_lex_state = 45}, + [1855] = {.lex_state = 576, .external_lex_state = 42}, + [1856] = {.lex_state = 576, .external_lex_state = 42}, + [1857] = {.lex_state = 273, .external_lex_state = 17}, + [1858] = {.lex_state = 577, .external_lex_state = 42}, + [1859] = {.lex_state = 577, .external_lex_state = 42}, + [1860] = {.lex_state = 577, .external_lex_state = 42}, + [1861] = {.lex_state = 576, .external_lex_state = 45}, + [1862] = {.lex_state = 576, .external_lex_state = 42}, + [1863] = {.lex_state = 576, .external_lex_state = 42}, + [1864] = {.lex_state = 576, .external_lex_state = 42}, + [1865] = {.lex_state = 267, .external_lex_state = 18}, + [1866] = {.lex_state = 577, .external_lex_state = 45}, + [1867] = {.lex_state = 577, .external_lex_state = 42}, + [1868] = {.lex_state = 576, .external_lex_state = 45}, + [1869] = {.lex_state = 318, .external_lex_state = 42}, + [1870] = {.lex_state = 314, .external_lex_state = 42}, + [1871] = {.lex_state = 314, .external_lex_state = 42}, + [1872] = {.lex_state = 576, .external_lex_state = 42}, + [1873] = {.lex_state = 576, .external_lex_state = 42}, + [1874] = {.lex_state = 576, .external_lex_state = 42}, + [1875] = {.lex_state = 576, .external_lex_state = 42}, + [1876] = {.lex_state = 576, .external_lex_state = 42}, + [1877] = {.lex_state = 314, .external_lex_state = 42}, + [1878] = {.lex_state = 577, .external_lex_state = 42}, + [1879] = {.lex_state = 577, .external_lex_state = 42}, + [1880] = {.lex_state = 576, .external_lex_state = 45}, + [1881] = {.lex_state = 577, .external_lex_state = 42}, + [1882] = {.lex_state = 318, .external_lex_state = 45}, + [1883] = {.lex_state = 279, .external_lex_state = 18}, + [1884] = {.lex_state = 576, .external_lex_state = 42}, + [1885] = {.lex_state = 318, .external_lex_state = 45}, + [1886] = {.lex_state = 310, .external_lex_state = 45}, + [1887] = {.lex_state = 577, .external_lex_state = 42}, + [1888] = {.lex_state = 455, .external_lex_state = 48}, + [1889] = {.lex_state = 273, .external_lex_state = 17}, + [1890] = {.lex_state = 455, .external_lex_state = 48}, + [1891] = {.lex_state = 577, .external_lex_state = 42}, + [1892] = {.lex_state = 577, .external_lex_state = 42}, + [1893] = {.lex_state = 566, .external_lex_state = 16}, + [1894] = {.lex_state = 576, .external_lex_state = 42}, + [1895] = {.lex_state = 577, .external_lex_state = 42}, + [1896] = {.lex_state = 273, .external_lex_state = 17}, + [1897] = {.lex_state = 279, .external_lex_state = 18}, + [1898] = {.lex_state = 577, .external_lex_state = 42}, + [1899] = {.lex_state = 576, .external_lex_state = 42}, + [1900] = {.lex_state = 577, .external_lex_state = 42}, + [1901] = {.lex_state = 576, .external_lex_state = 42}, + [1902] = {.lex_state = 279, .external_lex_state = 18}, + [1903] = {.lex_state = 261, .external_lex_state = 16}, + [1904] = {.lex_state = 300, .external_lex_state = 4}, + [1905] = {.lex_state = 577, .external_lex_state = 45}, + [1906] = {.lex_state = 300, .external_lex_state = 4}, + [1907] = {.lex_state = 300, .external_lex_state = 4}, + [1908] = {.lex_state = 310, .external_lex_state = 45}, + [1909] = {.lex_state = 566, .external_lex_state = 16}, + [1910] = {.lex_state = 312, .external_lex_state = 45}, + [1911] = {.lex_state = 577, .external_lex_state = 45}, + [1912] = {.lex_state = 576, .external_lex_state = 42}, + [1913] = {.lex_state = 577, .external_lex_state = 42}, + [1914] = {.lex_state = 273, .external_lex_state = 17}, + [1915] = {.lex_state = 318, .external_lex_state = 42}, + [1916] = {.lex_state = 318, .external_lex_state = 42}, + [1917] = {.lex_state = 318, .external_lex_state = 42}, + [1918] = {.lex_state = 312, .external_lex_state = 45}, + [1919] = {.lex_state = 577, .external_lex_state = 45}, + [1920] = {.lex_state = 279, .external_lex_state = 18}, + [1921] = {.lex_state = 576, .external_lex_state = 42}, + [1922] = {.lex_state = 317, .external_lex_state = 41}, + [1923] = {.lex_state = 300, .external_lex_state = 4}, + [1924] = {.lex_state = 279, .external_lex_state = 18}, + [1925] = {.lex_state = 264, .external_lex_state = 21}, + [1926] = {.lex_state = 317, .external_lex_state = 41}, + [1927] = {.lex_state = 310, .external_lex_state = 45}, + [1928] = {.lex_state = 317, .external_lex_state = 41}, + [1929] = {.lex_state = 317, .external_lex_state = 41}, + [1930] = {.lex_state = 273, .external_lex_state = 17}, + [1931] = {.lex_state = 319, .external_lex_state = 45}, + [1932] = {.lex_state = 319, .external_lex_state = 45}, + [1933] = {.lex_state = 577, .external_lex_state = 42}, + [1934] = {.lex_state = 577, .external_lex_state = 45}, + [1935] = {.lex_state = 455, .external_lex_state = 48}, + [1936] = {.lex_state = 577, .external_lex_state = 42}, + [1937] = {.lex_state = 279, .external_lex_state = 18}, + [1938] = {.lex_state = 310, .external_lex_state = 45}, + [1939] = {.lex_state = 576, .external_lex_state = 42}, + [1940] = {.lex_state = 317, .external_lex_state = 41}, + [1941] = {.lex_state = 312, .external_lex_state = 45}, + [1942] = {.lex_state = 317, .external_lex_state = 41}, + [1943] = {.lex_state = 312, .external_lex_state = 45}, + [1944] = {.lex_state = 317, .external_lex_state = 41}, + [1945] = {.lex_state = 578, .external_lex_state = 45}, + [1946] = {.lex_state = 568, .external_lex_state = 18}, + [1947] = {.lex_state = 571, .external_lex_state = 18}, + [1948] = {.lex_state = 578, .external_lex_state = 45}, + [1949] = {.lex_state = 576, .external_lex_state = 45}, + [1950] = {.lex_state = 576, .external_lex_state = 45}, + [1951] = {.lex_state = 576, .external_lex_state = 45}, + [1952] = {.lex_state = 576, .external_lex_state = 45}, + [1953] = {.lex_state = 576, .external_lex_state = 45}, + [1954] = {.lex_state = 576, .external_lex_state = 45}, + [1955] = {.lex_state = 576, .external_lex_state = 45}, + [1956] = {.lex_state = 455, .external_lex_state = 49}, + [1957] = {.lex_state = 576, .external_lex_state = 45}, + [1958] = {.lex_state = 578, .external_lex_state = 45}, + [1959] = {.lex_state = 576, .external_lex_state = 45}, + [1960] = {.lex_state = 578, .external_lex_state = 45}, + [1961] = {.lex_state = 576, .external_lex_state = 45}, + [1962] = {.lex_state = 578, .external_lex_state = 45}, + [1963] = {.lex_state = 576, .external_lex_state = 45}, + [1964] = {.lex_state = 576, .external_lex_state = 45}, + [1965] = {.lex_state = 576, .external_lex_state = 45}, + [1966] = {.lex_state = 576, .external_lex_state = 45}, + [1967] = {.lex_state = 576, .external_lex_state = 45}, + [1968] = {.lex_state = 455, .external_lex_state = 49}, + [1969] = {.lex_state = 576, .external_lex_state = 45}, + [1970] = {.lex_state = 576, .external_lex_state = 45}, + [1971] = {.lex_state = 576, .external_lex_state = 45}, + [1972] = {.lex_state = 576, .external_lex_state = 45}, + [1973] = {.lex_state = 576, .external_lex_state = 45}, + [1974] = {.lex_state = 576, .external_lex_state = 45}, + [1975] = {.lex_state = 576, .external_lex_state = 45}, + [1976] = {.lex_state = 576, .external_lex_state = 45}, + [1977] = {.lex_state = 576, .external_lex_state = 45}, + [1978] = {.lex_state = 576, .external_lex_state = 45}, + [1979] = {.lex_state = 576, .external_lex_state = 45}, + [1980] = {.lex_state = 321, .external_lex_state = 45}, + [1981] = {.lex_state = 321, .external_lex_state = 45}, + [1982] = {.lex_state = 321, .external_lex_state = 45}, + [1983] = {.lex_state = 314, .external_lex_state = 45}, + [1984] = {.lex_state = 314, .external_lex_state = 45}, + [1985] = {.lex_state = 314, .external_lex_state = 45}, + [1986] = {.lex_state = 314, .external_lex_state = 45}, + [1987] = {.lex_state = 314, .external_lex_state = 45}, + [1988] = {.lex_state = 321, .external_lex_state = 45}, + [1989] = {.lex_state = 314, .external_lex_state = 45}, + [1990] = {.lex_state = 314, .external_lex_state = 45}, + [1991] = {.lex_state = 576, .external_lex_state = 45}, + [1992] = {.lex_state = 576, .external_lex_state = 45}, + [1993] = {.lex_state = 576, .external_lex_state = 45}, + [1994] = {.lex_state = 576, .external_lex_state = 45}, + [1995] = {.lex_state = 576, .external_lex_state = 45}, + [1996] = {.lex_state = 576, .external_lex_state = 45}, + [1997] = {.lex_state = 576, .external_lex_state = 45}, + [1998] = {.lex_state = 576, .external_lex_state = 45}, + [1999] = {.lex_state = 576, .external_lex_state = 45}, + [2000] = {.lex_state = 576, .external_lex_state = 45}, + [2001] = {.lex_state = 576, .external_lex_state = 45}, + [2002] = {.lex_state = 576, .external_lex_state = 45}, + [2003] = {.lex_state = 314, .external_lex_state = 45}, + [2004] = {.lex_state = 314, .external_lex_state = 45}, + [2005] = {.lex_state = 314, .external_lex_state = 45}, + [2006] = {.lex_state = 314, .external_lex_state = 45}, + [2007] = {.lex_state = 314, .external_lex_state = 45}, + [2008] = {.lex_state = 314, .external_lex_state = 45}, + [2009] = {.lex_state = 314, .external_lex_state = 45}, + [2010] = {.lex_state = 314, .external_lex_state = 45}, + [2011] = {.lex_state = 314, .external_lex_state = 45}, + [2012] = {.lex_state = 314, .external_lex_state = 45}, + [2013] = {.lex_state = 314, .external_lex_state = 45}, + [2014] = {.lex_state = 314, .external_lex_state = 45}, + [2015] = {.lex_state = 571, .external_lex_state = 18}, + [2016] = {.lex_state = 571, .external_lex_state = 18}, + [2017] = {.lex_state = 571, .external_lex_state = 18}, + [2018] = {.lex_state = 578, .external_lex_state = 45}, + [2019] = {.lex_state = 578, .external_lex_state = 45}, + [2020] = {.lex_state = 571, .external_lex_state = 18}, + [2021] = {.lex_state = 267, .external_lex_state = 23}, + [2022] = {.lex_state = 490, .external_lex_state = 26}, + [2023] = {.lex_state = 455, .external_lex_state = 49}, + [2024] = {.lex_state = 264, .external_lex_state = 21}, + [2025] = {.lex_state = 279, .external_lex_state = 18}, + [2026] = {.lex_state = 288, .external_lex_state = 21}, + [2027] = {.lex_state = 279, .external_lex_state = 18}, + [2028] = {.lex_state = 279, .external_lex_state = 18}, + [2029] = {.lex_state = 273, .external_lex_state = 21}, + [2030] = {.lex_state = 568, .external_lex_state = 18}, + [2031] = {.lex_state = 568, .external_lex_state = 18}, + [2032] = {.lex_state = 319, .external_lex_state = 45}, + [2033] = {.lex_state = 319, .external_lex_state = 45}, + [2034] = {.lex_state = 577, .external_lex_state = 45}, + [2035] = {.lex_state = 319, .external_lex_state = 45}, + [2036] = {.lex_state = 319, .external_lex_state = 45}, + [2037] = {.lex_state = 319, .external_lex_state = 45}, + [2038] = {.lex_state = 276, .external_lex_state = 18}, + [2039] = {.lex_state = 577, .external_lex_state = 45}, + [2040] = {.lex_state = 577, .external_lex_state = 45}, + [2041] = {.lex_state = 279, .external_lex_state = 18}, + [2042] = {.lex_state = 577, .external_lex_state = 45}, + [2043] = {.lex_state = 319, .external_lex_state = 45}, + [2044] = {.lex_state = 577, .external_lex_state = 45}, + [2045] = {.lex_state = 319, .external_lex_state = 45}, + [2046] = {.lex_state = 577, .external_lex_state = 45}, + [2047] = {.lex_state = 577, .external_lex_state = 45}, + [2048] = {.lex_state = 577, .external_lex_state = 45}, + [2049] = {.lex_state = 267, .external_lex_state = 18}, + [2050] = {.lex_state = 578, .external_lex_state = 45}, + [2051] = {.lex_state = 578, .external_lex_state = 45}, + [2052] = {.lex_state = 577, .external_lex_state = 45}, + [2053] = {.lex_state = 577, .external_lex_state = 45}, + [2054] = {.lex_state = 577, .external_lex_state = 45}, + [2055] = {.lex_state = 267, .external_lex_state = 23}, + [2056] = {.lex_state = 577, .external_lex_state = 45}, + [2057] = {.lex_state = 577, .external_lex_state = 45}, + [2058] = {.lex_state = 282, .external_lex_state = 18}, + [2059] = {.lex_state = 577, .external_lex_state = 45}, + [2060] = {.lex_state = 577, .external_lex_state = 45}, + [2061] = {.lex_state = 577, .external_lex_state = 45}, + [2062] = {.lex_state = 577, .external_lex_state = 45}, + [2063] = {.lex_state = 577, .external_lex_state = 45}, + [2064] = {.lex_state = 577, .external_lex_state = 45}, + [2065] = {.lex_state = 319, .external_lex_state = 45}, + [2066] = {.lex_state = 319, .external_lex_state = 45}, + [2067] = {.lex_state = 279, .external_lex_state = 23}, + [2068] = {.lex_state = 276, .external_lex_state = 18}, + [2069] = {.lex_state = 319, .external_lex_state = 45}, + [2070] = {.lex_state = 319, .external_lex_state = 45}, + [2071] = {.lex_state = 282, .external_lex_state = 18}, + [2072] = {.lex_state = 282, .external_lex_state = 18}, + [2073] = {.lex_state = 321, .external_lex_state = 45}, + [2074] = {.lex_state = 321, .external_lex_state = 45}, + [2075] = {.lex_state = 571, .external_lex_state = 18}, + [2076] = {.lex_state = 319, .external_lex_state = 45}, + [2077] = {.lex_state = 319, .external_lex_state = 45}, + [2078] = {.lex_state = 319, .external_lex_state = 45}, + [2079] = {.lex_state = 319, .external_lex_state = 45}, + [2080] = {.lex_state = 319, .external_lex_state = 45}, + [2081] = {.lex_state = 571, .external_lex_state = 18}, + [2082] = {.lex_state = 319, .external_lex_state = 45}, + [2083] = {.lex_state = 319, .external_lex_state = 45}, + [2084] = {.lex_state = 319, .external_lex_state = 45}, + [2085] = {.lex_state = 282, .external_lex_state = 18}, + [2086] = {.lex_state = 282, .external_lex_state = 18}, + [2087] = {.lex_state = 455, .external_lex_state = 49}, + [2088] = {.lex_state = 568, .external_lex_state = 18}, + [2089] = {.lex_state = 282, .external_lex_state = 18}, + [2090] = {.lex_state = 576, .external_lex_state = 45}, + [2091] = {.lex_state = 576, .external_lex_state = 45}, + [2092] = {.lex_state = 576, .external_lex_state = 45}, + [2093] = {.lex_state = 577, .external_lex_state = 45}, + [2094] = {.lex_state = 577, .external_lex_state = 45}, + [2095] = {.lex_state = 577, .external_lex_state = 45}, + [2096] = {.lex_state = 577, .external_lex_state = 45}, + [2097] = {.lex_state = 577, .external_lex_state = 45}, + [2098] = {.lex_state = 455, .external_lex_state = 49}, + [2099] = {.lex_state = 455, .external_lex_state = 43}, + [2100] = {.lex_state = 571, .external_lex_state = 18}, + [2101] = {.lex_state = 279, .external_lex_state = 18}, + [2102] = {.lex_state = 568, .external_lex_state = 18}, + [2103] = {.lex_state = 577, .external_lex_state = 45}, + [2104] = {.lex_state = 577, .external_lex_state = 45}, + [2105] = {.lex_state = 576, .external_lex_state = 45}, + [2106] = {.lex_state = 576, .external_lex_state = 45}, + [2107] = {.lex_state = 455, .external_lex_state = 43}, + [2108] = {.lex_state = 577, .external_lex_state = 45}, + [2109] = {.lex_state = 577, .external_lex_state = 45}, + [2110] = {.lex_state = 571, .external_lex_state = 18}, + [2111] = {.lex_state = 455, .external_lex_state = 43}, + [2112] = {.lex_state = 282, .external_lex_state = 18}, + [2113] = {.lex_state = 300, .external_lex_state = 34}, + [2114] = {.lex_state = 300, .external_lex_state = 34}, + [2115] = {.lex_state = 267, .external_lex_state = 18}, + [2116] = {.lex_state = 455, .external_lex_state = 43}, + [2117] = {.lex_state = 455, .external_lex_state = 43}, + [2118] = {.lex_state = 279, .external_lex_state = 18}, + [2119] = {.lex_state = 455, .external_lex_state = 43}, + [2120] = {.lex_state = 279, .external_lex_state = 18}, + [2121] = {.lex_state = 455, .external_lex_state = 43}, + [2122] = {.lex_state = 455, .external_lex_state = 43}, + [2123] = {.lex_state = 279, .external_lex_state = 18}, + [2124] = {.lex_state = 276, .external_lex_state = 18}, + [2125] = {.lex_state = 279, .external_lex_state = 18}, + [2126] = {.lex_state = 267, .external_lex_state = 18}, + [2127] = {.lex_state = 267, .external_lex_state = 18}, + [2128] = {.lex_state = 577, .external_lex_state = 45}, + [2129] = {.lex_state = 318, .external_lex_state = 45}, + [2130] = {.lex_state = 577, .external_lex_state = 45}, + [2131] = {.lex_state = 577, .external_lex_state = 45}, + [2132] = {.lex_state = 318, .external_lex_state = 45}, + [2133] = {.lex_state = 318, .external_lex_state = 45}, + [2134] = {.lex_state = 492, .external_lex_state = 50}, + [2135] = {.lex_state = 571, .external_lex_state = 18}, + [2136] = {.lex_state = 577, .external_lex_state = 45}, + [2137] = {.lex_state = 492, .external_lex_state = 50}, + [2138] = {.lex_state = 318, .external_lex_state = 45}, + [2139] = {.lex_state = 492, .external_lex_state = 50}, + [2140] = {.lex_state = 577, .external_lex_state = 45}, + [2141] = {.lex_state = 318, .external_lex_state = 45}, + [2142] = {.lex_state = 577, .external_lex_state = 45}, + [2143] = {.lex_state = 577, .external_lex_state = 45}, + [2144] = {.lex_state = 488, .external_lex_state = 33}, + [2145] = {.lex_state = 577, .external_lex_state = 45}, + [2146] = {.lex_state = 318, .external_lex_state = 45}, + [2147] = {.lex_state = 577, .external_lex_state = 45}, + [2148] = {.lex_state = 318, .external_lex_state = 45}, + [2149] = {.lex_state = 488, .external_lex_state = 33}, + [2150] = {.lex_state = 577, .external_lex_state = 45}, + [2151] = {.lex_state = 577, .external_lex_state = 45}, + [2152] = {.lex_state = 577, .external_lex_state = 45}, + [2153] = {.lex_state = 488, .external_lex_state = 33}, + [2154] = {.lex_state = 288, .external_lex_state = 21}, + [2155] = {.lex_state = 455, .external_lex_state = 49}, + [2156] = {.lex_state = 318, .external_lex_state = 45}, + [2157] = {.lex_state = 490, .external_lex_state = 26}, + [2158] = {.lex_state = 279, .external_lex_state = 18}, + [2159] = {.lex_state = 318, .external_lex_state = 45}, + [2160] = {.lex_state = 318, .external_lex_state = 45}, + [2161] = {.lex_state = 279, .external_lex_state = 18}, + [2162] = {.lex_state = 318, .external_lex_state = 45}, + [2163] = {.lex_state = 318, .external_lex_state = 45}, + [2164] = {.lex_state = 571, .external_lex_state = 18}, + [2165] = {.lex_state = 318, .external_lex_state = 45}, + [2166] = {.lex_state = 318, .external_lex_state = 45}, + [2167] = {.lex_state = 318, .external_lex_state = 45}, + [2168] = {.lex_state = 318, .external_lex_state = 45}, + [2169] = {.lex_state = 571, .external_lex_state = 18}, + [2170] = {.lex_state = 490, .external_lex_state = 26}, + [2171] = {.lex_state = 571, .external_lex_state = 18}, + [2172] = {.lex_state = 318, .external_lex_state = 45}, + [2173] = {.lex_state = 318, .external_lex_state = 45}, + [2174] = {.lex_state = 318, .external_lex_state = 45}, + [2175] = {.lex_state = 577, .external_lex_state = 45}, + [2176] = {.lex_state = 577, .external_lex_state = 45}, + [2177] = {.lex_state = 279, .external_lex_state = 23}, + [2178] = {.lex_state = 568, .external_lex_state = 18}, + [2179] = {.lex_state = 455, .external_lex_state = 49}, + [2180] = {.lex_state = 492, .external_lex_state = 50}, + [2181] = {.lex_state = 492, .external_lex_state = 50}, + [2182] = {.lex_state = 577, .external_lex_state = 45}, + [2183] = {.lex_state = 492, .external_lex_state = 50}, + [2184] = {.lex_state = 300, .external_lex_state = 34}, + [2185] = {.lex_state = 300, .external_lex_state = 34}, + [2186] = {.lex_state = 300, .external_lex_state = 34}, + [2187] = {.lex_state = 300, .external_lex_state = 34}, + [2188] = {.lex_state = 492, .external_lex_state = 50}, + [2189] = {.lex_state = 578, .external_lex_state = 45}, + [2190] = {.lex_state = 578, .external_lex_state = 45}, + [2191] = {.lex_state = 300, .external_lex_state = 34}, + [2192] = {.lex_state = 300, .external_lex_state = 34}, + [2193] = {.lex_state = 300, .external_lex_state = 34}, + [2194] = {.lex_state = 300, .external_lex_state = 34}, + [2195] = {.lex_state = 300, .external_lex_state = 34}, + [2196] = {.lex_state = 578, .external_lex_state = 45}, + [2197] = {.lex_state = 571, .external_lex_state = 18}, + [2198] = {.lex_state = 321, .external_lex_state = 45}, + [2199] = {.lex_state = 578, .external_lex_state = 45}, + [2200] = {.lex_state = 455, .external_lex_state = 43}, + [2201] = {.lex_state = 492, .external_lex_state = 50}, + [2202] = {.lex_state = 492, .external_lex_state = 50}, + [2203] = {.lex_state = 321, .external_lex_state = 45}, + [2204] = {.lex_state = 321, .external_lex_state = 45}, + [2205] = {.lex_state = 321, .external_lex_state = 45}, + [2206] = {.lex_state = 578, .external_lex_state = 45}, + [2207] = {.lex_state = 578, .external_lex_state = 45}, + [2208] = {.lex_state = 492, .external_lex_state = 50}, + [2209] = {.lex_state = 568, .external_lex_state = 18}, + [2210] = {.lex_state = 571, .external_lex_state = 18}, + [2211] = {.lex_state = 571, .external_lex_state = 18}, + [2212] = {.lex_state = 571, .external_lex_state = 18}, + [2213] = {.lex_state = 571, .external_lex_state = 23}, + [2214] = {.lex_state = 571, .external_lex_state = 18}, + [2215] = {.lex_state = 578, .external_lex_state = 45}, + [2216] = {.lex_state = 571, .external_lex_state = 18}, + [2217] = {.lex_state = 492, .external_lex_state = 50}, + [2218] = {.lex_state = 571, .external_lex_state = 18}, + [2219] = {.lex_state = 455, .external_lex_state = 43}, + [2220] = {.lex_state = 455, .external_lex_state = 43}, + [2221] = {.lex_state = 455, .external_lex_state = 43}, + [2222] = {.lex_state = 455, .external_lex_state = 43}, + [2223] = {.lex_state = 455, .external_lex_state = 43}, + [2224] = {.lex_state = 455, .external_lex_state = 43}, + [2225] = {.lex_state = 455, .external_lex_state = 43}, + [2226] = {.lex_state = 455, .external_lex_state = 43}, + [2227] = {.lex_state = 455, .external_lex_state = 43}, + [2228] = {.lex_state = 455, .external_lex_state = 43}, + [2229] = {.lex_state = 455, .external_lex_state = 43}, + [2230] = {.lex_state = 455, .external_lex_state = 43}, + [2231] = {.lex_state = 455, .external_lex_state = 43}, + [2232] = {.lex_state = 455, .external_lex_state = 43}, + [2233] = {.lex_state = 455, .external_lex_state = 43}, + [2234] = {.lex_state = 578, .external_lex_state = 45}, + [2235] = {.lex_state = 571, .external_lex_state = 18}, + [2236] = {.lex_state = 571, .external_lex_state = 23}, + [2237] = {.lex_state = 578, .external_lex_state = 45}, + [2238] = {.lex_state = 571, .external_lex_state = 18}, + [2239] = {.lex_state = 288, .external_lex_state = 21}, + [2240] = {.lex_state = 578, .external_lex_state = 45}, + [2241] = {.lex_state = 468, .external_lex_state = 51}, + [2242] = {.lex_state = 578, .external_lex_state = 45}, + [2243] = {.lex_state = 578, .external_lex_state = 45}, + [2244] = {.lex_state = 492, .external_lex_state = 50}, + [2245] = {.lex_state = 568, .external_lex_state = 18}, + [2246] = {.lex_state = 492, .external_lex_state = 50}, + [2247] = {.lex_state = 568, .external_lex_state = 18}, + [2248] = {.lex_state = 492, .external_lex_state = 50}, + [2249] = {.lex_state = 571, .external_lex_state = 18}, + [2250] = {.lex_state = 578, .external_lex_state = 45}, + [2251] = {.lex_state = 455, .external_lex_state = 43}, + [2252] = {.lex_state = 568, .external_lex_state = 23}, + [2253] = {.lex_state = 578, .external_lex_state = 45}, + [2254] = {.lex_state = 276, .external_lex_state = 18}, + [2255] = {.lex_state = 455, .external_lex_state = 43}, + [2256] = {.lex_state = 455, .external_lex_state = 43}, + [2257] = {.lex_state = 578, .external_lex_state = 45}, + [2258] = {.lex_state = 578, .external_lex_state = 45}, + [2259] = {.lex_state = 571, .external_lex_state = 18}, + [2260] = {.lex_state = 578, .external_lex_state = 45}, + [2261] = {.lex_state = 578, .external_lex_state = 45}, + [2262] = {.lex_state = 568, .external_lex_state = 18}, + [2263] = {.lex_state = 578, .external_lex_state = 45}, + [2264] = {.lex_state = 578, .external_lex_state = 45}, + [2265] = {.lex_state = 455, .external_lex_state = 43}, + [2266] = {.lex_state = 455, .external_lex_state = 43}, + [2267] = {.lex_state = 568, .external_lex_state = 18}, + [2268] = {.lex_state = 578, .external_lex_state = 45}, + [2269] = {.lex_state = 282, .external_lex_state = 18}, + [2270] = {.lex_state = 282, .external_lex_state = 18}, + [2271] = {.lex_state = 578, .external_lex_state = 45}, + [2272] = {.lex_state = 578, .external_lex_state = 45}, + [2273] = {.lex_state = 455, .external_lex_state = 43}, + [2274] = {.lex_state = 267, .external_lex_state = 23}, + [2275] = {.lex_state = 578, .external_lex_state = 45}, + [2276] = {.lex_state = 578, .external_lex_state = 45}, + [2277] = {.lex_state = 282, .external_lex_state = 18}, + [2278] = {.lex_state = 276, .external_lex_state = 18}, + [2279] = {.lex_state = 290, .external_lex_state = 23}, + [2280] = {.lex_state = 276, .external_lex_state = 18}, + [2281] = {.lex_state = 455, .external_lex_state = 43}, + [2282] = {.lex_state = 455, .external_lex_state = 43}, + [2283] = {.lex_state = 568, .external_lex_state = 18}, + [2284] = {.lex_state = 571, .external_lex_state = 23}, + [2285] = {.lex_state = 279, .external_lex_state = 23}, + [2286] = {.lex_state = 276, .external_lex_state = 23}, + [2287] = {.lex_state = 282, .external_lex_state = 18}, + [2288] = {.lex_state = 282, .external_lex_state = 18}, + [2289] = {.lex_state = 492, .external_lex_state = 52}, + [2290] = {.lex_state = 492, .external_lex_state = 52}, + [2291] = {.lex_state = 571, .external_lex_state = 18}, + [2292] = {.lex_state = 321, .external_lex_state = 45}, + [2293] = {.lex_state = 492, .external_lex_state = 52}, + [2294] = {.lex_state = 492, .external_lex_state = 52}, + [2295] = {.lex_state = 571, .external_lex_state = 18}, + [2296] = {.lex_state = 571, .external_lex_state = 23}, + [2297] = {.lex_state = 571, .external_lex_state = 18}, + [2298] = {.lex_state = 571, .external_lex_state = 18}, + [2299] = {.lex_state = 282, .external_lex_state = 18}, + [2300] = {.lex_state = 321, .external_lex_state = 45}, + [2301] = {.lex_state = 455, .external_lex_state = 43}, + [2302] = {.lex_state = 455, .external_lex_state = 43}, + [2303] = {.lex_state = 571, .external_lex_state = 18}, + [2304] = {.lex_state = 282, .external_lex_state = 23}, + [2305] = {.lex_state = 282, .external_lex_state = 18}, + [2306] = {.lex_state = 321, .external_lex_state = 45}, + [2307] = {.lex_state = 282, .external_lex_state = 18}, + [2308] = {.lex_state = 455, .external_lex_state = 43}, + [2309] = {.lex_state = 455, .external_lex_state = 43}, + [2310] = {.lex_state = 455, .external_lex_state = 43}, + [2311] = {.lex_state = 455, .external_lex_state = 43}, + [2312] = {.lex_state = 455, .external_lex_state = 43}, + [2313] = {.lex_state = 455, .external_lex_state = 43}, + [2314] = {.lex_state = 455, .external_lex_state = 43}, + [2315] = {.lex_state = 455, .external_lex_state = 43}, + [2316] = {.lex_state = 455, .external_lex_state = 43}, + [2317] = {.lex_state = 455, .external_lex_state = 43}, + [2318] = {.lex_state = 455, .external_lex_state = 43}, + [2319] = {.lex_state = 455, .external_lex_state = 43}, + [2320] = {.lex_state = 455, .external_lex_state = 43}, + [2321] = {.lex_state = 455, .external_lex_state = 43}, + [2322] = {.lex_state = 568, .external_lex_state = 18}, + [2323] = {.lex_state = 455, .external_lex_state = 43}, + [2324] = {.lex_state = 321, .external_lex_state = 45}, + [2325] = {.lex_state = 578, .external_lex_state = 45}, + [2326] = {.lex_state = 578, .external_lex_state = 45}, + [2327] = {.lex_state = 578, .external_lex_state = 45}, + [2328] = {.lex_state = 455, .external_lex_state = 43}, + [2329] = {.lex_state = 455, .external_lex_state = 43}, + [2330] = {.lex_state = 571, .external_lex_state = 18}, + [2331] = {.lex_state = 321, .external_lex_state = 45}, + [2332] = {.lex_state = 568, .external_lex_state = 23}, + [2333] = {.lex_state = 455, .external_lex_state = 43}, + [2334] = {.lex_state = 455, .external_lex_state = 43}, + [2335] = {.lex_state = 571, .external_lex_state = 18}, + [2336] = {.lex_state = 455, .external_lex_state = 43}, + [2337] = {.lex_state = 455, .external_lex_state = 43}, + [2338] = {.lex_state = 571, .external_lex_state = 18}, + [2339] = {.lex_state = 455, .external_lex_state = 43}, + [2340] = {.lex_state = 455, .external_lex_state = 43}, + [2341] = {.lex_state = 571, .external_lex_state = 18}, + [2342] = {.lex_state = 455, .external_lex_state = 43}, + [2343] = {.lex_state = 455, .external_lex_state = 43}, + [2344] = {.lex_state = 455, .external_lex_state = 43}, + [2345] = {.lex_state = 455, .external_lex_state = 43}, + [2346] = {.lex_state = 455, .external_lex_state = 43}, + [2347] = {.lex_state = 455, .external_lex_state = 43}, + [2348] = {.lex_state = 571, .external_lex_state = 18}, + [2349] = {.lex_state = 455, .external_lex_state = 43}, + [2350] = {.lex_state = 455, .external_lex_state = 43}, + [2351] = {.lex_state = 455, .external_lex_state = 43}, + [2352] = {.lex_state = 571, .external_lex_state = 18}, + [2353] = {.lex_state = 455, .external_lex_state = 43}, + [2354] = {.lex_state = 455, .external_lex_state = 43}, + [2355] = {.lex_state = 571, .external_lex_state = 18}, + [2356] = {.lex_state = 571, .external_lex_state = 18}, + [2357] = {.lex_state = 571, .external_lex_state = 18}, + [2358] = {.lex_state = 571, .external_lex_state = 18}, + [2359] = {.lex_state = 571, .external_lex_state = 18}, + [2360] = {.lex_state = 571, .external_lex_state = 18}, + [2361] = {.lex_state = 571, .external_lex_state = 18}, + [2362] = {.lex_state = 571, .external_lex_state = 18}, + [2363] = {.lex_state = 571, .external_lex_state = 18}, + [2364] = {.lex_state = 571, .external_lex_state = 18}, + [2365] = {.lex_state = 571, .external_lex_state = 18}, + [2366] = {.lex_state = 571, .external_lex_state = 18}, + [2367] = {.lex_state = 571, .external_lex_state = 18}, + [2368] = {.lex_state = 571, .external_lex_state = 18}, + [2369] = {.lex_state = 571, .external_lex_state = 18}, + [2370] = {.lex_state = 571, .external_lex_state = 18}, + [2371] = {.lex_state = 571, .external_lex_state = 18}, + [2372] = {.lex_state = 571, .external_lex_state = 18}, + [2373] = {.lex_state = 571, .external_lex_state = 18}, + [2374] = {.lex_state = 571, .external_lex_state = 18}, + [2375] = {.lex_state = 571, .external_lex_state = 18}, + [2376] = {.lex_state = 571, .external_lex_state = 18}, + [2377] = {.lex_state = 571, .external_lex_state = 18}, + [2378] = {.lex_state = 571, .external_lex_state = 18}, + [2379] = {.lex_state = 571, .external_lex_state = 18}, + [2380] = {.lex_state = 571, .external_lex_state = 18}, + [2381] = {.lex_state = 571, .external_lex_state = 18}, + [2382] = {.lex_state = 571, .external_lex_state = 18}, + [2383] = {.lex_state = 571, .external_lex_state = 18}, + [2384] = {.lex_state = 571, .external_lex_state = 18}, + [2385] = {.lex_state = 571, .external_lex_state = 18}, + [2386] = {.lex_state = 571, .external_lex_state = 18}, + [2387] = {.lex_state = 571, .external_lex_state = 18}, + [2388] = {.lex_state = 571, .external_lex_state = 18}, + [2389] = {.lex_state = 571, .external_lex_state = 18}, + [2390] = {.lex_state = 571, .external_lex_state = 18}, + [2391] = {.lex_state = 571, .external_lex_state = 18}, + [2392] = {.lex_state = 571, .external_lex_state = 18}, + [2393] = {.lex_state = 571, .external_lex_state = 18}, + [2394] = {.lex_state = 571, .external_lex_state = 18}, + [2395] = {.lex_state = 571, .external_lex_state = 18}, + [2396] = {.lex_state = 571, .external_lex_state = 18}, + [2397] = {.lex_state = 571, .external_lex_state = 18}, + [2398] = {.lex_state = 571, .external_lex_state = 18}, + [2399] = {.lex_state = 571, .external_lex_state = 18}, + [2400] = {.lex_state = 571, .external_lex_state = 18}, + [2401] = {.lex_state = 571, .external_lex_state = 18}, + [2402] = {.lex_state = 571, .external_lex_state = 18}, + [2403] = {.lex_state = 571, .external_lex_state = 18}, + [2404] = {.lex_state = 571, .external_lex_state = 18}, + [2405] = {.lex_state = 571, .external_lex_state = 18}, + [2406] = {.lex_state = 571, .external_lex_state = 18}, + [2407] = {.lex_state = 571, .external_lex_state = 18}, + [2408] = {.lex_state = 571, .external_lex_state = 18}, + [2409] = {.lex_state = 571, .external_lex_state = 18}, + [2410] = {.lex_state = 571, .external_lex_state = 18}, + [2411] = {.lex_state = 571, .external_lex_state = 18}, + [2412] = {.lex_state = 571, .external_lex_state = 18}, + [2413] = {.lex_state = 571, .external_lex_state = 18}, + [2414] = {.lex_state = 571, .external_lex_state = 18}, + [2415] = {.lex_state = 571, .external_lex_state = 18}, + [2416] = {.lex_state = 571, .external_lex_state = 18}, + [2417] = {.lex_state = 571, .external_lex_state = 18}, + [2418] = {.lex_state = 571, .external_lex_state = 18}, + [2419] = {.lex_state = 571, .external_lex_state = 18}, + [2420] = {.lex_state = 571, .external_lex_state = 18}, + [2421] = {.lex_state = 571, .external_lex_state = 18}, + [2422] = {.lex_state = 571, .external_lex_state = 18}, + [2423] = {.lex_state = 571, .external_lex_state = 18}, + [2424] = {.lex_state = 571, .external_lex_state = 18}, + [2425] = {.lex_state = 571, .external_lex_state = 18}, + [2426] = {.lex_state = 571, .external_lex_state = 18}, + [2427] = {.lex_state = 571, .external_lex_state = 18}, + [2428] = {.lex_state = 571, .external_lex_state = 18}, + [2429] = {.lex_state = 571, .external_lex_state = 18}, + [2430] = {.lex_state = 571, .external_lex_state = 18}, + [2431] = {.lex_state = 571, .external_lex_state = 18}, + [2432] = {.lex_state = 571, .external_lex_state = 18}, + [2433] = {.lex_state = 571, .external_lex_state = 18}, + [2434] = {.lex_state = 455, .external_lex_state = 43}, + [2435] = {.lex_state = 455, .external_lex_state = 43}, + [2436] = {.lex_state = 321, .external_lex_state = 45}, + [2437] = {.lex_state = 578, .external_lex_state = 45}, + [2438] = {.lex_state = 578, .external_lex_state = 45}, + [2439] = {.lex_state = 455, .external_lex_state = 43}, + [2440] = {.lex_state = 321, .external_lex_state = 45}, + [2441] = {.lex_state = 455, .external_lex_state = 43}, + [2442] = {.lex_state = 578, .external_lex_state = 45}, + [2443] = {.lex_state = 282, .external_lex_state = 18}, + [2444] = {.lex_state = 455, .external_lex_state = 43}, + [2445] = {.lex_state = 455, .external_lex_state = 43}, + [2446] = {.lex_state = 282, .external_lex_state = 18}, + [2447] = {.lex_state = 578, .external_lex_state = 45}, + [2448] = {.lex_state = 578, .external_lex_state = 45}, + [2449] = {.lex_state = 455, .external_lex_state = 43}, + [2450] = {.lex_state = 455, .external_lex_state = 43}, + [2451] = {.lex_state = 578, .external_lex_state = 45}, + [2452] = {.lex_state = 276, .external_lex_state = 18}, + [2453] = {.lex_state = 282, .external_lex_state = 18}, + [2454] = {.lex_state = 455, .external_lex_state = 43}, + [2455] = {.lex_state = 578, .external_lex_state = 45}, + [2456] = {.lex_state = 276, .external_lex_state = 23}, + [2457] = {.lex_state = 578, .external_lex_state = 45}, + [2458] = {.lex_state = 578, .external_lex_state = 45}, + [2459] = {.lex_state = 568, .external_lex_state = 23}, + [2460] = {.lex_state = 488, .external_lex_state = 33}, + [2461] = {.lex_state = 492, .external_lex_state = 50}, + [2462] = {.lex_state = 578, .external_lex_state = 45}, + [2463] = {.lex_state = 571, .external_lex_state = 18}, + [2464] = {.lex_state = 488, .external_lex_state = 33}, + [2465] = {.lex_state = 455, .external_lex_state = 43}, + [2466] = {.lex_state = 578, .external_lex_state = 45}, + [2467] = {.lex_state = 492, .external_lex_state = 52}, + [2468] = {.lex_state = 492, .external_lex_state = 52}, + [2469] = {.lex_state = 492, .external_lex_state = 50}, + [2470] = {.lex_state = 492, .external_lex_state = 50}, + [2471] = {.lex_state = 455, .external_lex_state = 43}, + [2472] = {.lex_state = 455, .external_lex_state = 43}, + [2473] = {.lex_state = 455, .external_lex_state = 43}, + [2474] = {.lex_state = 455, .external_lex_state = 43}, + [2475] = {.lex_state = 455, .external_lex_state = 43}, + [2476] = {.lex_state = 455, .external_lex_state = 43}, + [2477] = {.lex_state = 455, .external_lex_state = 43}, + [2478] = {.lex_state = 455, .external_lex_state = 43}, + [2479] = {.lex_state = 455, .external_lex_state = 43}, + [2480] = {.lex_state = 455, .external_lex_state = 43}, + [2481] = {.lex_state = 455, .external_lex_state = 43}, + [2482] = {.lex_state = 455, .external_lex_state = 43}, + [2483] = {.lex_state = 282, .external_lex_state = 23}, + [2484] = {.lex_state = 492, .external_lex_state = 52}, + [2485] = {.lex_state = 492, .external_lex_state = 52}, + [2486] = {.lex_state = 492, .external_lex_state = 50}, + [2487] = {.lex_state = 571, .external_lex_state = 18}, + [2488] = {.lex_state = 578, .external_lex_state = 45}, + [2489] = {.lex_state = 578, .external_lex_state = 45}, + [2490] = {.lex_state = 578, .external_lex_state = 45}, + [2491] = {.lex_state = 571, .external_lex_state = 18}, + [2492] = {.lex_state = 571, .external_lex_state = 18}, + [2493] = {.lex_state = 455, .external_lex_state = 43}, + [2494] = {.lex_state = 321, .external_lex_state = 45}, + [2495] = {.lex_state = 571, .external_lex_state = 18}, + [2496] = {.lex_state = 571, .external_lex_state = 18}, + [2497] = {.lex_state = 321, .external_lex_state = 45}, + [2498] = {.lex_state = 290, .external_lex_state = 23}, + [2499] = {.lex_state = 321, .external_lex_state = 45}, + [2500] = {.lex_state = 455, .external_lex_state = 43}, + [2501] = {.lex_state = 571, .external_lex_state = 18}, + [2502] = {.lex_state = 455, .external_lex_state = 43}, + [2503] = {.lex_state = 455, .external_lex_state = 43}, + [2504] = {.lex_state = 492, .external_lex_state = 50}, + [2505] = {.lex_state = 492, .external_lex_state = 52}, + [2506] = {.lex_state = 455, .external_lex_state = 43}, + [2507] = {.lex_state = 455, .external_lex_state = 43}, + [2508] = {.lex_state = 492, .external_lex_state = 52}, + [2509] = {.lex_state = 492, .external_lex_state = 52}, + [2510] = {.lex_state = 455, .external_lex_state = 43}, + [2511] = {.lex_state = 455, .external_lex_state = 43}, + [2512] = {.lex_state = 455, .external_lex_state = 43}, + [2513] = {.lex_state = 455, .external_lex_state = 43}, + [2514] = {.lex_state = 455, .external_lex_state = 43}, + [2515] = {.lex_state = 455, .external_lex_state = 43}, + [2516] = {.lex_state = 455, .external_lex_state = 43}, + [2517] = {.lex_state = 455, .external_lex_state = 43}, + [2518] = {.lex_state = 455, .external_lex_state = 43}, + [2519] = {.lex_state = 455, .external_lex_state = 43}, + [2520] = {.lex_state = 455, .external_lex_state = 43}, + [2521] = {.lex_state = 455, .external_lex_state = 43}, + [2522] = {.lex_state = 455, .external_lex_state = 43}, + [2523] = {.lex_state = 455, .external_lex_state = 43}, + [2524] = {.lex_state = 455, .external_lex_state = 43}, + [2525] = {.lex_state = 455, .external_lex_state = 43}, + [2526] = {.lex_state = 455, .external_lex_state = 43}, + [2527] = {.lex_state = 492, .external_lex_state = 52}, + [2528] = {.lex_state = 455, .external_lex_state = 43}, + [2529] = {.lex_state = 455, .external_lex_state = 43}, + [2530] = {.lex_state = 492, .external_lex_state = 50}, + [2531] = {.lex_state = 568, .external_lex_state = 23}, + [2532] = {.lex_state = 321, .external_lex_state = 45}, + [2533] = {.lex_state = 455, .external_lex_state = 43}, + [2534] = {.lex_state = 455, .external_lex_state = 43}, + [2535] = {.lex_state = 455, .external_lex_state = 43}, + [2536] = {.lex_state = 571, .external_lex_state = 18}, + [2537] = {.lex_state = 492, .external_lex_state = 50}, + [2538] = {.lex_state = 492, .external_lex_state = 50}, + [2539] = {.lex_state = 492, .external_lex_state = 50}, + [2540] = {.lex_state = 492, .external_lex_state = 50}, + [2541] = {.lex_state = 321, .external_lex_state = 45}, + [2542] = {.lex_state = 321, .external_lex_state = 45}, + [2543] = {.lex_state = 578, .external_lex_state = 45}, + [2544] = {.lex_state = 321, .external_lex_state = 45}, + [2545] = {.lex_state = 492, .external_lex_state = 50}, + [2546] = {.lex_state = 321, .external_lex_state = 45}, + [2547] = {.lex_state = 578, .external_lex_state = 45}, + [2548] = {.lex_state = 578, .external_lex_state = 45}, + [2549] = {.lex_state = 492, .external_lex_state = 50}, + [2550] = {.lex_state = 455, .external_lex_state = 43}, + [2551] = {.lex_state = 568, .external_lex_state = 18}, + [2552] = {.lex_state = 578, .external_lex_state = 45}, + [2553] = {.lex_state = 440, .external_lex_state = 33}, + [2554] = {.lex_state = 468, .external_lex_state = 51}, + [2555] = {.lex_state = 573, .external_lex_state = 23}, + [2556] = {.lex_state = 492, .external_lex_state = 52}, + [2557] = {.lex_state = 573, .external_lex_state = 23}, + [2558] = {.lex_state = 292, .external_lex_state = 23}, + [2559] = {.lex_state = 468, .external_lex_state = 51}, + [2560] = {.lex_state = 571, .external_lex_state = 23}, + [2561] = {.lex_state = 468, .external_lex_state = 51}, + [2562] = {.lex_state = 468, .external_lex_state = 51}, + [2563] = {.lex_state = 468, .external_lex_state = 51}, + [2564] = {.lex_state = 468, .external_lex_state = 51}, + [2565] = {.lex_state = 468, .external_lex_state = 51}, + [2566] = {.lex_state = 468, .external_lex_state = 51}, + [2567] = {.lex_state = 468, .external_lex_state = 51}, + [2568] = {.lex_state = 571, .external_lex_state = 23}, + [2569] = {.lex_state = 468, .external_lex_state = 51}, + [2570] = {.lex_state = 310, .external_lex_state = 42}, + [2571] = {.lex_state = 310, .external_lex_state = 42}, + [2572] = {.lex_state = 312, .external_lex_state = 42}, + [2573] = {.lex_state = 312, .external_lex_state = 42}, + [2574] = {.lex_state = 468, .external_lex_state = 51}, + [2575] = {.lex_state = 468, .external_lex_state = 51}, + [2576] = {.lex_state = 468, .external_lex_state = 51}, + [2577] = {.lex_state = 468, .external_lex_state = 51}, + [2578] = {.lex_state = 292, .external_lex_state = 23}, + [2579] = {.lex_state = 492, .external_lex_state = 52}, + [2580] = {.lex_state = 492, .external_lex_state = 52}, + [2581] = {.lex_state = 276, .external_lex_state = 23}, + [2582] = {.lex_state = 492, .external_lex_state = 52}, + [2583] = {.lex_state = 492, .external_lex_state = 52}, + [2584] = {.lex_state = 491, .external_lex_state = 22}, + [2585] = {.lex_state = 468, .external_lex_state = 51}, + [2586] = {.lex_state = 492, .external_lex_state = 52}, + [2587] = {.lex_state = 468, .external_lex_state = 51}, + [2588] = {.lex_state = 468, .external_lex_state = 51}, + [2589] = {.lex_state = 468, .external_lex_state = 51}, + [2590] = {.lex_state = 473, .external_lex_state = 44}, + [2591] = {.lex_state = 495, .external_lex_state = 53}, + [2592] = {.lex_state = 492, .external_lex_state = 52}, + [2593] = {.lex_state = 495, .external_lex_state = 53}, + [2594] = {.lex_state = 495, .external_lex_state = 53}, + [2595] = {.lex_state = 468, .external_lex_state = 51}, + [2596] = {.lex_state = 495, .external_lex_state = 53}, + [2597] = {.lex_state = 282, .external_lex_state = 23}, + [2598] = {.lex_state = 568, .external_lex_state = 23}, + [2599] = {.lex_state = 440, .external_lex_state = 33}, + [2600] = {.lex_state = 290, .external_lex_state = 23}, + [2601] = {.lex_state = 473, .external_lex_state = 44}, + [2602] = {.lex_state = 573, .external_lex_state = 23}, + [2603] = {.lex_state = 492, .external_lex_state = 52}, + [2604] = {.lex_state = 571, .external_lex_state = 18}, + [2605] = {.lex_state = 571, .external_lex_state = 18}, + [2606] = {.lex_state = 495, .external_lex_state = 53}, + [2607] = {.lex_state = 495, .external_lex_state = 53}, + [2608] = {.lex_state = 571, .external_lex_state = 18}, + [2609] = {.lex_state = 495, .external_lex_state = 53}, + [2610] = {.lex_state = 568, .external_lex_state = 23}, + [2611] = {.lex_state = 495, .external_lex_state = 53}, + [2612] = {.lex_state = 495, .external_lex_state = 53}, + [2613] = {.lex_state = 492, .external_lex_state = 52}, + [2614] = {.lex_state = 492, .external_lex_state = 52}, + [2615] = {.lex_state = 492, .external_lex_state = 52}, + [2616] = {.lex_state = 492, .external_lex_state = 52}, + [2617] = {.lex_state = 492, .external_lex_state = 52}, + [2618] = {.lex_state = 492, .external_lex_state = 52}, + [2619] = {.lex_state = 492, .external_lex_state = 52}, + [2620] = {.lex_state = 469, .external_lex_state = 51}, + [2621] = {.lex_state = 573, .external_lex_state = 23}, + [2622] = {.lex_state = 469, .external_lex_state = 51}, + [2623] = {.lex_state = 310, .external_lex_state = 42}, + [2624] = {.lex_state = 310, .external_lex_state = 42}, + [2625] = {.lex_state = 492, .external_lex_state = 52}, + [2626] = {.lex_state = 312, .external_lex_state = 42}, + [2627] = {.lex_state = 312, .external_lex_state = 42}, + [2628] = {.lex_state = 495, .external_lex_state = 53}, + [2629] = {.lex_state = 310, .external_lex_state = 42}, + [2630] = {.lex_state = 310, .external_lex_state = 42}, + [2631] = {.lex_state = 310, .external_lex_state = 42}, + [2632] = {.lex_state = 492, .external_lex_state = 52}, + [2633] = {.lex_state = 310, .external_lex_state = 42}, + [2634] = {.lex_state = 310, .external_lex_state = 42}, + [2635] = {.lex_state = 310, .external_lex_state = 42}, + [2636] = {.lex_state = 310, .external_lex_state = 42}, + [2637] = {.lex_state = 310, .external_lex_state = 42}, + [2638] = {.lex_state = 492, .external_lex_state = 52}, + [2639] = {.lex_state = 495, .external_lex_state = 53}, + [2640] = {.lex_state = 495, .external_lex_state = 53}, + [2641] = {.lex_state = 312, .external_lex_state = 42}, + [2642] = {.lex_state = 312, .external_lex_state = 42}, + [2643] = {.lex_state = 310, .external_lex_state = 42}, + [2644] = {.lex_state = 312, .external_lex_state = 42}, + [2645] = {.lex_state = 492, .external_lex_state = 52}, + [2646] = {.lex_state = 491, .external_lex_state = 22}, + [2647] = {.lex_state = 468, .external_lex_state = 51}, + [2648] = {.lex_state = 495, .external_lex_state = 53}, + [2649] = {.lex_state = 573, .external_lex_state = 23}, + [2650] = {.lex_state = 468, .external_lex_state = 51}, + [2651] = {.lex_state = 292, .external_lex_state = 23}, + [2652] = {.lex_state = 473, .external_lex_state = 44}, + [2653] = {.lex_state = 493, .external_lex_state = 54}, + [2654] = {.lex_state = 469, .external_lex_state = 39}, + [2655] = {.lex_state = 473, .external_lex_state = 44}, + [2656] = {.lex_state = 465, .external_lex_state = 44}, + [2657] = {.lex_state = 463, .external_lex_state = 55}, + [2658] = {.lex_state = 322, .external_lex_state = 56}, + [2659] = {.lex_state = 322, .external_lex_state = 56}, + [2660] = {.lex_state = 491, .external_lex_state = 22}, + [2661] = {.lex_state = 465, .external_lex_state = 44}, + [2662] = {.lex_state = 501, .external_lex_state = 54}, + [2663] = {.lex_state = 501, .external_lex_state = 54}, + [2664] = {.lex_state = 491, .external_lex_state = 25}, + [2665] = {.lex_state = 493, .external_lex_state = 54}, + [2666] = {.lex_state = 493, .external_lex_state = 54}, + [2667] = {.lex_state = 473, .external_lex_state = 44}, + [2668] = {.lex_state = 468, .external_lex_state = 51}, + [2669] = {.lex_state = 465, .external_lex_state = 44}, + [2670] = {.lex_state = 322, .external_lex_state = 56}, + [2671] = {.lex_state = 322, .external_lex_state = 56}, + [2672] = {.lex_state = 493, .external_lex_state = 54}, + [2673] = {.lex_state = 322, .external_lex_state = 56}, + [2674] = {.lex_state = 495, .external_lex_state = 53}, + [2675] = {.lex_state = 322, .external_lex_state = 56}, + [2676] = {.lex_state = 493, .external_lex_state = 54}, + [2677] = {.lex_state = 491, .external_lex_state = 25}, + [2678] = {.lex_state = 495, .external_lex_state = 53}, + [2679] = {.lex_state = 495, .external_lex_state = 53}, + [2680] = {.lex_state = 495, .external_lex_state = 53}, + [2681] = {.lex_state = 310, .external_lex_state = 45}, + [2682] = {.lex_state = 310, .external_lex_state = 45}, + [2683] = {.lex_state = 491, .external_lex_state = 25}, + [2684] = {.lex_state = 310, .external_lex_state = 45}, + [2685] = {.lex_state = 495, .external_lex_state = 53}, + [2686] = {.lex_state = 495, .external_lex_state = 53}, + [2687] = {.lex_state = 469, .external_lex_state = 39}, + [2688] = {.lex_state = 573, .external_lex_state = 23}, + [2689] = {.lex_state = 501, .external_lex_state = 54}, + [2690] = {.lex_state = 473, .external_lex_state = 44}, + [2691] = {.lex_state = 465, .external_lex_state = 44}, + [2692] = {.lex_state = 501, .external_lex_state = 54}, + [2693] = {.lex_state = 493, .external_lex_state = 54}, + [2694] = {.lex_state = 495, .external_lex_state = 57}, + [2695] = {.lex_state = 322, .external_lex_state = 56}, + [2696] = {.lex_state = 501, .external_lex_state = 54}, + [2697] = {.lex_state = 473, .external_lex_state = 44}, + [2698] = {.lex_state = 322, .external_lex_state = 56}, + [2699] = {.lex_state = 322, .external_lex_state = 56}, + [2700] = {.lex_state = 465, .external_lex_state = 44}, + [2701] = {.lex_state = 501, .external_lex_state = 54}, + [2702] = {.lex_state = 322, .external_lex_state = 56}, + [2703] = {.lex_state = 495, .external_lex_state = 57}, + [2704] = {.lex_state = 493, .external_lex_state = 54}, + [2705] = {.lex_state = 491, .external_lex_state = 25}, + [2706] = {.lex_state = 322, .external_lex_state = 56}, + [2707] = {.lex_state = 322, .external_lex_state = 56}, + [2708] = {.lex_state = 468, .external_lex_state = 51}, + [2709] = {.lex_state = 495, .external_lex_state = 57}, + [2710] = {.lex_state = 322, .external_lex_state = 56}, + [2711] = {.lex_state = 322, .external_lex_state = 56}, + [2712] = {.lex_state = 493, .external_lex_state = 54}, + [2713] = {.lex_state = 495, .external_lex_state = 57}, + [2714] = {.lex_state = 473, .external_lex_state = 44}, + [2715] = {.lex_state = 465, .external_lex_state = 44}, + [2716] = {.lex_state = 468, .external_lex_state = 51}, + [2717] = {.lex_state = 495, .external_lex_state = 53}, + [2718] = {.lex_state = 495, .external_lex_state = 53}, + [2719] = {.lex_state = 473, .external_lex_state = 44}, + [2720] = {.lex_state = 468, .external_lex_state = 51}, + [2721] = {.lex_state = 495, .external_lex_state = 53}, + [2722] = {.lex_state = 463, .external_lex_state = 55}, + [2723] = {.lex_state = 473, .external_lex_state = 44}, + [2724] = {.lex_state = 473, .external_lex_state = 44}, + [2725] = {.lex_state = 465, .external_lex_state = 44}, + [2726] = {.lex_state = 463, .external_lex_state = 55}, + [2727] = {.lex_state = 463, .external_lex_state = 55}, + [2728] = {.lex_state = 463, .external_lex_state = 55}, + [2729] = {.lex_state = 463, .external_lex_state = 55}, + [2730] = {.lex_state = 463, .external_lex_state = 55}, + [2731] = {.lex_state = 463, .external_lex_state = 55}, + [2732] = {.lex_state = 463, .external_lex_state = 55}, + [2733] = {.lex_state = 495, .external_lex_state = 57}, + [2734] = {.lex_state = 495, .external_lex_state = 57}, + [2735] = {.lex_state = 495, .external_lex_state = 53}, + [2736] = {.lex_state = 495, .external_lex_state = 53}, + [2737] = {.lex_state = 495, .external_lex_state = 53}, + [2738] = {.lex_state = 473, .external_lex_state = 44}, + [2739] = {.lex_state = 468, .external_lex_state = 51}, + [2740] = {.lex_state = 495, .external_lex_state = 53}, + [2741] = {.lex_state = 468, .external_lex_state = 51}, + [2742] = {.lex_state = 491, .external_lex_state = 25}, + [2743] = {.lex_state = 493, .external_lex_state = 54}, + [2744] = {.lex_state = 322, .external_lex_state = 56}, + [2745] = {.lex_state = 473, .external_lex_state = 44}, + [2746] = {.lex_state = 465, .external_lex_state = 44}, + [2747] = {.lex_state = 473, .external_lex_state = 44}, + [2748] = {.lex_state = 493, .external_lex_state = 54}, + [2749] = {.lex_state = 493, .external_lex_state = 54}, + [2750] = {.lex_state = 312, .external_lex_state = 45}, + [2751] = {.lex_state = 312, .external_lex_state = 45}, + [2752] = {.lex_state = 495, .external_lex_state = 53}, + [2753] = {.lex_state = 493, .external_lex_state = 54}, + [2754] = {.lex_state = 468, .external_lex_state = 51}, + [2755] = {.lex_state = 468, .external_lex_state = 51}, + [2756] = {.lex_state = 493, .external_lex_state = 54}, + [2757] = {.lex_state = 310, .external_lex_state = 45}, + [2758] = {.lex_state = 310, .external_lex_state = 45}, + [2759] = {.lex_state = 493, .external_lex_state = 54}, + [2760] = {.lex_state = 501, .external_lex_state = 54}, + [2761] = {.lex_state = 501, .external_lex_state = 54}, + [2762] = {.lex_state = 473, .external_lex_state = 44}, + [2763] = {.lex_state = 322, .external_lex_state = 56}, + [2764] = {.lex_state = 312, .external_lex_state = 45}, + [2765] = {.lex_state = 312, .external_lex_state = 45}, + [2766] = {.lex_state = 312, .external_lex_state = 45}, + [2767] = {.lex_state = 469, .external_lex_state = 51}, + [2768] = {.lex_state = 491, .external_lex_state = 22}, + [2769] = {.lex_state = 495, .external_lex_state = 53}, + [2770] = {.lex_state = 495, .external_lex_state = 53}, + [2771] = {.lex_state = 495, .external_lex_state = 53}, + [2772] = {.lex_state = 495, .external_lex_state = 53}, + [2773] = {.lex_state = 473, .external_lex_state = 44}, + [2774] = {.lex_state = 501, .external_lex_state = 54}, + [2775] = {.lex_state = 501, .external_lex_state = 58}, + [2776] = {.lex_state = 494, .external_lex_state = 28}, + [2777] = {.lex_state = 473, .external_lex_state = 44}, + [2778] = {.lex_state = 493, .external_lex_state = 54}, + [2779] = {.lex_state = 493, .external_lex_state = 54}, + [2780] = {.lex_state = 497, .external_lex_state = 57}, + [2781] = {.lex_state = 493, .external_lex_state = 54}, + [2782] = {.lex_state = 493, .external_lex_state = 54}, + [2783] = {.lex_state = 501, .external_lex_state = 58}, + [2784] = {.lex_state = 463, .external_lex_state = 39}, + [2785] = {.lex_state = 463, .external_lex_state = 39}, + [2786] = {.lex_state = 501, .external_lex_state = 54}, + [2787] = {.lex_state = 501, .external_lex_state = 58}, + [2788] = {.lex_state = 501, .external_lex_state = 54}, + [2789] = {.lex_state = 494, .external_lex_state = 28}, + [2790] = {.lex_state = 495, .external_lex_state = 57}, + [2791] = {.lex_state = 468, .external_lex_state = 51}, + [2792] = {.lex_state = 495, .external_lex_state = 57}, + [2793] = {.lex_state = 463, .external_lex_state = 39}, + [2794] = {.lex_state = 501, .external_lex_state = 54}, + [2795] = {.lex_state = 493, .external_lex_state = 54}, + [2796] = {.lex_state = 501, .external_lex_state = 54}, + [2797] = {.lex_state = 493, .external_lex_state = 54}, + [2798] = {.lex_state = 501, .external_lex_state = 58}, + [2799] = {.lex_state = 463, .external_lex_state = 39}, + [2800] = {.lex_state = 494, .external_lex_state = 28}, + [2801] = {.lex_state = 493, .external_lex_state = 54}, + [2802] = {.lex_state = 473, .external_lex_state = 44}, + [2803] = {.lex_state = 473, .external_lex_state = 44}, + [2804] = {.lex_state = 493, .external_lex_state = 54}, + [2805] = {.lex_state = 497, .external_lex_state = 57}, + [2806] = {.lex_state = 493, .external_lex_state = 54}, + [2807] = {.lex_state = 463, .external_lex_state = 39}, + [2808] = {.lex_state = 495, .external_lex_state = 57}, + [2809] = {.lex_state = 465, .external_lex_state = 59}, + [2810] = {.lex_state = 493, .external_lex_state = 54}, + [2811] = {.lex_state = 465, .external_lex_state = 46}, + [2812] = {.lex_state = 473, .external_lex_state = 44}, + [2813] = {.lex_state = 501, .external_lex_state = 54}, + [2814] = {.lex_state = 465, .external_lex_state = 46}, + [2815] = {.lex_state = 473, .external_lex_state = 44}, + [2816] = {.lex_state = 493, .external_lex_state = 58}, + [2817] = {.lex_state = 473, .external_lex_state = 44}, + [2818] = {.lex_state = 473, .external_lex_state = 44}, + [2819] = {.lex_state = 497, .external_lex_state = 57}, + [2820] = {.lex_state = 465, .external_lex_state = 59}, + [2821] = {.lex_state = 473, .external_lex_state = 44}, + [2822] = {.lex_state = 473, .external_lex_state = 44}, + [2823] = {.lex_state = 473, .external_lex_state = 44}, + [2824] = {.lex_state = 319, .external_lex_state = 45}, + [2825] = {.lex_state = 493, .external_lex_state = 54}, + [2826] = {.lex_state = 501, .external_lex_state = 54}, + [2827] = {.lex_state = 493, .external_lex_state = 58}, + [2828] = {.lex_state = 497, .external_lex_state = 57}, + [2829] = {.lex_state = 465, .external_lex_state = 59}, + [2830] = {.lex_state = 465, .external_lex_state = 59}, + [2831] = {.lex_state = 495, .external_lex_state = 57}, + [2832] = {.lex_state = 319, .external_lex_state = 45}, + [2833] = {.lex_state = 463, .external_lex_state = 39}, + [2834] = {.lex_state = 491, .external_lex_state = 25}, + [2835] = {.lex_state = 493, .external_lex_state = 54}, + [2836] = {.lex_state = 465, .external_lex_state = 44}, + [2837] = {.lex_state = 493, .external_lex_state = 54}, + [2838] = {.lex_state = 463, .external_lex_state = 39}, + [2839] = {.lex_state = 495, .external_lex_state = 57}, + [2840] = {.lex_state = 491, .external_lex_state = 25}, + [2841] = {.lex_state = 493, .external_lex_state = 54}, + [2842] = {.lex_state = 495, .external_lex_state = 57}, + [2843] = {.lex_state = 495, .external_lex_state = 57}, + [2844] = {.lex_state = 495, .external_lex_state = 57}, + [2845] = {.lex_state = 465, .external_lex_state = 60}, + [2846] = {.lex_state = 319, .external_lex_state = 45}, + [2847] = {.lex_state = 495, .external_lex_state = 57}, + [2848] = {.lex_state = 501, .external_lex_state = 54}, + [2849] = {.lex_state = 491, .external_lex_state = 25}, + [2850] = {.lex_state = 473, .external_lex_state = 44}, + [2851] = {.lex_state = 491, .external_lex_state = 25}, + [2852] = {.lex_state = 494, .external_lex_state = 28}, + [2853] = {.lex_state = 473, .external_lex_state = 44}, + [2854] = {.lex_state = 493, .external_lex_state = 58}, + [2855] = {.lex_state = 465, .external_lex_state = 60}, + [2856] = {.lex_state = 495, .external_lex_state = 57}, + [2857] = {.lex_state = 463, .external_lex_state = 39}, + [2858] = {.lex_state = 493, .external_lex_state = 58}, + [2859] = {.lex_state = 465, .external_lex_state = 59}, + [2860] = {.lex_state = 493, .external_lex_state = 58}, + [2861] = {.lex_state = 493, .external_lex_state = 54}, + [2862] = {.lex_state = 501, .external_lex_state = 54}, + [2863] = {.lex_state = 465, .external_lex_state = 59}, + [2864] = {.lex_state = 465, .external_lex_state = 59}, + [2865] = {.lex_state = 497, .external_lex_state = 57}, + [2866] = {.lex_state = 463, .external_lex_state = 39}, + [2867] = {.lex_state = 493, .external_lex_state = 54}, + [2868] = {.lex_state = 473, .external_lex_state = 44}, + [2869] = {.lex_state = 493, .external_lex_state = 54}, + [2870] = {.lex_state = 497, .external_lex_state = 57}, + [2871] = {.lex_state = 501, .external_lex_state = 54}, + [2872] = {.lex_state = 473, .external_lex_state = 44}, + [2873] = {.lex_state = 473, .external_lex_state = 44}, + [2874] = {.lex_state = 319, .external_lex_state = 45}, + [2875] = {.lex_state = 319, .external_lex_state = 45}, + [2876] = {.lex_state = 468, .external_lex_state = 51}, + [2877] = {.lex_state = 494, .external_lex_state = 28}, + [2878] = {.lex_state = 473, .external_lex_state = 44}, + [2879] = {.lex_state = 495, .external_lex_state = 57}, + [2880] = {.lex_state = 465, .external_lex_state = 60}, + [2881] = {.lex_state = 465, .external_lex_state = 60}, + [2882] = {.lex_state = 501, .external_lex_state = 54}, + [2883] = {.lex_state = 469, .external_lex_state = 39}, + [2884] = {.lex_state = 473, .external_lex_state = 44}, + [2885] = {.lex_state = 501, .external_lex_state = 54}, + [2886] = {.lex_state = 501, .external_lex_state = 54}, + [2887] = {.lex_state = 473, .external_lex_state = 44}, + [2888] = {.lex_state = 501, .external_lex_state = 54}, + [2889] = {.lex_state = 501, .external_lex_state = 58}, + [2890] = {.lex_state = 495, .external_lex_state = 57}, + [2891] = {.lex_state = 495, .external_lex_state = 57}, + [2892] = {.lex_state = 465, .external_lex_state = 59}, + [2893] = {.lex_state = 495, .external_lex_state = 57}, + [2894] = {.lex_state = 493, .external_lex_state = 54}, + [2895] = {.lex_state = 501, .external_lex_state = 58}, + [2896] = {.lex_state = 501, .external_lex_state = 54}, + [2897] = {.lex_state = 501, .external_lex_state = 54}, + [2898] = {.lex_state = 468, .external_lex_state = 51}, + [2899] = {.lex_state = 494, .external_lex_state = 28}, + [2900] = {.lex_state = 465, .external_lex_state = 59}, + [2901] = {.lex_state = 493, .external_lex_state = 54}, + [2902] = {.lex_state = 501, .external_lex_state = 54}, + [2903] = {.lex_state = 495, .external_lex_state = 57}, + [2904] = {.lex_state = 495, .external_lex_state = 57}, + [2905] = {.lex_state = 501, .external_lex_state = 54}, + [2906] = {.lex_state = 471, .external_lex_state = 61}, + [2907] = {.lex_state = 495, .external_lex_state = 57}, + [2908] = {.lex_state = 491, .external_lex_state = 25}, + [2909] = {.lex_state = 501, .external_lex_state = 54}, + [2910] = {.lex_state = 491, .external_lex_state = 25}, + [2911] = {.lex_state = 495, .external_lex_state = 57}, + [2912] = {.lex_state = 495, .external_lex_state = 57}, + [2913] = {.lex_state = 493, .external_lex_state = 58}, + [2914] = {.lex_state = 465, .external_lex_state = 61}, + [2915] = {.lex_state = 465, .external_lex_state = 61}, + [2916] = {.lex_state = 494, .external_lex_state = 32}, + [2917] = {.lex_state = 493, .external_lex_state = 58}, + [2918] = {.lex_state = 493, .external_lex_state = 58}, + [2919] = {.lex_state = 463, .external_lex_state = 39}, + [2920] = {.lex_state = 465, .external_lex_state = 61}, + [2921] = {.lex_state = 465, .external_lex_state = 44}, + [2922] = {.lex_state = 465, .external_lex_state = 44}, + [2923] = {.lex_state = 465, .external_lex_state = 44}, + [2924] = {.lex_state = 465, .external_lex_state = 61}, + [2925] = {.lex_state = 465, .external_lex_state = 44}, + [2926] = {.lex_state = 465, .external_lex_state = 44}, + [2927] = {.lex_state = 493, .external_lex_state = 58}, + [2928] = {.lex_state = 465, .external_lex_state = 44}, + [2929] = {.lex_state = 465, .external_lex_state = 44}, + [2930] = {.lex_state = 465, .external_lex_state = 61}, + [2931] = {.lex_state = 465, .external_lex_state = 61}, + [2932] = {.lex_state = 465, .external_lex_state = 44}, + [2933] = {.lex_state = 493, .external_lex_state = 58}, + [2934] = {.lex_state = 493, .external_lex_state = 58}, + [2935] = {.lex_state = 501, .external_lex_state = 58}, + [2936] = {.lex_state = 465, .external_lex_state = 61}, + [2937] = {.lex_state = 493, .external_lex_state = 58}, + [2938] = {.lex_state = 493, .external_lex_state = 58}, + [2939] = {.lex_state = 493, .external_lex_state = 58}, + [2940] = {.lex_state = 465, .external_lex_state = 61}, + [2941] = {.lex_state = 494, .external_lex_state = 32}, + [2942] = {.lex_state = 465, .external_lex_state = 61}, + [2943] = {.lex_state = 465, .external_lex_state = 61}, + [2944] = {.lex_state = 465, .external_lex_state = 61}, + [2945] = {.lex_state = 493, .external_lex_state = 58}, + [2946] = {.lex_state = 465, .external_lex_state = 61}, + [2947] = {.lex_state = 493, .external_lex_state = 58}, + [2948] = {.lex_state = 465, .external_lex_state = 61}, + [2949] = {.lex_state = 465, .external_lex_state = 61}, + [2950] = {.lex_state = 465, .external_lex_state = 61}, + [2951] = {.lex_state = 465, .external_lex_state = 61}, + [2952] = {.lex_state = 465, .external_lex_state = 61}, + [2953] = {.lex_state = 465, .external_lex_state = 61}, + [2954] = {.lex_state = 465, .external_lex_state = 61}, + [2955] = {.lex_state = 465, .external_lex_state = 61}, + [2956] = {.lex_state = 465, .external_lex_state = 61}, + [2957] = {.lex_state = 465, .external_lex_state = 61}, + [2958] = {.lex_state = 465, .external_lex_state = 61}, + [2959] = {.lex_state = 465, .external_lex_state = 61}, + [2960] = {.lex_state = 465, .external_lex_state = 61}, + [2961] = {.lex_state = 465, .external_lex_state = 61}, + [2962] = {.lex_state = 493, .external_lex_state = 58}, + [2963] = {.lex_state = 465, .external_lex_state = 61}, + [2964] = {.lex_state = 465, .external_lex_state = 61}, + [2965] = {.lex_state = 465, .external_lex_state = 61}, + [2966] = {.lex_state = 465, .external_lex_state = 61}, + [2967] = {.lex_state = 465, .external_lex_state = 61}, + [2968] = {.lex_state = 465, .external_lex_state = 61}, + [2969] = {.lex_state = 465, .external_lex_state = 61}, + [2970] = {.lex_state = 465, .external_lex_state = 61}, + [2971] = {.lex_state = 465, .external_lex_state = 61}, + [2972] = {.lex_state = 465, .external_lex_state = 61}, + [2973] = {.lex_state = 465, .external_lex_state = 61}, + [2974] = {.lex_state = 493, .external_lex_state = 58}, + [2975] = {.lex_state = 465, .external_lex_state = 61}, + [2976] = {.lex_state = 465, .external_lex_state = 61}, + [2977] = {.lex_state = 465, .external_lex_state = 61}, + [2978] = {.lex_state = 465, .external_lex_state = 61}, + [2979] = {.lex_state = 498, .external_lex_state = 58}, + [2980] = {.lex_state = 465, .external_lex_state = 61}, + [2981] = {.lex_state = 465, .external_lex_state = 61}, + [2982] = {.lex_state = 493, .external_lex_state = 58}, + [2983] = {.lex_state = 465, .external_lex_state = 61}, + [2984] = {.lex_state = 493, .external_lex_state = 58}, + [2985] = {.lex_state = 465, .external_lex_state = 61}, + [2986] = {.lex_state = 493, .external_lex_state = 58}, + [2987] = {.lex_state = 465, .external_lex_state = 61}, + [2988] = {.lex_state = 465, .external_lex_state = 61}, + [2989] = {.lex_state = 497, .external_lex_state = 57}, + [2990] = {.lex_state = 465, .external_lex_state = 61}, + [2991] = {.lex_state = 465, .external_lex_state = 61}, + [2992] = {.lex_state = 465, .external_lex_state = 61}, + [2993] = {.lex_state = 465, .external_lex_state = 61}, + [2994] = {.lex_state = 465, .external_lex_state = 61}, + [2995] = {.lex_state = 465, .external_lex_state = 61}, + [2996] = {.lex_state = 465, .external_lex_state = 61}, + [2997] = {.lex_state = 465, .external_lex_state = 61}, + [2998] = {.lex_state = 465, .external_lex_state = 61}, + [2999] = {.lex_state = 465, .external_lex_state = 61}, + [3000] = {.lex_state = 465, .external_lex_state = 61}, + [3001] = {.lex_state = 465, .external_lex_state = 61}, + [3002] = {.lex_state = 465, .external_lex_state = 61}, + [3003] = {.lex_state = 465, .external_lex_state = 61}, + [3004] = {.lex_state = 465, .external_lex_state = 61}, + [3005] = {.lex_state = 465, .external_lex_state = 61}, + [3006] = {.lex_state = 465, .external_lex_state = 61}, + [3007] = {.lex_state = 465, .external_lex_state = 61}, + [3008] = {.lex_state = 465, .external_lex_state = 61}, + [3009] = {.lex_state = 465, .external_lex_state = 61}, + [3010] = {.lex_state = 465, .external_lex_state = 61}, + [3011] = {.lex_state = 465, .external_lex_state = 61}, + [3012] = {.lex_state = 465, .external_lex_state = 61}, + [3013] = {.lex_state = 465, .external_lex_state = 61}, + [3014] = {.lex_state = 465, .external_lex_state = 61}, + [3015] = {.lex_state = 465, .external_lex_state = 61}, + [3016] = {.lex_state = 497, .external_lex_state = 57}, + [3017] = {.lex_state = 465, .external_lex_state = 61}, + [3018] = {.lex_state = 465, .external_lex_state = 61}, + [3019] = {.lex_state = 465, .external_lex_state = 62}, + [3020] = {.lex_state = 465, .external_lex_state = 61}, + [3021] = {.lex_state = 497, .external_lex_state = 57}, + [3022] = {.lex_state = 465, .external_lex_state = 61}, + [3023] = {.lex_state = 501, .external_lex_state = 58}, + [3024] = {.lex_state = 465, .external_lex_state = 61}, + [3025] = {.lex_state = 465, .external_lex_state = 61}, + [3026] = {.lex_state = 465, .external_lex_state = 61}, + [3027] = {.lex_state = 465, .external_lex_state = 61}, + [3028] = {.lex_state = 465, .external_lex_state = 61}, + [3029] = {.lex_state = 465, .external_lex_state = 61}, + [3030] = {.lex_state = 465, .external_lex_state = 61}, + [3031] = {.lex_state = 465, .external_lex_state = 61}, + [3032] = {.lex_state = 465, .external_lex_state = 61}, + [3033] = {.lex_state = 497, .external_lex_state = 57}, + [3034] = {.lex_state = 501, .external_lex_state = 58}, + [3035] = {.lex_state = 490, .external_lex_state = 26}, + [3036] = {.lex_state = 490, .external_lex_state = 26}, + [3037] = {.lex_state = 465, .external_lex_state = 61}, + [3038] = {.lex_state = 497, .external_lex_state = 57}, + [3039] = {.lex_state = 497, .external_lex_state = 57}, + [3040] = {.lex_state = 497, .external_lex_state = 57}, + [3041] = {.lex_state = 501, .external_lex_state = 58}, + [3042] = {.lex_state = 490, .external_lex_state = 26}, + [3043] = {.lex_state = 465, .external_lex_state = 61}, + [3044] = {.lex_state = 465, .external_lex_state = 62}, + [3045] = {.lex_state = 465, .external_lex_state = 61}, + [3046] = {.lex_state = 501, .external_lex_state = 58}, + [3047] = {.lex_state = 501, .external_lex_state = 58}, + [3048] = {.lex_state = 465, .external_lex_state = 44}, + [3049] = {.lex_state = 465, .external_lex_state = 44}, + [3050] = {.lex_state = 465, .external_lex_state = 44}, + [3051] = {.lex_state = 465, .external_lex_state = 44}, + [3052] = {.lex_state = 465, .external_lex_state = 44}, + [3053] = {.lex_state = 465, .external_lex_state = 44}, + [3054] = {.lex_state = 465, .external_lex_state = 44}, + [3055] = {.lex_state = 465, .external_lex_state = 62}, + [3056] = {.lex_state = 465, .external_lex_state = 44}, + [3057] = {.lex_state = 465, .external_lex_state = 44}, + [3058] = {.lex_state = 465, .external_lex_state = 44}, + [3059] = {.lex_state = 465, .external_lex_state = 44}, + [3060] = {.lex_state = 465, .external_lex_state = 44}, + [3061] = {.lex_state = 465, .external_lex_state = 44}, + [3062] = {.lex_state = 465, .external_lex_state = 44}, + [3063] = {.lex_state = 465, .external_lex_state = 44}, + [3064] = {.lex_state = 465, .external_lex_state = 44}, + [3065] = {.lex_state = 465, .external_lex_state = 44}, + [3066] = {.lex_state = 497, .external_lex_state = 57}, + [3067] = {.lex_state = 498, .external_lex_state = 58}, + [3068] = {.lex_state = 498, .external_lex_state = 58}, + [3069] = {.lex_state = 465, .external_lex_state = 61}, + [3070] = {.lex_state = 501, .external_lex_state = 58}, + [3071] = {.lex_state = 501, .external_lex_state = 58}, + [3072] = {.lex_state = 465, .external_lex_state = 62}, + [3073] = {.lex_state = 465, .external_lex_state = 62}, + [3074] = {.lex_state = 497, .external_lex_state = 57}, + [3075] = {.lex_state = 465, .external_lex_state = 62}, + [3076] = {.lex_state = 494, .external_lex_state = 28}, + [3077] = {.lex_state = 494, .external_lex_state = 28}, + [3078] = {.lex_state = 465, .external_lex_state = 44}, + [3079] = {.lex_state = 497, .external_lex_state = 57}, + [3080] = {.lex_state = 497, .external_lex_state = 57}, + [3081] = {.lex_state = 95, .external_lex_state = 63}, + [3082] = {.lex_state = 500, .external_lex_state = 26}, + [3083] = {.lex_state = 208, .external_lex_state = 64}, + [3084] = {.lex_state = 208, .external_lex_state = 64}, + [3085] = {.lex_state = 497, .external_lex_state = 57}, + [3086] = {.lex_state = 465, .external_lex_state = 61}, + [3087] = {.lex_state = 465, .external_lex_state = 61}, + [3088] = {.lex_state = 465, .external_lex_state = 61}, + [3089] = {.lex_state = 465, .external_lex_state = 61}, + [3090] = {.lex_state = 497, .external_lex_state = 57}, + [3091] = {.lex_state = 490, .external_lex_state = 26}, + [3092] = {.lex_state = 500, .external_lex_state = 26}, + [3093] = {.lex_state = 501, .external_lex_state = 58}, + [3094] = {.lex_state = 465, .external_lex_state = 62}, + [3095] = {.lex_state = 465, .external_lex_state = 46}, + [3096] = {.lex_state = 465, .external_lex_state = 62}, + [3097] = {.lex_state = 465, .external_lex_state = 62}, + [3098] = {.lex_state = 465, .external_lex_state = 61}, + [3099] = {.lex_state = 497, .external_lex_state = 57}, + [3100] = {.lex_state = 494, .external_lex_state = 28}, + [3101] = {.lex_state = 493, .external_lex_state = 58}, + [3102] = {.lex_state = 490, .external_lex_state = 26}, + [3103] = {.lex_state = 465, .external_lex_state = 44}, + [3104] = {.lex_state = 465, .external_lex_state = 44}, + [3105] = {.lex_state = 497, .external_lex_state = 57}, + [3106] = {.lex_state = 493, .external_lex_state = 58}, + [3107] = {.lex_state = 490, .external_lex_state = 26}, + [3108] = {.lex_state = 497, .external_lex_state = 57}, + [3109] = {.lex_state = 465, .external_lex_state = 61}, + [3110] = {.lex_state = 465, .external_lex_state = 61}, + [3111] = {.lex_state = 465, .external_lex_state = 61}, + [3112] = {.lex_state = 501, .external_lex_state = 58}, + [3113] = {.lex_state = 500, .external_lex_state = 26}, + [3114] = {.lex_state = 501, .external_lex_state = 58}, + [3115] = {.lex_state = 501, .external_lex_state = 58}, + [3116] = {.lex_state = 494, .external_lex_state = 28}, + [3117] = {.lex_state = 501, .external_lex_state = 58}, + [3118] = {.lex_state = 501, .external_lex_state = 58}, + [3119] = {.lex_state = 494, .external_lex_state = 28}, + [3120] = {.lex_state = 498, .external_lex_state = 58}, + [3121] = {.lex_state = 501, .external_lex_state = 58}, + [3122] = {.lex_state = 465, .external_lex_state = 61}, + [3123] = {.lex_state = 498, .external_lex_state = 58}, + [3124] = {.lex_state = 465, .external_lex_state = 44}, + [3125] = {.lex_state = 501, .external_lex_state = 58}, + [3126] = {.lex_state = 498, .external_lex_state = 58}, + [3127] = {.lex_state = 497, .external_lex_state = 57}, + [3128] = {.lex_state = 497, .external_lex_state = 57}, + [3129] = {.lex_state = 501, .external_lex_state = 58}, + [3130] = {.lex_state = 493, .external_lex_state = 58}, + [3131] = {.lex_state = 493, .external_lex_state = 58}, + [3132] = {.lex_state = 501, .external_lex_state = 58}, + [3133] = {.lex_state = 497, .external_lex_state = 57}, + [3134] = {.lex_state = 465, .external_lex_state = 61}, + [3135] = {.lex_state = 465, .external_lex_state = 61}, + [3136] = {.lex_state = 465, .external_lex_state = 61}, + [3137] = {.lex_state = 465, .external_lex_state = 61}, + [3138] = {.lex_state = 465, .external_lex_state = 61}, + [3139] = {.lex_state = 465, .external_lex_state = 61}, + [3140] = {.lex_state = 465, .external_lex_state = 61}, + [3141] = {.lex_state = 465, .external_lex_state = 61}, + [3142] = {.lex_state = 501, .external_lex_state = 58}, + [3143] = {.lex_state = 494, .external_lex_state = 28}, + [3144] = {.lex_state = 465, .external_lex_state = 61}, + [3145] = {.lex_state = 494, .external_lex_state = 28}, + [3146] = {.lex_state = 490, .external_lex_state = 26}, + [3147] = {.lex_state = 465, .external_lex_state = 61}, + [3148] = {.lex_state = 465, .external_lex_state = 61}, + [3149] = {.lex_state = 465, .external_lex_state = 61}, + [3150] = {.lex_state = 465, .external_lex_state = 44}, + [3151] = {.lex_state = 465, .external_lex_state = 44}, + [3152] = {.lex_state = 463, .external_lex_state = 39}, + [3153] = {.lex_state = 463, .external_lex_state = 39}, + [3154] = {.lex_state = 465, .external_lex_state = 61}, + [3155] = {.lex_state = 490, .external_lex_state = 26}, + [3156] = {.lex_state = 465, .external_lex_state = 65}, + [3157] = {.lex_state = 465, .external_lex_state = 65}, + [3158] = {.lex_state = 500, .external_lex_state = 26}, + [3159] = {.lex_state = 463, .external_lex_state = 39}, + [3160] = {.lex_state = 498, .external_lex_state = 58}, + [3161] = {.lex_state = 463, .external_lex_state = 39}, + [3162] = {.lex_state = 498, .external_lex_state = 58}, + [3163] = {.lex_state = 250, .external_lex_state = 64}, + [3164] = {.lex_state = 463, .external_lex_state = 60}, + [3165] = {.lex_state = 250, .external_lex_state = 64}, + [3166] = {.lex_state = 465, .external_lex_state = 61}, + [3167] = {.lex_state = 498, .external_lex_state = 58}, + [3168] = {.lex_state = 465, .external_lex_state = 46}, + [3169] = {.lex_state = 463, .external_lex_state = 39}, + [3170] = {.lex_state = 465, .external_lex_state = 46}, + [3171] = {.lex_state = 463, .external_lex_state = 39}, + [3172] = {.lex_state = 95, .external_lex_state = 63}, + [3173] = {.lex_state = 463, .external_lex_state = 39}, + [3174] = {.lex_state = 465, .external_lex_state = 46}, + [3175] = {.lex_state = 498, .external_lex_state = 58}, + [3176] = {.lex_state = 465, .external_lex_state = 46}, + [3177] = {.lex_state = 490, .external_lex_state = 36}, + [3178] = {.lex_state = 463, .external_lex_state = 39}, + [3179] = {.lex_state = 498, .external_lex_state = 58}, + [3180] = {.lex_state = 490, .external_lex_state = 26}, + [3181] = {.lex_state = 463, .external_lex_state = 39}, + [3182] = {.lex_state = 95, .external_lex_state = 63}, + [3183] = {.lex_state = 95, .external_lex_state = 63}, + [3184] = {.lex_state = 465, .external_lex_state = 61}, + [3185] = {.lex_state = 463, .external_lex_state = 39}, + [3186] = {.lex_state = 463, .external_lex_state = 39}, + [3187] = {.lex_state = 465, .external_lex_state = 46}, + [3188] = {.lex_state = 95, .external_lex_state = 63}, + [3189] = {.lex_state = 500, .external_lex_state = 36}, + [3190] = {.lex_state = 95, .external_lex_state = 63}, + [3191] = {.lex_state = 95, .external_lex_state = 63}, + [3192] = {.lex_state = 465, .external_lex_state = 61}, + [3193] = {.lex_state = 463, .external_lex_state = 39}, + [3194] = {.lex_state = 95, .external_lex_state = 63}, + [3195] = {.lex_state = 465, .external_lex_state = 46}, + [3196] = {.lex_state = 465, .external_lex_state = 46}, + [3197] = {.lex_state = 465, .external_lex_state = 46}, + [3198] = {.lex_state = 490, .external_lex_state = 36}, + [3199] = {.lex_state = 490, .external_lex_state = 26}, + [3200] = {.lex_state = 463, .external_lex_state = 39}, + [3201] = {.lex_state = 490, .external_lex_state = 26}, + [3202] = {.lex_state = 463, .external_lex_state = 39}, + [3203] = {.lex_state = 465, .external_lex_state = 46}, + [3204] = {.lex_state = 465, .external_lex_state = 46}, + [3205] = {.lex_state = 463, .external_lex_state = 39}, + [3206] = {.lex_state = 490, .external_lex_state = 26}, + [3207] = {.lex_state = 463, .external_lex_state = 39}, + [3208] = {.lex_state = 95, .external_lex_state = 63}, + [3209] = {.lex_state = 463, .external_lex_state = 39}, + [3210] = {.lex_state = 465, .external_lex_state = 46}, + [3211] = {.lex_state = 465, .external_lex_state = 46}, + [3212] = {.lex_state = 250, .external_lex_state = 64}, + [3213] = {.lex_state = 250, .external_lex_state = 64}, + [3214] = {.lex_state = 500, .external_lex_state = 26}, + [3215] = {.lex_state = 465, .external_lex_state = 46}, + [3216] = {.lex_state = 500, .external_lex_state = 26}, + [3217] = {.lex_state = 463, .external_lex_state = 39}, + [3218] = {.lex_state = 465, .external_lex_state = 61}, + [3219] = {.lex_state = 463, .external_lex_state = 39}, + [3220] = {.lex_state = 465, .external_lex_state = 61}, + [3221] = {.lex_state = 490, .external_lex_state = 26}, + [3222] = {.lex_state = 465, .external_lex_state = 46}, + [3223] = {.lex_state = 465, .external_lex_state = 46}, + [3224] = {.lex_state = 463, .external_lex_state = 39}, + [3225] = {.lex_state = 463, .external_lex_state = 39}, + [3226] = {.lex_state = 463, .external_lex_state = 39}, + [3227] = {.lex_state = 463, .external_lex_state = 39}, + [3228] = {.lex_state = 463, .external_lex_state = 39}, + [3229] = {.lex_state = 465, .external_lex_state = 61}, + [3230] = {.lex_state = 463, .external_lex_state = 39}, + [3231] = {.lex_state = 463, .external_lex_state = 39}, + [3232] = {.lex_state = 463, .external_lex_state = 39}, + [3233] = {.lex_state = 463, .external_lex_state = 39}, + [3234] = {.lex_state = 463, .external_lex_state = 39}, + [3235] = {.lex_state = 463, .external_lex_state = 39}, + [3236] = {.lex_state = 463, .external_lex_state = 39}, + [3237] = {.lex_state = 463, .external_lex_state = 39}, + [3238] = {.lex_state = 463, .external_lex_state = 39}, + [3239] = {.lex_state = 463, .external_lex_state = 39}, + [3240] = {.lex_state = 463, .external_lex_state = 39}, + [3241] = {.lex_state = 465, .external_lex_state = 46}, + [3242] = {.lex_state = 498, .external_lex_state = 58}, + [3243] = {.lex_state = 463, .external_lex_state = 39}, + [3244] = {.lex_state = 463, .external_lex_state = 39}, + [3245] = {.lex_state = 498, .external_lex_state = 58}, + [3246] = {.lex_state = 463, .external_lex_state = 39}, + [3247] = {.lex_state = 490, .external_lex_state = 26}, + [3248] = {.lex_state = 465, .external_lex_state = 46}, + [3249] = {.lex_state = 465, .external_lex_state = 46}, + [3250] = {.lex_state = 95, .external_lex_state = 63}, + [3251] = {.lex_state = 498, .external_lex_state = 58}, + [3252] = {.lex_state = 463, .external_lex_state = 39}, + [3253] = {.lex_state = 463, .external_lex_state = 39}, + [3254] = {.lex_state = 465, .external_lex_state = 46}, + [3255] = {.lex_state = 465, .external_lex_state = 46}, + [3256] = {.lex_state = 95, .external_lex_state = 63}, + [3257] = {.lex_state = 463, .external_lex_state = 60}, + [3258] = {.lex_state = 471, .external_lex_state = 66}, + [3259] = {.lex_state = 463, .external_lex_state = 39}, + [3260] = {.lex_state = 465, .external_lex_state = 46}, + [3261] = {.lex_state = 463, .external_lex_state = 39}, + [3262] = {.lex_state = 463, .external_lex_state = 39}, + [3263] = {.lex_state = 465, .external_lex_state = 61}, + [3264] = {.lex_state = 463, .external_lex_state = 39}, + [3265] = {.lex_state = 465, .external_lex_state = 61}, + [3266] = {.lex_state = 463, .external_lex_state = 39}, + [3267] = {.lex_state = 494, .external_lex_state = 32}, + [3268] = {.lex_state = 463, .external_lex_state = 39}, + [3269] = {.lex_state = 499, .external_lex_state = 32}, + [3270] = {.lex_state = 463, .external_lex_state = 39}, + [3271] = {.lex_state = 463, .external_lex_state = 39}, + [3272] = {.lex_state = 465, .external_lex_state = 46}, + [3273] = {.lex_state = 463, .external_lex_state = 39}, + [3274] = {.lex_state = 463, .external_lex_state = 39}, + [3275] = {.lex_state = 465, .external_lex_state = 46}, + [3276] = {.lex_state = 500, .external_lex_state = 26}, + [3277] = {.lex_state = 465, .external_lex_state = 65}, + [3278] = {.lex_state = 465, .external_lex_state = 46}, + [3279] = {.lex_state = 465, .external_lex_state = 46}, + [3280] = {.lex_state = 95, .external_lex_state = 63}, + [3281] = {.lex_state = 463, .external_lex_state = 39}, + [3282] = {.lex_state = 463, .external_lex_state = 39}, + [3283] = {.lex_state = 465, .external_lex_state = 65}, + [3284] = {.lex_state = 463, .external_lex_state = 39}, + [3285] = {.lex_state = 253, .external_lex_state = 67}, + [3286] = {.lex_state = 253, .external_lex_state = 67}, + [3287] = {.lex_state = 95, .external_lex_state = 63}, + [3288] = {.lex_state = 95, .external_lex_state = 63}, + [3289] = {.lex_state = 465, .external_lex_state = 46}, + [3290] = {.lex_state = 465, .external_lex_state = 61}, + [3291] = {.lex_state = 463, .external_lex_state = 39}, + [3292] = {.lex_state = 465, .external_lex_state = 61}, + [3293] = {.lex_state = 95, .external_lex_state = 63}, + [3294] = {.lex_state = 95, .external_lex_state = 63}, + [3295] = {.lex_state = 466, .external_lex_state = 61}, + [3296] = {.lex_state = 465, .external_lex_state = 46}, + [3297] = {.lex_state = 465, .external_lex_state = 46}, + [3298] = {.lex_state = 463, .external_lex_state = 39}, + [3299] = {.lex_state = 463, .external_lex_state = 39}, + [3300] = {.lex_state = 465, .external_lex_state = 46}, + [3301] = {.lex_state = 498, .external_lex_state = 58}, + [3302] = {.lex_state = 95, .external_lex_state = 63}, + [3303] = {.lex_state = 500, .external_lex_state = 36}, + [3304] = {.lex_state = 498, .external_lex_state = 58}, + [3305] = {.lex_state = 463, .external_lex_state = 39}, + [3306] = {.lex_state = 498, .external_lex_state = 58}, + [3307] = {.lex_state = 490, .external_lex_state = 26}, + [3308] = {.lex_state = 465, .external_lex_state = 61}, + [3309] = {.lex_state = 463, .external_lex_state = 39}, + [3310] = {.lex_state = 95, .external_lex_state = 63}, + [3311] = {.lex_state = 470, .external_lex_state = 61}, + [3312] = {.lex_state = 498, .external_lex_state = 58}, + [3313] = {.lex_state = 465, .external_lex_state = 46}, + [3314] = {.lex_state = 463, .external_lex_state = 39}, + [3315] = {.lex_state = 465, .external_lex_state = 61}, + [3316] = {.lex_state = 95, .external_lex_state = 63}, + [3317] = {.lex_state = 465, .external_lex_state = 46}, + [3318] = {.lex_state = 463, .external_lex_state = 39}, + [3319] = {.lex_state = 95, .external_lex_state = 63}, + [3320] = {.lex_state = 95, .external_lex_state = 63}, + [3321] = {.lex_state = 463, .external_lex_state = 39}, + [3322] = {.lex_state = 465, .external_lex_state = 61}, + [3323] = {.lex_state = 463, .external_lex_state = 60}, + [3324] = {.lex_state = 463, .external_lex_state = 39}, + [3325] = {.lex_state = 490, .external_lex_state = 26}, + [3326] = {.lex_state = 498, .external_lex_state = 58}, + [3327] = {.lex_state = 463, .external_lex_state = 39}, + [3328] = {.lex_state = 95, .external_lex_state = 63}, + [3329] = {.lex_state = 463, .external_lex_state = 39}, + [3330] = {.lex_state = 463, .external_lex_state = 39}, + [3331] = {.lex_state = 465, .external_lex_state = 61}, + [3332] = {.lex_state = 463, .external_lex_state = 39}, + [3333] = {.lex_state = 463, .external_lex_state = 39}, + [3334] = {.lex_state = 465, .external_lex_state = 46}, + [3335] = {.lex_state = 95, .external_lex_state = 63}, + [3336] = {.lex_state = 498, .external_lex_state = 58}, + [3337] = {.lex_state = 463, .external_lex_state = 39}, + [3338] = {.lex_state = 463, .external_lex_state = 39}, + [3339] = {.lex_state = 463, .external_lex_state = 39}, + [3340] = {.lex_state = 95, .external_lex_state = 63}, + [3341] = {.lex_state = 95, .external_lex_state = 63}, + [3342] = {.lex_state = 95, .external_lex_state = 63}, + [3343] = {.lex_state = 472, .external_lex_state = 61}, + [3344] = {.lex_state = 463, .external_lex_state = 39}, + [3345] = {.lex_state = 95, .external_lex_state = 63}, + [3346] = {.lex_state = 498, .external_lex_state = 58}, + [3347] = {.lex_state = 95, .external_lex_state = 63}, + [3348] = {.lex_state = 95, .external_lex_state = 63}, + [3349] = {.lex_state = 463, .external_lex_state = 60}, + [3350] = {.lex_state = 465, .external_lex_state = 61}, + [3351] = {.lex_state = 498, .external_lex_state = 58}, + [3352] = {.lex_state = 465, .external_lex_state = 61}, + [3353] = {.lex_state = 95, .external_lex_state = 63}, + [3354] = {.lex_state = 490, .external_lex_state = 26}, + [3355] = {.lex_state = 490, .external_lex_state = 26}, + [3356] = {.lex_state = 95, .external_lex_state = 63}, + [3357] = {.lex_state = 465, .external_lex_state = 46}, + [3358] = {.lex_state = 463, .external_lex_state = 39}, + [3359] = {.lex_state = 95, .external_lex_state = 63}, + [3360] = {.lex_state = 498, .external_lex_state = 58}, + [3361] = {.lex_state = 498, .external_lex_state = 58}, + [3362] = {.lex_state = 465, .external_lex_state = 61}, + [3363] = {.lex_state = 465, .external_lex_state = 61}, + [3364] = {.lex_state = 499, .external_lex_state = 32}, + [3365] = {.lex_state = 498, .external_lex_state = 58}, + [3366] = {.lex_state = 95, .external_lex_state = 63}, + [3367] = {.lex_state = 472, .external_lex_state = 61}, + [3368] = {.lex_state = 465, .external_lex_state = 66}, + [3369] = {.lex_state = 463, .external_lex_state = 61}, + [3370] = {.lex_state = 463, .external_lex_state = 61}, + [3371] = {.lex_state = 502, .external_lex_state = 68}, + [3372] = {.lex_state = 465, .external_lex_state = 66}, + [3373] = {.lex_state = 472, .external_lex_state = 61}, + [3374] = {.lex_state = 472, .external_lex_state = 61}, + [3375] = {.lex_state = 465, .external_lex_state = 66}, + [3376] = {.lex_state = 463, .external_lex_state = 61}, + [3377] = {.lex_state = 488, .external_lex_state = 33}, + [3378] = {.lex_state = 463, .external_lex_state = 61}, + [3379] = {.lex_state = 463, .external_lex_state = 61}, + [3380] = {.lex_state = 502, .external_lex_state = 68}, + [3381] = {.lex_state = 465, .external_lex_state = 66}, + [3382] = {.lex_state = 472, .external_lex_state = 61}, + [3383] = {.lex_state = 466, .external_lex_state = 61}, + [3384] = {.lex_state = 466, .external_lex_state = 61}, + [3385] = {.lex_state = 465, .external_lex_state = 66}, + [3386] = {.lex_state = 463, .external_lex_state = 61}, + [3387] = {.lex_state = 463, .external_lex_state = 61}, + [3388] = {.lex_state = 463, .external_lex_state = 61}, + [3389] = {.lex_state = 463, .external_lex_state = 61}, + [3390] = {.lex_state = 463, .external_lex_state = 61}, + [3391] = {.lex_state = 463, .external_lex_state = 61}, + [3392] = {.lex_state = 463, .external_lex_state = 61}, + [3393] = {.lex_state = 463, .external_lex_state = 61}, + [3394] = {.lex_state = 466, .external_lex_state = 61}, + [3395] = {.lex_state = 463, .external_lex_state = 61}, + [3396] = {.lex_state = 463, .external_lex_state = 61}, + [3397] = {.lex_state = 463, .external_lex_state = 61}, + [3398] = {.lex_state = 465, .external_lex_state = 66}, + [3399] = {.lex_state = 465, .external_lex_state = 66}, + [3400] = {.lex_state = 502, .external_lex_state = 68}, + [3401] = {.lex_state = 463, .external_lex_state = 61}, + [3402] = {.lex_state = 465, .external_lex_state = 66}, + [3403] = {.lex_state = 463, .external_lex_state = 61}, + [3404] = {.lex_state = 463, .external_lex_state = 61}, + [3405] = {.lex_state = 465, .external_lex_state = 66}, + [3406] = {.lex_state = 472, .external_lex_state = 61}, + [3407] = {.lex_state = 502, .external_lex_state = 68}, + [3408] = {.lex_state = 465, .external_lex_state = 66}, + [3409] = {.lex_state = 463, .external_lex_state = 61}, + [3410] = {.lex_state = 323, .external_lex_state = 69}, + [3411] = {.lex_state = 323, .external_lex_state = 69}, + [3412] = {.lex_state = 465, .external_lex_state = 66}, + [3413] = {.lex_state = 463, .external_lex_state = 61}, + [3414] = {.lex_state = 465, .external_lex_state = 66}, + [3415] = {.lex_state = 465, .external_lex_state = 66}, + [3416] = {.lex_state = 502, .external_lex_state = 68}, + [3417] = {.lex_state = 465, .external_lex_state = 66}, + [3418] = {.lex_state = 502, .external_lex_state = 68}, + [3419] = {.lex_state = 465, .external_lex_state = 66}, + [3420] = {.lex_state = 463, .external_lex_state = 61}, + [3421] = {.lex_state = 466, .external_lex_state = 61}, + [3422] = {.lex_state = 502, .external_lex_state = 68}, + [3423] = {.lex_state = 463, .external_lex_state = 61}, + [3424] = {.lex_state = 466, .external_lex_state = 61}, + [3425] = {.lex_state = 463, .external_lex_state = 39}, + [3426] = {.lex_state = 465, .external_lex_state = 66}, + [3427] = {.lex_state = 463, .external_lex_state = 61}, + [3428] = {.lex_state = 465, .external_lex_state = 66}, + [3429] = {.lex_state = 465, .external_lex_state = 66}, + [3430] = {.lex_state = 472, .external_lex_state = 61}, + [3431] = {.lex_state = 465, .external_lex_state = 66}, + [3432] = {.lex_state = 465, .external_lex_state = 66}, + [3433] = {.lex_state = 463, .external_lex_state = 61}, + [3434] = {.lex_state = 463, .external_lex_state = 61}, + [3435] = {.lex_state = 463, .external_lex_state = 61}, + [3436] = {.lex_state = 472, .external_lex_state = 61}, + [3437] = {.lex_state = 466, .external_lex_state = 61}, + [3438] = {.lex_state = 472, .external_lex_state = 61}, + [3439] = {.lex_state = 472, .external_lex_state = 61}, + [3440] = {.lex_state = 472, .external_lex_state = 61}, + [3441] = {.lex_state = 472, .external_lex_state = 61}, + [3442] = {.lex_state = 465, .external_lex_state = 66}, + [3443] = {.lex_state = 472, .external_lex_state = 61}, + [3444] = {.lex_state = 472, .external_lex_state = 61}, + [3445] = {.lex_state = 472, .external_lex_state = 61}, + [3446] = {.lex_state = 565, .external_lex_state = 67}, + [3447] = {.lex_state = 472, .external_lex_state = 61}, + [3448] = {.lex_state = 472, .external_lex_state = 61}, + [3449] = {.lex_state = 472, .external_lex_state = 61}, + [3450] = {.lex_state = 472, .external_lex_state = 61}, + [3451] = {.lex_state = 496, .external_lex_state = 36}, + [3452] = {.lex_state = 472, .external_lex_state = 61}, + [3453] = {.lex_state = 472, .external_lex_state = 61}, + [3454] = {.lex_state = 466, .external_lex_state = 61}, + [3455] = {.lex_state = 502, .external_lex_state = 68}, + [3456] = {.lex_state = 465, .external_lex_state = 66}, + [3457] = {.lex_state = 465, .external_lex_state = 66}, + [3458] = {.lex_state = 565, .external_lex_state = 67}, + [3459] = {.lex_state = 465, .external_lex_state = 66}, + [3460] = {.lex_state = 465, .external_lex_state = 66}, + [3461] = {.lex_state = 472, .external_lex_state = 61}, + [3462] = {.lex_state = 463, .external_lex_state = 61}, + [3463] = {.lex_state = 465, .external_lex_state = 66}, + [3464] = {.lex_state = 463, .external_lex_state = 39}, + [3465] = {.lex_state = 465, .external_lex_state = 66}, + [3466] = {.lex_state = 465, .external_lex_state = 66}, + [3467] = {.lex_state = 465, .external_lex_state = 66}, + [3468] = {.lex_state = 463, .external_lex_state = 61}, + [3469] = {.lex_state = 465, .external_lex_state = 66}, + [3470] = {.lex_state = 465, .external_lex_state = 66}, + [3471] = {.lex_state = 465, .external_lex_state = 66}, + [3472] = {.lex_state = 466, .external_lex_state = 61}, + [3473] = {.lex_state = 502, .external_lex_state = 68}, + [3474] = {.lex_state = 465, .external_lex_state = 66}, + [3475] = {.lex_state = 465, .external_lex_state = 66}, + [3476] = {.lex_state = 465, .external_lex_state = 66}, + [3477] = {.lex_state = 465, .external_lex_state = 66}, + [3478] = {.lex_state = 472, .external_lex_state = 61}, + [3479] = {.lex_state = 465, .external_lex_state = 66}, + [3480] = {.lex_state = 465, .external_lex_state = 66}, + [3481] = {.lex_state = 465, .external_lex_state = 66}, + [3482] = {.lex_state = 465, .external_lex_state = 66}, + [3483] = {.lex_state = 465, .external_lex_state = 66}, + [3484] = {.lex_state = 463, .external_lex_state = 61}, + [3485] = {.lex_state = 465, .external_lex_state = 66}, + [3486] = {.lex_state = 465, .external_lex_state = 66}, + [3487] = {.lex_state = 472, .external_lex_state = 61}, + [3488] = {.lex_state = 465, .external_lex_state = 66}, + [3489] = {.lex_state = 259, .external_lex_state = 67}, + [3490] = {.lex_state = 490, .external_lex_state = 36}, + [3491] = {.lex_state = 465, .external_lex_state = 66}, + [3492] = {.lex_state = 465, .external_lex_state = 66}, + [3493] = {.lex_state = 465, .external_lex_state = 66}, + [3494] = {.lex_state = 465, .external_lex_state = 66}, + [3495] = {.lex_state = 472, .external_lex_state = 61}, + [3496] = {.lex_state = 465, .external_lex_state = 66}, + [3497] = {.lex_state = 465, .external_lex_state = 66}, + [3498] = {.lex_state = 323, .external_lex_state = 69}, + [3499] = {.lex_state = 465, .external_lex_state = 66}, + [3500] = {.lex_state = 465, .external_lex_state = 66}, + [3501] = {.lex_state = 465, .external_lex_state = 66}, + [3502] = {.lex_state = 259, .external_lex_state = 67}, + [3503] = {.lex_state = 465, .external_lex_state = 66}, + [3504] = {.lex_state = 502, .external_lex_state = 68}, + [3505] = {.lex_state = 465, .external_lex_state = 66}, + [3506] = {.lex_state = 465, .external_lex_state = 66}, + [3507] = {.lex_state = 465, .external_lex_state = 66}, + [3508] = {.lex_state = 463, .external_lex_state = 61}, + [3509] = {.lex_state = 465, .external_lex_state = 66}, + [3510] = {.lex_state = 465, .external_lex_state = 66}, + [3511] = {.lex_state = 465, .external_lex_state = 66}, + [3512] = {.lex_state = 465, .external_lex_state = 66}, + [3513] = {.lex_state = 465, .external_lex_state = 66}, + [3514] = {.lex_state = 465, .external_lex_state = 66}, + [3515] = {.lex_state = 465, .external_lex_state = 66}, + [3516] = {.lex_state = 472, .external_lex_state = 61}, + [3517] = {.lex_state = 465, .external_lex_state = 66}, + [3518] = {.lex_state = 465, .external_lex_state = 66}, + [3519] = {.lex_state = 465, .external_lex_state = 66}, + [3520] = {.lex_state = 465, .external_lex_state = 66}, + [3521] = {.lex_state = 465, .external_lex_state = 66}, + [3522] = {.lex_state = 463, .external_lex_state = 61}, + [3523] = {.lex_state = 465, .external_lex_state = 66}, + [3524] = {.lex_state = 466, .external_lex_state = 61}, + [3525] = {.lex_state = 465, .external_lex_state = 66}, + [3526] = {.lex_state = 466, .external_lex_state = 61}, + [3527] = {.lex_state = 465, .external_lex_state = 66}, + [3528] = {.lex_state = 466, .external_lex_state = 61}, + [3529] = {.lex_state = 465, .external_lex_state = 66}, + [3530] = {.lex_state = 466, .external_lex_state = 61}, + [3531] = {.lex_state = 465, .external_lex_state = 66}, + [3532] = {.lex_state = 465, .external_lex_state = 66}, + [3533] = {.lex_state = 466, .external_lex_state = 61}, + [3534] = {.lex_state = 465, .external_lex_state = 66}, + [3535] = {.lex_state = 465, .external_lex_state = 66}, + [3536] = {.lex_state = 565, .external_lex_state = 67}, + [3537] = {.lex_state = 465, .external_lex_state = 66}, + [3538] = {.lex_state = 565, .external_lex_state = 67}, + [3539] = {.lex_state = 465, .external_lex_state = 66}, + [3540] = {.lex_state = 466, .external_lex_state = 61}, + [3541] = {.lex_state = 465, .external_lex_state = 66}, + [3542] = {.lex_state = 466, .external_lex_state = 61}, + [3543] = {.lex_state = 465, .external_lex_state = 66}, + [3544] = {.lex_state = 466, .external_lex_state = 61}, + [3545] = {.lex_state = 465, .external_lex_state = 66}, + [3546] = {.lex_state = 466, .external_lex_state = 61}, + [3547] = {.lex_state = 465, .external_lex_state = 66}, + [3548] = {.lex_state = 466, .external_lex_state = 61}, + [3549] = {.lex_state = 465, .external_lex_state = 66}, + [3550] = {.lex_state = 465, .external_lex_state = 66}, + [3551] = {.lex_state = 465, .external_lex_state = 66}, + [3552] = {.lex_state = 466, .external_lex_state = 61}, + [3553] = {.lex_state = 465, .external_lex_state = 66}, + [3554] = {.lex_state = 465, .external_lex_state = 66}, + [3555] = {.lex_state = 465, .external_lex_state = 66}, + [3556] = {.lex_state = 466, .external_lex_state = 61}, + [3557] = {.lex_state = 465, .external_lex_state = 66}, + [3558] = {.lex_state = 466, .external_lex_state = 61}, + [3559] = {.lex_state = 465, .external_lex_state = 66}, + [3560] = {.lex_state = 466, .external_lex_state = 61}, + [3561] = {.lex_state = 466, .external_lex_state = 61}, + [3562] = {.lex_state = 465, .external_lex_state = 66}, + [3563] = {.lex_state = 466, .external_lex_state = 61}, + [3564] = {.lex_state = 262, .external_lex_state = 67}, + [3565] = {.lex_state = 465, .external_lex_state = 66}, + [3566] = {.lex_state = 465, .external_lex_state = 66}, + [3567] = {.lex_state = 465, .external_lex_state = 66}, + [3568] = {.lex_state = 262, .external_lex_state = 67}, + [3569] = {.lex_state = 466, .external_lex_state = 61}, + [3570] = {.lex_state = 465, .external_lex_state = 66}, + [3571] = {.lex_state = 465, .external_lex_state = 66}, + [3572] = {.lex_state = 465, .external_lex_state = 66}, + [3573] = {.lex_state = 466, .external_lex_state = 61}, + [3574] = {.lex_state = 465, .external_lex_state = 66}, + [3575] = {.lex_state = 465, .external_lex_state = 66}, + [3576] = {.lex_state = 463, .external_lex_state = 61}, + [3577] = {.lex_state = 262, .external_lex_state = 67}, + [3578] = {.lex_state = 262, .external_lex_state = 67}, + [3579] = {.lex_state = 472, .external_lex_state = 61}, + [3580] = {.lex_state = 466, .external_lex_state = 61}, + [3581] = {.lex_state = 465, .external_lex_state = 66}, + [3582] = {.lex_state = 472, .external_lex_state = 61}, + [3583] = {.lex_state = 499, .external_lex_state = 32}, + [3584] = {.lex_state = 465, .external_lex_state = 66}, + [3585] = {.lex_state = 323, .external_lex_state = 69}, + [3586] = {.lex_state = 465, .external_lex_state = 66}, + [3587] = {.lex_state = 472, .external_lex_state = 61}, + [3588] = {.lex_state = 465, .external_lex_state = 66}, + [3589] = {.lex_state = 500, .external_lex_state = 36}, + [3590] = {.lex_state = 466, .external_lex_state = 61}, + [3591] = {.lex_state = 465, .external_lex_state = 66}, + [3592] = {.lex_state = 463, .external_lex_state = 61}, + [3593] = {.lex_state = 465, .external_lex_state = 66}, + [3594] = {.lex_state = 323, .external_lex_state = 69}, + [3595] = {.lex_state = 465, .external_lex_state = 66}, + [3596] = {.lex_state = 502, .external_lex_state = 68}, + [3597] = {.lex_state = 463, .external_lex_state = 39}, + [3598] = {.lex_state = 463, .external_lex_state = 39}, + [3599] = {.lex_state = 463, .external_lex_state = 39}, + [3600] = {.lex_state = 463, .external_lex_state = 39}, + [3601] = {.lex_state = 463, .external_lex_state = 39}, + [3602] = {.lex_state = 463, .external_lex_state = 39}, + [3603] = {.lex_state = 463, .external_lex_state = 39}, + [3604] = {.lex_state = 463, .external_lex_state = 39}, + [3605] = {.lex_state = 463, .external_lex_state = 39}, + [3606] = {.lex_state = 463, .external_lex_state = 39}, + [3607] = {.lex_state = 463, .external_lex_state = 39}, + [3608] = {.lex_state = 463, .external_lex_state = 39}, + [3609] = {.lex_state = 463, .external_lex_state = 39}, + [3610] = {.lex_state = 463, .external_lex_state = 39}, + [3611] = {.lex_state = 463, .external_lex_state = 61}, + [3612] = {.lex_state = 463, .external_lex_state = 61}, + [3613] = {.lex_state = 502, .external_lex_state = 68}, + [3614] = {.lex_state = 502, .external_lex_state = 68}, + [3615] = {.lex_state = 465, .external_lex_state = 66}, + [3616] = {.lex_state = 463, .external_lex_state = 39}, + [3617] = {.lex_state = 463, .external_lex_state = 39}, + [3618] = {.lex_state = 463, .external_lex_state = 39}, + [3619] = {.lex_state = 463, .external_lex_state = 61}, + [3620] = {.lex_state = 502, .external_lex_state = 68}, + [3621] = {.lex_state = 502, .external_lex_state = 68}, + [3622] = {.lex_state = 465, .external_lex_state = 66}, + [3623] = {.lex_state = 465, .external_lex_state = 66}, + [3624] = {.lex_state = 466, .external_lex_state = 61}, + [3625] = {.lex_state = 502, .external_lex_state = 68}, + [3626] = {.lex_state = 466, .external_lex_state = 61}, + [3627] = {.lex_state = 472, .external_lex_state = 61}, + [3628] = {.lex_state = 472, .external_lex_state = 61}, + [3629] = {.lex_state = 472, .external_lex_state = 61}, + [3630] = {.lex_state = 472, .external_lex_state = 61}, + [3631] = {.lex_state = 463, .external_lex_state = 61}, + [3632] = {.lex_state = 463, .external_lex_state = 61}, + [3633] = {.lex_state = 463, .external_lex_state = 61}, + [3634] = {.lex_state = 463, .external_lex_state = 61}, + [3635] = {.lex_state = 463, .external_lex_state = 61}, + [3636] = {.lex_state = 463, .external_lex_state = 61}, + [3637] = {.lex_state = 265, .external_lex_state = 67}, + [3638] = {.lex_state = 466, .external_lex_state = 61}, + [3639] = {.lex_state = 463, .external_lex_state = 61}, + [3640] = {.lex_state = 265, .external_lex_state = 67}, + [3641] = {.lex_state = 465, .external_lex_state = 66}, + [3642] = {.lex_state = 496, .external_lex_state = 36}, + [3643] = {.lex_state = 323, .external_lex_state = 69}, + [3644] = {.lex_state = 463, .external_lex_state = 61}, + [3645] = {.lex_state = 463, .external_lex_state = 61}, + [3646] = {.lex_state = 466, .external_lex_state = 61}, + [3647] = {.lex_state = 490, .external_lex_state = 48}, + [3648] = {.lex_state = 323, .external_lex_state = 69}, + [3649] = {.lex_state = 323, .external_lex_state = 69}, + [3650] = {.lex_state = 490, .external_lex_state = 48}, + [3651] = {.lex_state = 490, .external_lex_state = 48}, + [3652] = {.lex_state = 490, .external_lex_state = 48}, + [3653] = {.lex_state = 490, .external_lex_state = 48}, + [3654] = {.lex_state = 323, .external_lex_state = 69}, + [3655] = {.lex_state = 268, .external_lex_state = 67}, + [3656] = {.lex_state = 323, .external_lex_state = 69}, + [3657] = {.lex_state = 490, .external_lex_state = 48}, + [3658] = {.lex_state = 323, .external_lex_state = 69}, + [3659] = {.lex_state = 490, .external_lex_state = 48}, + [3660] = {.lex_state = 490, .external_lex_state = 48}, + [3661] = {.lex_state = 490, .external_lex_state = 48}, + [3662] = {.lex_state = 323, .external_lex_state = 69}, + [3663] = {.lex_state = 569, .external_lex_state = 67}, + [3664] = {.lex_state = 490, .external_lex_state = 48}, + [3665] = {.lex_state = 490, .external_lex_state = 48}, + [3666] = {.lex_state = 323, .external_lex_state = 69}, + [3667] = {.lex_state = 274, .external_lex_state = 67}, + [3668] = {.lex_state = 490, .external_lex_state = 48}, + [3669] = {.lex_state = 274, .external_lex_state = 67}, + [3670] = {.lex_state = 490, .external_lex_state = 48}, + [3671] = {.lex_state = 323, .external_lex_state = 69}, + [3672] = {.lex_state = 323, .external_lex_state = 69}, + [3673] = {.lex_state = 323, .external_lex_state = 69}, + [3674] = {.lex_state = 490, .external_lex_state = 48}, + [3675] = {.lex_state = 490, .external_lex_state = 48}, + [3676] = {.lex_state = 268, .external_lex_state = 67}, + [3677] = {.lex_state = 323, .external_lex_state = 69}, + [3678] = {.lex_state = 323, .external_lex_state = 69}, + [3679] = {.lex_state = 268, .external_lex_state = 67}, + [3680] = {.lex_state = 490, .external_lex_state = 48}, + [3681] = {.lex_state = 490, .external_lex_state = 48}, + [3682] = {.lex_state = 490, .external_lex_state = 48}, + [3683] = {.lex_state = 274, .external_lex_state = 67}, + [3684] = {.lex_state = 490, .external_lex_state = 48}, + [3685] = {.lex_state = 268, .external_lex_state = 67}, + [3686] = {.lex_state = 490, .external_lex_state = 48}, + [3687] = {.lex_state = 323, .external_lex_state = 69}, + [3688] = {.lex_state = 490, .external_lex_state = 48}, + [3689] = {.lex_state = 323, .external_lex_state = 69}, + [3690] = {.lex_state = 569, .external_lex_state = 67}, + [3691] = {.lex_state = 490, .external_lex_state = 48}, + [3692] = {.lex_state = 323, .external_lex_state = 69}, + [3693] = {.lex_state = 490, .external_lex_state = 48}, + [3694] = {.lex_state = 323, .external_lex_state = 69}, + [3695] = {.lex_state = 323, .external_lex_state = 69}, + [3696] = {.lex_state = 569, .external_lex_state = 67}, + [3697] = {.lex_state = 569, .external_lex_state = 67}, + [3698] = {.lex_state = 569, .external_lex_state = 67}, + [3699] = {.lex_state = 569, .external_lex_state = 67}, + [3700] = {.lex_state = 274, .external_lex_state = 67}, + [3701] = {.lex_state = 323, .external_lex_state = 69}, + [3702] = {.lex_state = 569, .external_lex_state = 67}, + [3703] = {.lex_state = 569, .external_lex_state = 67}, + [3704] = {.lex_state = 496, .external_lex_state = 36}, + [3705] = {.lex_state = 323, .external_lex_state = 69}, + [3706] = {.lex_state = 490, .external_lex_state = 48}, + [3707] = {.lex_state = 294, .external_lex_state = 24}, + [3708] = {.lex_state = 489, .external_lex_state = 70}, + [3709] = {.lex_state = 511, .external_lex_state = 71}, + [3710] = {.lex_state = 490, .external_lex_state = 48}, + [3711] = {.lex_state = 489, .external_lex_state = 70}, + [3712] = {.lex_state = 324, .external_lex_state = 72}, + [3713] = {.lex_state = 489, .external_lex_state = 70}, + [3714] = {.lex_state = 489, .external_lex_state = 70}, + [3715] = {.lex_state = 324, .external_lex_state = 72}, + [3716] = {.lex_state = 503, .external_lex_state = 73}, + [3717] = {.lex_state = 489, .external_lex_state = 70}, + [3718] = {.lex_state = 489, .external_lex_state = 70}, + [3719] = {.lex_state = 489, .external_lex_state = 70}, + [3720] = {.lex_state = 324, .external_lex_state = 72}, + [3721] = {.lex_state = 489, .external_lex_state = 70}, + [3722] = {.lex_state = 489, .external_lex_state = 70}, + [3723] = {.lex_state = 503, .external_lex_state = 73}, + [3724] = {.lex_state = 294, .external_lex_state = 24}, + [3725] = {.lex_state = 489, .external_lex_state = 70}, + [3726] = {.lex_state = 489, .external_lex_state = 70}, + [3727] = {.lex_state = 489, .external_lex_state = 70}, + [3728] = {.lex_state = 503, .external_lex_state = 73}, + [3729] = {.lex_state = 324, .external_lex_state = 72}, + [3730] = {.lex_state = 489, .external_lex_state = 70}, + [3731] = {.lex_state = 489, .external_lex_state = 70}, + [3732] = {.lex_state = 324, .external_lex_state = 72}, + [3733] = {.lex_state = 508, .external_lex_state = 74}, + [3734] = {.lex_state = 511, .external_lex_state = 71}, + [3735] = {.lex_state = 511, .external_lex_state = 71}, + [3736] = {.lex_state = 489, .external_lex_state = 70}, + [3737] = {.lex_state = 311, .external_lex_state = 75}, + [3738] = {.lex_state = 489, .external_lex_state = 70}, + [3739] = {.lex_state = 508, .external_lex_state = 74}, + [3740] = {.lex_state = 508, .external_lex_state = 74}, + [3741] = {.lex_state = 508, .external_lex_state = 74}, + [3742] = {.lex_state = 489, .external_lex_state = 70}, + [3743] = {.lex_state = 508, .external_lex_state = 74}, + [3744] = {.lex_state = 508, .external_lex_state = 74}, + [3745] = {.lex_state = 489, .external_lex_state = 70}, + [3746] = {.lex_state = 489, .external_lex_state = 70}, + [3747] = {.lex_state = 508, .external_lex_state = 74}, + [3748] = {.lex_state = 508, .external_lex_state = 74}, + [3749] = {.lex_state = 294, .external_lex_state = 24}, + [3750] = {.lex_state = 489, .external_lex_state = 70}, + [3751] = {.lex_state = 489, .external_lex_state = 70}, + [3752] = {.lex_state = 508, .external_lex_state = 74}, + [3753] = {.lex_state = 489, .external_lex_state = 70}, + [3754] = {.lex_state = 508, .external_lex_state = 74}, + [3755] = {.lex_state = 508, .external_lex_state = 74}, + [3756] = {.lex_state = 489, .external_lex_state = 70}, + [3757] = {.lex_state = 489, .external_lex_state = 70}, + [3758] = {.lex_state = 311, .external_lex_state = 75}, + [3759] = {.lex_state = 508, .external_lex_state = 74}, + [3760] = {.lex_state = 511, .external_lex_state = 71}, + [3761] = {.lex_state = 508, .external_lex_state = 74}, + [3762] = {.lex_state = 489, .external_lex_state = 70}, + [3763] = {.lex_state = 489, .external_lex_state = 70}, + [3764] = {.lex_state = 508, .external_lex_state = 74}, + [3765] = {.lex_state = 489, .external_lex_state = 70}, + [3766] = {.lex_state = 508, .external_lex_state = 74}, + [3767] = {.lex_state = 489, .external_lex_state = 70}, + [3768] = {.lex_state = 508, .external_lex_state = 74}, + [3769] = {.lex_state = 508, .external_lex_state = 74}, + [3770] = {.lex_state = 489, .external_lex_state = 70}, + [3771] = {.lex_state = 508, .external_lex_state = 74}, + [3772] = {.lex_state = 489, .external_lex_state = 70}, + [3773] = {.lex_state = 508, .external_lex_state = 74}, + [3774] = {.lex_state = 508, .external_lex_state = 74}, + [3775] = {.lex_state = 489, .external_lex_state = 70}, + [3776] = {.lex_state = 508, .external_lex_state = 74}, + [3777] = {.lex_state = 511, .external_lex_state = 71}, + [3778] = {.lex_state = 489, .external_lex_state = 70}, + [3779] = {.lex_state = 508, .external_lex_state = 74}, + [3780] = {.lex_state = 508, .external_lex_state = 74}, + [3781] = {.lex_state = 508, .external_lex_state = 74}, + [3782] = {.lex_state = 489, .external_lex_state = 70}, + [3783] = {.lex_state = 508, .external_lex_state = 74}, + [3784] = {.lex_state = 508, .external_lex_state = 74}, + [3785] = {.lex_state = 481, .external_lex_state = 76}, + [3786] = {.lex_state = 488, .external_lex_state = 33}, + [3787] = {.lex_state = 488, .external_lex_state = 33}, + [3788] = {.lex_state = 481, .external_lex_state = 76}, + [3789] = {.lex_state = 481, .external_lex_state = 76}, + [3790] = {.lex_state = 277, .external_lex_state = 67}, + [3791] = {.lex_state = 481, .external_lex_state = 76}, + [3792] = {.lex_state = 481, .external_lex_state = 76}, + [3793] = {.lex_state = 474, .external_lex_state = 77}, + [3794] = {.lex_state = 481, .external_lex_state = 76}, + [3795] = {.lex_state = 488, .external_lex_state = 33}, + [3796] = {.lex_state = 488, .external_lex_state = 33}, + [3797] = {.lex_state = 481, .external_lex_state = 76}, + [3798] = {.lex_state = 488, .external_lex_state = 33}, + [3799] = {.lex_state = 481, .external_lex_state = 76}, + [3800] = {.lex_state = 474, .external_lex_state = 77}, + [3801] = {.lex_state = 481, .external_lex_state = 76}, + [3802] = {.lex_state = 481, .external_lex_state = 76}, + [3803] = {.lex_state = 481, .external_lex_state = 76}, + [3804] = {.lex_state = 481, .external_lex_state = 76}, + [3805] = {.lex_state = 481, .external_lex_state = 76}, + [3806] = {.lex_state = 481, .external_lex_state = 76}, + [3807] = {.lex_state = 488, .external_lex_state = 33}, + [3808] = {.lex_state = 481, .external_lex_state = 76}, + [3809] = {.lex_state = 481, .external_lex_state = 76}, + [3810] = {.lex_state = 481, .external_lex_state = 76}, + [3811] = {.lex_state = 481, .external_lex_state = 76}, + [3812] = {.lex_state = 481, .external_lex_state = 76}, + [3813] = {.lex_state = 277, .external_lex_state = 67}, + [3814] = {.lex_state = 488, .external_lex_state = 33}, + [3815] = {.lex_state = 481, .external_lex_state = 76}, + [3816] = {.lex_state = 481, .external_lex_state = 76}, + [3817] = {.lex_state = 481, .external_lex_state = 76}, + [3818] = {.lex_state = 481, .external_lex_state = 76}, + [3819] = {.lex_state = 481, .external_lex_state = 76}, + [3820] = {.lex_state = 481, .external_lex_state = 76}, + [3821] = {.lex_state = 481, .external_lex_state = 76}, + [3822] = {.lex_state = 481, .external_lex_state = 76}, + [3823] = {.lex_state = 481, .external_lex_state = 76}, + [3824] = {.lex_state = 481, .external_lex_state = 76}, + [3825] = {.lex_state = 481, .external_lex_state = 76}, + [3826] = {.lex_state = 481, .external_lex_state = 76}, + [3827] = {.lex_state = 490, .external_lex_state = 78}, + [3828] = {.lex_state = 481, .external_lex_state = 76}, + [3829] = {.lex_state = 481, .external_lex_state = 76}, + [3830] = {.lex_state = 481, .external_lex_state = 76}, + [3831] = {.lex_state = 481, .external_lex_state = 76}, + [3832] = {.lex_state = 481, .external_lex_state = 76}, + [3833] = {.lex_state = 490, .external_lex_state = 78}, + [3834] = {.lex_state = 481, .external_lex_state = 76}, + [3835] = {.lex_state = 481, .external_lex_state = 76}, + [3836] = {.lex_state = 481, .external_lex_state = 76}, + [3837] = {.lex_state = 481, .external_lex_state = 76}, + [3838] = {.lex_state = 511, .external_lex_state = 79}, + [3839] = {.lex_state = 481, .external_lex_state = 76}, + [3840] = {.lex_state = 481, .external_lex_state = 76}, + [3841] = {.lex_state = 481, .external_lex_state = 76}, + [3842] = {.lex_state = 481, .external_lex_state = 76}, + [3843] = {.lex_state = 481, .external_lex_state = 76}, + [3844] = {.lex_state = 481, .external_lex_state = 76}, + [3845] = {.lex_state = 481, .external_lex_state = 76}, + [3846] = {.lex_state = 481, .external_lex_state = 76}, + [3847] = {.lex_state = 481, .external_lex_state = 76}, + [3848] = {.lex_state = 481, .external_lex_state = 76}, + [3849] = {.lex_state = 481, .external_lex_state = 76}, + [3850] = {.lex_state = 481, .external_lex_state = 76}, + [3851] = {.lex_state = 490, .external_lex_state = 80}, + [3852] = {.lex_state = 481, .external_lex_state = 76}, + [3853] = {.lex_state = 481, .external_lex_state = 76}, + [3854] = {.lex_state = 481, .external_lex_state = 76}, + [3855] = {.lex_state = 481, .external_lex_state = 76}, + [3856] = {.lex_state = 481, .external_lex_state = 76}, + [3857] = {.lex_state = 488, .external_lex_state = 33}, + [3858] = {.lex_state = 481, .external_lex_state = 76}, + [3859] = {.lex_state = 481, .external_lex_state = 76}, + [3860] = {.lex_state = 481, .external_lex_state = 76}, + [3861] = {.lex_state = 481, .external_lex_state = 76}, + [3862] = {.lex_state = 481, .external_lex_state = 76}, + [3863] = {.lex_state = 481, .external_lex_state = 76}, + [3864] = {.lex_state = 481, .external_lex_state = 76}, + [3865] = {.lex_state = 481, .external_lex_state = 76}, + [3866] = {.lex_state = 481, .external_lex_state = 76}, + [3867] = {.lex_state = 481, .external_lex_state = 76}, + [3868] = {.lex_state = 481, .external_lex_state = 76}, + [3869] = {.lex_state = 481, .external_lex_state = 76}, + [3870] = {.lex_state = 488, .external_lex_state = 33}, + [3871] = {.lex_state = 481, .external_lex_state = 76}, + [3872] = {.lex_state = 481, .external_lex_state = 76}, + [3873] = {.lex_state = 481, .external_lex_state = 76}, + [3874] = {.lex_state = 481, .external_lex_state = 76}, + [3875] = {.lex_state = 490, .external_lex_state = 78}, + [3876] = {.lex_state = 481, .external_lex_state = 76}, + [3877] = {.lex_state = 481, .external_lex_state = 76}, + [3878] = {.lex_state = 490, .external_lex_state = 78}, + [3879] = {.lex_state = 481, .external_lex_state = 76}, + [3880] = {.lex_state = 481, .external_lex_state = 76}, + [3881] = {.lex_state = 481, .external_lex_state = 76}, + [3882] = {.lex_state = 481, .external_lex_state = 76}, + [3883] = {.lex_state = 481, .external_lex_state = 76}, + [3884] = {.lex_state = 481, .external_lex_state = 76}, + [3885] = {.lex_state = 481, .external_lex_state = 76}, + [3886] = {.lex_state = 481, .external_lex_state = 76}, + [3887] = {.lex_state = 481, .external_lex_state = 76}, + [3888] = {.lex_state = 481, .external_lex_state = 76}, + [3889] = {.lex_state = 490, .external_lex_state = 78}, + [3890] = {.lex_state = 481, .external_lex_state = 76}, + [3891] = {.lex_state = 490, .external_lex_state = 78}, + [3892] = {.lex_state = 490, .external_lex_state = 78}, + [3893] = {.lex_state = 481, .external_lex_state = 76}, + [3894] = {.lex_state = 481, .external_lex_state = 76}, + [3895] = {.lex_state = 481, .external_lex_state = 76}, + [3896] = {.lex_state = 481, .external_lex_state = 76}, + [3897] = {.lex_state = 481, .external_lex_state = 76}, + [3898] = {.lex_state = 481, .external_lex_state = 76}, + [3899] = {.lex_state = 490, .external_lex_state = 78}, + [3900] = {.lex_state = 488, .external_lex_state = 33}, + [3901] = {.lex_state = 279, .external_lex_state = 72}, + [3902] = {.lex_state = 481, .external_lex_state = 76}, + [3903] = {.lex_state = 481, .external_lex_state = 76}, + [3904] = {.lex_state = 490, .external_lex_state = 78}, + [3905] = {.lex_state = 481, .external_lex_state = 76}, + [3906] = {.lex_state = 481, .external_lex_state = 76}, + [3907] = {.lex_state = 481, .external_lex_state = 76}, + [3908] = {.lex_state = 481, .external_lex_state = 76}, + [3909] = {.lex_state = 481, .external_lex_state = 76}, + [3910] = {.lex_state = 481, .external_lex_state = 76}, + [3911] = {.lex_state = 481, .external_lex_state = 76}, + [3912] = {.lex_state = 481, .external_lex_state = 76}, + [3913] = {.lex_state = 279, .external_lex_state = 72}, + [3914] = {.lex_state = 490, .external_lex_state = 78}, + [3915] = {.lex_state = 490, .external_lex_state = 78}, + [3916] = {.lex_state = 279, .external_lex_state = 72}, + [3917] = {.lex_state = 481, .external_lex_state = 76}, + [3918] = {.lex_state = 481, .external_lex_state = 76}, + [3919] = {.lex_state = 481, .external_lex_state = 76}, + [3920] = {.lex_state = 481, .external_lex_state = 76}, + [3921] = {.lex_state = 488, .external_lex_state = 33}, + [3922] = {.lex_state = 279, .external_lex_state = 72}, + [3923] = {.lex_state = 279, .external_lex_state = 72}, + [3924] = {.lex_state = 481, .external_lex_state = 76}, + [3925] = {.lex_state = 481, .external_lex_state = 76}, + [3926] = {.lex_state = 280, .external_lex_state = 67}, + [3927] = {.lex_state = 490, .external_lex_state = 78}, + [3928] = {.lex_state = 481, .external_lex_state = 76}, + [3929] = {.lex_state = 481, .external_lex_state = 76}, + [3930] = {.lex_state = 280, .external_lex_state = 67}, + [3931] = {.lex_state = 481, .external_lex_state = 76}, + [3932] = {.lex_state = 481, .external_lex_state = 76}, + [3933] = {.lex_state = 481, .external_lex_state = 76}, + [3934] = {.lex_state = 481, .external_lex_state = 76}, + [3935] = {.lex_state = 490, .external_lex_state = 78}, + [3936] = {.lex_state = 488, .external_lex_state = 33}, + [3937] = {.lex_state = 488, .external_lex_state = 33}, + [3938] = {.lex_state = 490, .external_lex_state = 78}, + [3939] = {.lex_state = 490, .external_lex_state = 80}, + [3940] = {.lex_state = 481, .external_lex_state = 76}, + [3941] = {.lex_state = 481, .external_lex_state = 76}, + [3942] = {.lex_state = 490, .external_lex_state = 78}, + [3943] = {.lex_state = 481, .external_lex_state = 76}, + [3944] = {.lex_state = 481, .external_lex_state = 76}, + [3945] = {.lex_state = 481, .external_lex_state = 76}, + [3946] = {.lex_state = 481, .external_lex_state = 76}, + [3947] = {.lex_state = 481, .external_lex_state = 76}, + [3948] = {.lex_state = 481, .external_lex_state = 76}, + [3949] = {.lex_state = 481, .external_lex_state = 76}, + [3950] = {.lex_state = 481, .external_lex_state = 76}, + [3951] = {.lex_state = 481, .external_lex_state = 76}, + [3952] = {.lex_state = 490, .external_lex_state = 80}, + [3953] = {.lex_state = 481, .external_lex_state = 76}, + [3954] = {.lex_state = 481, .external_lex_state = 76}, + [3955] = {.lex_state = 481, .external_lex_state = 76}, + [3956] = {.lex_state = 490, .external_lex_state = 78}, + [3957] = {.lex_state = 490, .external_lex_state = 78}, + [3958] = {.lex_state = 490, .external_lex_state = 78}, + [3959] = {.lex_state = 481, .external_lex_state = 76}, + [3960] = {.lex_state = 481, .external_lex_state = 76}, + [3961] = {.lex_state = 481, .external_lex_state = 76}, + [3962] = {.lex_state = 490, .external_lex_state = 78}, + [3963] = {.lex_state = 490, .external_lex_state = 78}, + [3964] = {.lex_state = 481, .external_lex_state = 76}, + [3965] = {.lex_state = 476, .external_lex_state = 77}, + [3966] = {.lex_state = 490, .external_lex_state = 78}, + [3967] = {.lex_state = 279, .external_lex_state = 72}, + [3968] = {.lex_state = 481, .external_lex_state = 76}, + [3969] = {.lex_state = 490, .external_lex_state = 78}, + [3970] = {.lex_state = 481, .external_lex_state = 76}, + [3971] = {.lex_state = 280, .external_lex_state = 67}, + [3972] = {.lex_state = 280, .external_lex_state = 67}, + [3973] = {.lex_state = 481, .external_lex_state = 76}, + [3974] = {.lex_state = 481, .external_lex_state = 76}, + [3975] = {.lex_state = 481, .external_lex_state = 76}, + [3976] = {.lex_state = 481, .external_lex_state = 76}, + [3977] = {.lex_state = 490, .external_lex_state = 78}, + [3978] = {.lex_state = 481, .external_lex_state = 76}, + [3979] = {.lex_state = 481, .external_lex_state = 76}, + [3980] = {.lex_state = 481, .external_lex_state = 76}, + [3981] = {.lex_state = 481, .external_lex_state = 76}, + [3982] = {.lex_state = 481, .external_lex_state = 76}, + [3983] = {.lex_state = 481, .external_lex_state = 76}, + [3984] = {.lex_state = 481, .external_lex_state = 76}, + [3985] = {.lex_state = 488, .external_lex_state = 33}, + [3986] = {.lex_state = 481, .external_lex_state = 76}, + [3987] = {.lex_state = 481, .external_lex_state = 76}, + [3988] = {.lex_state = 279, .external_lex_state = 72}, + [3989] = {.lex_state = 490, .external_lex_state = 78}, + [3990] = {.lex_state = 481, .external_lex_state = 76}, + [3991] = {.lex_state = 481, .external_lex_state = 76}, + [3992] = {.lex_state = 481, .external_lex_state = 76}, + [3993] = {.lex_state = 490, .external_lex_state = 78}, + [3994] = {.lex_state = 279, .external_lex_state = 72}, + [3995] = {.lex_state = 279, .external_lex_state = 72}, + [3996] = {.lex_state = 481, .external_lex_state = 76}, + [3997] = {.lex_state = 481, .external_lex_state = 76}, + [3998] = {.lex_state = 481, .external_lex_state = 76}, + [3999] = {.lex_state = 490, .external_lex_state = 78}, + [4000] = {.lex_state = 481, .external_lex_state = 76}, + [4001] = {.lex_state = 481, .external_lex_state = 76}, + [4002] = {.lex_state = 481, .external_lex_state = 76}, + [4003] = {.lex_state = 481, .external_lex_state = 76}, + [4004] = {.lex_state = 481, .external_lex_state = 76}, + [4005] = {.lex_state = 481, .external_lex_state = 76}, + [4006] = {.lex_state = 481, .external_lex_state = 76}, + [4007] = {.lex_state = 481, .external_lex_state = 76}, + [4008] = {.lex_state = 481, .external_lex_state = 76}, + [4009] = {.lex_state = 481, .external_lex_state = 76}, + [4010] = {.lex_state = 481, .external_lex_state = 76}, + [4011] = {.lex_state = 481, .external_lex_state = 76}, + [4012] = {.lex_state = 481, .external_lex_state = 76}, + [4013] = {.lex_state = 475, .external_lex_state = 81}, + [4014] = {.lex_state = 481, .external_lex_state = 76}, + [4015] = {.lex_state = 490, .external_lex_state = 78}, + [4016] = {.lex_state = 481, .external_lex_state = 76}, + [4017] = {.lex_state = 481, .external_lex_state = 76}, + [4018] = {.lex_state = 481, .external_lex_state = 76}, + [4019] = {.lex_state = 481, .external_lex_state = 76}, + [4020] = {.lex_state = 490, .external_lex_state = 78}, + [4021] = {.lex_state = 481, .external_lex_state = 76}, + [4022] = {.lex_state = 481, .external_lex_state = 76}, + [4023] = {.lex_state = 481, .external_lex_state = 76}, + [4024] = {.lex_state = 481, .external_lex_state = 76}, + [4025] = {.lex_state = 481, .external_lex_state = 76}, + [4026] = {.lex_state = 481, .external_lex_state = 76}, + [4027] = {.lex_state = 481, .external_lex_state = 76}, + [4028] = {.lex_state = 481, .external_lex_state = 76}, + [4029] = {.lex_state = 481, .external_lex_state = 76}, + [4030] = {.lex_state = 481, .external_lex_state = 76}, + [4031] = {.lex_state = 481, .external_lex_state = 76}, + [4032] = {.lex_state = 481, .external_lex_state = 76}, + [4033] = {.lex_state = 490, .external_lex_state = 78}, + [4034] = {.lex_state = 481, .external_lex_state = 76}, + [4035] = {.lex_state = 481, .external_lex_state = 76}, + [4036] = {.lex_state = 481, .external_lex_state = 76}, + [4037] = {.lex_state = 481, .external_lex_state = 76}, + [4038] = {.lex_state = 490, .external_lex_state = 78}, + [4039] = {.lex_state = 481, .external_lex_state = 76}, + [4040] = {.lex_state = 481, .external_lex_state = 76}, + [4041] = {.lex_state = 475, .external_lex_state = 81}, + [4042] = {.lex_state = 481, .external_lex_state = 76}, + [4043] = {.lex_state = 490, .external_lex_state = 78}, + [4044] = {.lex_state = 481, .external_lex_state = 76}, + [4045] = {.lex_state = 481, .external_lex_state = 76}, + [4046] = {.lex_state = 481, .external_lex_state = 76}, + [4047] = {.lex_state = 490, .external_lex_state = 78}, + [4048] = {.lex_state = 481, .external_lex_state = 76}, + [4049] = {.lex_state = 481, .external_lex_state = 76}, + [4050] = {.lex_state = 481, .external_lex_state = 76}, + [4051] = {.lex_state = 279, .external_lex_state = 72}, + [4052] = {.lex_state = 481, .external_lex_state = 76}, + [4053] = {.lex_state = 481, .external_lex_state = 76}, + [4054] = {.lex_state = 488, .external_lex_state = 33}, + [4055] = {.lex_state = 481, .external_lex_state = 76}, + [4056] = {.lex_state = 481, .external_lex_state = 76}, + [4057] = {.lex_state = 481, .external_lex_state = 76}, + [4058] = {.lex_state = 481, .external_lex_state = 76}, + [4059] = {.lex_state = 481, .external_lex_state = 76}, + [4060] = {.lex_state = 481, .external_lex_state = 76}, + [4061] = {.lex_state = 481, .external_lex_state = 76}, + [4062] = {.lex_state = 490, .external_lex_state = 78}, + [4063] = {.lex_state = 279, .external_lex_state = 72}, + [4064] = {.lex_state = 481, .external_lex_state = 76}, + [4065] = {.lex_state = 490, .external_lex_state = 78}, + [4066] = {.lex_state = 481, .external_lex_state = 76}, + [4067] = {.lex_state = 481, .external_lex_state = 76}, + [4068] = {.lex_state = 481, .external_lex_state = 76}, + [4069] = {.lex_state = 481, .external_lex_state = 76}, + [4070] = {.lex_state = 481, .external_lex_state = 76}, + [4071] = {.lex_state = 490, .external_lex_state = 78}, + [4072] = {.lex_state = 481, .external_lex_state = 76}, + [4073] = {.lex_state = 481, .external_lex_state = 76}, + [4074] = {.lex_state = 481, .external_lex_state = 76}, + [4075] = {.lex_state = 476, .external_lex_state = 77}, + [4076] = {.lex_state = 490, .external_lex_state = 78}, + [4077] = {.lex_state = 481, .external_lex_state = 76}, + [4078] = {.lex_state = 488, .external_lex_state = 33}, + [4079] = {.lex_state = 481, .external_lex_state = 76}, + [4080] = {.lex_state = 481, .external_lex_state = 76}, + [4081] = {.lex_state = 481, .external_lex_state = 76}, + [4082] = {.lex_state = 481, .external_lex_state = 76}, + [4083] = {.lex_state = 481, .external_lex_state = 76}, + [4084] = {.lex_state = 490, .external_lex_state = 78}, + [4085] = {.lex_state = 481, .external_lex_state = 76}, + [4086] = {.lex_state = 490, .external_lex_state = 82}, + [4087] = {.lex_state = 490, .external_lex_state = 78}, + [4088] = {.lex_state = 490, .external_lex_state = 78}, + [4089] = {.lex_state = 490, .external_lex_state = 78}, + [4090] = {.lex_state = 509, .external_lex_state = 83}, + [4091] = {.lex_state = 509, .external_lex_state = 83}, + [4092] = {.lex_state = 477, .external_lex_state = 81}, + [4093] = {.lex_state = 477, .external_lex_state = 81}, + [4094] = {.lex_state = 490, .external_lex_state = 78}, + [4095] = {.lex_state = 490, .external_lex_state = 78}, + [4096] = {.lex_state = 490, .external_lex_state = 82}, + [4097] = {.lex_state = 509, .external_lex_state = 83}, + [4098] = {.lex_state = 509, .external_lex_state = 83}, + [4099] = {.lex_state = 490, .external_lex_state = 78}, + [4100] = {.lex_state = 490, .external_lex_state = 78}, + [4101] = {.lex_state = 490, .external_lex_state = 82}, + [4102] = {.lex_state = 509, .external_lex_state = 83}, + [4103] = {.lex_state = 509, .external_lex_state = 83}, + [4104] = {.lex_state = 490, .external_lex_state = 78}, + [4105] = {.lex_state = 490, .external_lex_state = 78}, + [4106] = {.lex_state = 490, .external_lex_state = 82}, + [4107] = {.lex_state = 509, .external_lex_state = 83}, + [4108] = {.lex_state = 509, .external_lex_state = 83}, + [4109] = {.lex_state = 490, .external_lex_state = 78}, + [4110] = {.lex_state = 490, .external_lex_state = 78}, + [4111] = {.lex_state = 490, .external_lex_state = 82}, + [4112] = {.lex_state = 509, .external_lex_state = 83}, + [4113] = {.lex_state = 509, .external_lex_state = 83}, + [4114] = {.lex_state = 490, .external_lex_state = 78}, + [4115] = {.lex_state = 490, .external_lex_state = 78}, + [4116] = {.lex_state = 490, .external_lex_state = 78}, + [4117] = {.lex_state = 490, .external_lex_state = 78}, + [4118] = {.lex_state = 490, .external_lex_state = 78}, + [4119] = {.lex_state = 490, .external_lex_state = 78}, + [4120] = {.lex_state = 490, .external_lex_state = 78}, + [4121] = {.lex_state = 490, .external_lex_state = 78}, + [4122] = {.lex_state = 490, .external_lex_state = 78}, + [4123] = {.lex_state = 490, .external_lex_state = 78}, + [4124] = {.lex_state = 490, .external_lex_state = 78}, + [4125] = {.lex_state = 490, .external_lex_state = 78}, + [4126] = {.lex_state = 490, .external_lex_state = 78}, + [4127] = {.lex_state = 490, .external_lex_state = 78}, + [4128] = {.lex_state = 490, .external_lex_state = 78}, + [4129] = {.lex_state = 490, .external_lex_state = 78}, + [4130] = {.lex_state = 490, .external_lex_state = 78}, + [4131] = {.lex_state = 490, .external_lex_state = 78}, + [4132] = {.lex_state = 490, .external_lex_state = 78}, + [4133] = {.lex_state = 490, .external_lex_state = 78}, + [4134] = {.lex_state = 490, .external_lex_state = 78}, + [4135] = {.lex_state = 490, .external_lex_state = 78}, + [4136] = {.lex_state = 490, .external_lex_state = 78}, + [4137] = {.lex_state = 490, .external_lex_state = 78}, + [4138] = {.lex_state = 490, .external_lex_state = 78}, + [4139] = {.lex_state = 490, .external_lex_state = 78}, + [4140] = {.lex_state = 490, .external_lex_state = 78}, + [4141] = {.lex_state = 490, .external_lex_state = 78}, + [4142] = {.lex_state = 490, .external_lex_state = 78}, + [4143] = {.lex_state = 490, .external_lex_state = 78}, + [4144] = {.lex_state = 490, .external_lex_state = 78}, + [4145] = {.lex_state = 490, .external_lex_state = 78}, + [4146] = {.lex_state = 490, .external_lex_state = 78}, + [4147] = {.lex_state = 490, .external_lex_state = 78}, + [4148] = {.lex_state = 490, .external_lex_state = 78}, + [4149] = {.lex_state = 490, .external_lex_state = 78}, + [4150] = {.lex_state = 490, .external_lex_state = 78}, + [4151] = {.lex_state = 490, .external_lex_state = 78}, + [4152] = {.lex_state = 490, .external_lex_state = 78}, + [4153] = {.lex_state = 490, .external_lex_state = 78}, + [4154] = {.lex_state = 490, .external_lex_state = 78}, + [4155] = {.lex_state = 490, .external_lex_state = 78}, + [4156] = {.lex_state = 490, .external_lex_state = 78}, + [4157] = {.lex_state = 509, .external_lex_state = 83}, + [4158] = {.lex_state = 490, .external_lex_state = 78}, + [4159] = {.lex_state = 490, .external_lex_state = 78}, + [4160] = {.lex_state = 509, .external_lex_state = 83}, + [4161] = {.lex_state = 490, .external_lex_state = 78}, + [4162] = {.lex_state = 490, .external_lex_state = 78}, + [4163] = {.lex_state = 490, .external_lex_state = 78}, + [4164] = {.lex_state = 447, .external_lex_state = 84}, + [4165] = {.lex_state = 447, .external_lex_state = 84}, + [4166] = {.lex_state = 490, .external_lex_state = 82}, + [4167] = {.lex_state = 313, .external_lex_state = 75}, + [4168] = {.lex_state = 313, .external_lex_state = 75}, + [4169] = {.lex_state = 477, .external_lex_state = 81}, + [4170] = {.lex_state = 477, .external_lex_state = 81}, + [4171] = {.lex_state = 490, .external_lex_state = 78}, + [4172] = {.lex_state = 490, .external_lex_state = 78}, + [4173] = {.lex_state = 490, .external_lex_state = 78}, + [4174] = {.lex_state = 490, .external_lex_state = 82}, + [4175] = {.lex_state = 490, .external_lex_state = 78}, + [4176] = {.lex_state = 490, .external_lex_state = 78}, + [4177] = {.lex_state = 490, .external_lex_state = 78}, + [4178] = {.lex_state = 490, .external_lex_state = 82}, + [4179] = {.lex_state = 490, .external_lex_state = 78}, + [4180] = {.lex_state = 508, .external_lex_state = 85}, + [4181] = {.lex_state = 508, .external_lex_state = 85}, + [4182] = {.lex_state = 508, .external_lex_state = 85}, + [4183] = {.lex_state = 508, .external_lex_state = 85}, + [4184] = {.lex_state = 508, .external_lex_state = 85}, + [4185] = {.lex_state = 508, .external_lex_state = 85}, + [4186] = {.lex_state = 508, .external_lex_state = 85}, + [4187] = {.lex_state = 508, .external_lex_state = 85}, + [4188] = {.lex_state = 508, .external_lex_state = 85}, + [4189] = {.lex_state = 508, .external_lex_state = 85}, + [4190] = {.lex_state = 508, .external_lex_state = 85}, + [4191] = {.lex_state = 98, .external_lex_state = 86}, + [4192] = {.lex_state = 508, .external_lex_state = 85}, + [4193] = {.lex_state = 508, .external_lex_state = 85}, + [4194] = {.lex_state = 508, .external_lex_state = 85}, + [4195] = {.lex_state = 508, .external_lex_state = 85}, + [4196] = {.lex_state = 490, .external_lex_state = 78}, + [4197] = {.lex_state = 508, .external_lex_state = 85}, + [4198] = {.lex_state = 490, .external_lex_state = 78}, + [4199] = {.lex_state = 508, .external_lex_state = 85}, + [4200] = {.lex_state = 508, .external_lex_state = 85}, + [4201] = {.lex_state = 508, .external_lex_state = 85}, + [4202] = {.lex_state = 508, .external_lex_state = 85}, + [4203] = {.lex_state = 508, .external_lex_state = 85}, + [4204] = {.lex_state = 508, .external_lex_state = 85}, + [4205] = {.lex_state = 508, .external_lex_state = 85}, + [4206] = {.lex_state = 508, .external_lex_state = 85}, + [4207] = {.lex_state = 508, .external_lex_state = 85}, + [4208] = {.lex_state = 508, .external_lex_state = 85}, + [4209] = {.lex_state = 508, .external_lex_state = 85}, + [4210] = {.lex_state = 508, .external_lex_state = 85}, + [4211] = {.lex_state = 508, .external_lex_state = 85}, + [4212] = {.lex_state = 508, .external_lex_state = 85}, + [4213] = {.lex_state = 508, .external_lex_state = 85}, + [4214] = {.lex_state = 508, .external_lex_state = 85}, + [4215] = {.lex_state = 508, .external_lex_state = 85}, + [4216] = {.lex_state = 508, .external_lex_state = 85}, + [4217] = {.lex_state = 508, .external_lex_state = 85}, + [4218] = {.lex_state = 508, .external_lex_state = 85}, + [4219] = {.lex_state = 508, .external_lex_state = 85}, + [4220] = {.lex_state = 508, .external_lex_state = 85}, + [4221] = {.lex_state = 508, .external_lex_state = 85}, + [4222] = {.lex_state = 508, .external_lex_state = 85}, + [4223] = {.lex_state = 508, .external_lex_state = 85}, + [4224] = {.lex_state = 490, .external_lex_state = 78}, + [4225] = {.lex_state = 508, .external_lex_state = 85}, + [4226] = {.lex_state = 490, .external_lex_state = 78}, + [4227] = {.lex_state = 508, .external_lex_state = 85}, + [4228] = {.lex_state = 508, .external_lex_state = 85}, + [4229] = {.lex_state = 508, .external_lex_state = 85}, + [4230] = {.lex_state = 508, .external_lex_state = 85}, + [4231] = {.lex_state = 508, .external_lex_state = 85}, + [4232] = {.lex_state = 508, .external_lex_state = 85}, + [4233] = {.lex_state = 508, .external_lex_state = 85}, + [4234] = {.lex_state = 508, .external_lex_state = 85}, + [4235] = {.lex_state = 508, .external_lex_state = 85}, + [4236] = {.lex_state = 508, .external_lex_state = 85}, + [4237] = {.lex_state = 508, .external_lex_state = 85}, + [4238] = {.lex_state = 508, .external_lex_state = 85}, + [4239] = {.lex_state = 508, .external_lex_state = 85}, + [4240] = {.lex_state = 490, .external_lex_state = 78}, + [4241] = {.lex_state = 508, .external_lex_state = 85}, + [4242] = {.lex_state = 490, .external_lex_state = 78}, + [4243] = {.lex_state = 508, .external_lex_state = 85}, + [4244] = {.lex_state = 508, .external_lex_state = 85}, + [4245] = {.lex_state = 508, .external_lex_state = 85}, + [4246] = {.lex_state = 508, .external_lex_state = 85}, + [4247] = {.lex_state = 508, .external_lex_state = 85}, + [4248] = {.lex_state = 508, .external_lex_state = 85}, + [4249] = {.lex_state = 508, .external_lex_state = 85}, + [4250] = {.lex_state = 508, .external_lex_state = 85}, + [4251] = {.lex_state = 508, .external_lex_state = 85}, + [4252] = {.lex_state = 490, .external_lex_state = 78}, + [4253] = {.lex_state = 508, .external_lex_state = 85}, + [4254] = {.lex_state = 490, .external_lex_state = 78}, + [4255] = {.lex_state = 508, .external_lex_state = 85}, + [4256] = {.lex_state = 508, .external_lex_state = 85}, + [4257] = {.lex_state = 98, .external_lex_state = 87}, + [4258] = {.lex_state = 508, .external_lex_state = 85}, + [4259] = {.lex_state = 508, .external_lex_state = 85}, + [4260] = {.lex_state = 508, .external_lex_state = 85}, + [4261] = {.lex_state = 508, .external_lex_state = 85}, + [4262] = {.lex_state = 490, .external_lex_state = 78}, + [4263] = {.lex_state = 508, .external_lex_state = 85}, + [4264] = {.lex_state = 490, .external_lex_state = 78}, + [4265] = {.lex_state = 508, .external_lex_state = 85}, + [4266] = {.lex_state = 508, .external_lex_state = 85}, + [4267] = {.lex_state = 490, .external_lex_state = 78}, + [4268] = {.lex_state = 99, .external_lex_state = 88}, + [4269] = {.lex_state = 490, .external_lex_state = 78}, + [4270] = {.lex_state = 508, .external_lex_state = 85}, + [4271] = {.lex_state = 508, .external_lex_state = 85}, + [4272] = {.lex_state = 98, .external_lex_state = 86}, + [4273] = {.lex_state = 508, .external_lex_state = 85}, + [4274] = {.lex_state = 490, .external_lex_state = 78}, + [4275] = {.lex_state = 490, .external_lex_state = 78}, + [4276] = {.lex_state = 508, .external_lex_state = 85}, + [4277] = {.lex_state = 490, .external_lex_state = 78}, + [4278] = {.lex_state = 508, .external_lex_state = 85}, + [4279] = {.lex_state = 490, .external_lex_state = 78}, + [4280] = {.lex_state = 508, .external_lex_state = 85}, + [4281] = {.lex_state = 508, .external_lex_state = 85}, + [4282] = {.lex_state = 490, .external_lex_state = 78}, + [4283] = {.lex_state = 508, .external_lex_state = 85}, + [4284] = {.lex_state = 490, .external_lex_state = 78}, + [4285] = {.lex_state = 508, .external_lex_state = 85}, + [4286] = {.lex_state = 508, .external_lex_state = 85}, + [4287] = {.lex_state = 490, .external_lex_state = 78}, + [4288] = {.lex_state = 490, .external_lex_state = 78}, + [4289] = {.lex_state = 508, .external_lex_state = 85}, + [4290] = {.lex_state = 508, .external_lex_state = 85}, + [4291] = {.lex_state = 490, .external_lex_state = 78}, + [4292] = {.lex_state = 508, .external_lex_state = 85}, + [4293] = {.lex_state = 490, .external_lex_state = 78}, + [4294] = {.lex_state = 508, .external_lex_state = 85}, + [4295] = {.lex_state = 508, .external_lex_state = 85}, + [4296] = {.lex_state = 490, .external_lex_state = 78}, + [4297] = {.lex_state = 508, .external_lex_state = 85}, + [4298] = {.lex_state = 490, .external_lex_state = 78}, + [4299] = {.lex_state = 508, .external_lex_state = 85}, + [4300] = {.lex_state = 508, .external_lex_state = 85}, + [4301] = {.lex_state = 508, .external_lex_state = 85}, + [4302] = {.lex_state = 490, .external_lex_state = 78}, + [4303] = {.lex_state = 508, .external_lex_state = 85}, + [4304] = {.lex_state = 490, .external_lex_state = 78}, + [4305] = {.lex_state = 508, .external_lex_state = 85}, + [4306] = {.lex_state = 508, .external_lex_state = 85}, + [4307] = {.lex_state = 508, .external_lex_state = 85}, + [4308] = {.lex_state = 490, .external_lex_state = 78}, + [4309] = {.lex_state = 508, .external_lex_state = 85}, + [4310] = {.lex_state = 490, .external_lex_state = 78}, + [4311] = {.lex_state = 98, .external_lex_state = 86}, + [4312] = {.lex_state = 508, .external_lex_state = 85}, + [4313] = {.lex_state = 508, .external_lex_state = 85}, + [4314] = {.lex_state = 490, .external_lex_state = 78}, + [4315] = {.lex_state = 508, .external_lex_state = 85}, + [4316] = {.lex_state = 490, .external_lex_state = 78}, + [4317] = {.lex_state = 508, .external_lex_state = 85}, + [4318] = {.lex_state = 490, .external_lex_state = 78}, + [4319] = {.lex_state = 490, .external_lex_state = 78}, + [4320] = {.lex_state = 508, .external_lex_state = 85}, + [4321] = {.lex_state = 508, .external_lex_state = 85}, + [4322] = {.lex_state = 508, .external_lex_state = 85}, + [4323] = {.lex_state = 490, .external_lex_state = 78}, + [4324] = {.lex_state = 508, .external_lex_state = 85}, + [4325] = {.lex_state = 490, .external_lex_state = 78}, + [4326] = {.lex_state = 508, .external_lex_state = 85}, + [4327] = {.lex_state = 508, .external_lex_state = 85}, + [4328] = {.lex_state = 490, .external_lex_state = 78}, + [4329] = {.lex_state = 508, .external_lex_state = 85}, + [4330] = {.lex_state = 490, .external_lex_state = 78}, + [4331] = {.lex_state = 508, .external_lex_state = 85}, + [4332] = {.lex_state = 490, .external_lex_state = 78}, + [4333] = {.lex_state = 490, .external_lex_state = 78}, + [4334] = {.lex_state = 508, .external_lex_state = 85}, + [4335] = {.lex_state = 508, .external_lex_state = 85}, + [4336] = {.lex_state = 508, .external_lex_state = 85}, + [4337] = {.lex_state = 508, .external_lex_state = 85}, + [4338] = {.lex_state = 490, .external_lex_state = 78}, + [4339] = {.lex_state = 508, .external_lex_state = 85}, + [4340] = {.lex_state = 490, .external_lex_state = 78}, + [4341] = {.lex_state = 508, .external_lex_state = 85}, + [4342] = {.lex_state = 490, .external_lex_state = 78}, + [4343] = {.lex_state = 508, .external_lex_state = 85}, + [4344] = {.lex_state = 490, .external_lex_state = 78}, + [4345] = {.lex_state = 508, .external_lex_state = 85}, + [4346] = {.lex_state = 508, .external_lex_state = 85}, + [4347] = {.lex_state = 490, .external_lex_state = 78}, + [4348] = {.lex_state = 508, .external_lex_state = 85}, + [4349] = {.lex_state = 490, .external_lex_state = 78}, + [4350] = {.lex_state = 508, .external_lex_state = 85}, + [4351] = {.lex_state = 508, .external_lex_state = 85}, + [4352] = {.lex_state = 508, .external_lex_state = 85}, + [4353] = {.lex_state = 490, .external_lex_state = 78}, + [4354] = {.lex_state = 490, .external_lex_state = 78}, + [4355] = {.lex_state = 508, .external_lex_state = 85}, + [4356] = {.lex_state = 508, .external_lex_state = 85}, + [4357] = {.lex_state = 508, .external_lex_state = 85}, + [4358] = {.lex_state = 490, .external_lex_state = 78}, + [4359] = {.lex_state = 508, .external_lex_state = 85}, + [4360] = {.lex_state = 490, .external_lex_state = 78}, + [4361] = {.lex_state = 508, .external_lex_state = 85}, + [4362] = {.lex_state = 508, .external_lex_state = 85}, + [4363] = {.lex_state = 490, .external_lex_state = 78}, + [4364] = {.lex_state = 508, .external_lex_state = 85}, + [4365] = {.lex_state = 490, .external_lex_state = 78}, + [4366] = {.lex_state = 508, .external_lex_state = 85}, + [4367] = {.lex_state = 490, .external_lex_state = 78}, + [4368] = {.lex_state = 490, .external_lex_state = 78}, + [4369] = {.lex_state = 508, .external_lex_state = 85}, + [4370] = {.lex_state = 508, .external_lex_state = 85}, + [4371] = {.lex_state = 508, .external_lex_state = 85}, + [4372] = {.lex_state = 508, .external_lex_state = 85}, + [4373] = {.lex_state = 508, .external_lex_state = 85}, + [4374] = {.lex_state = 508, .external_lex_state = 85}, + [4375] = {.lex_state = 508, .external_lex_state = 85}, + [4376] = {.lex_state = 508, .external_lex_state = 85}, + [4377] = {.lex_state = 508, .external_lex_state = 85}, + [4378] = {.lex_state = 508, .external_lex_state = 85}, + [4379] = {.lex_state = 508, .external_lex_state = 85}, + [4380] = {.lex_state = 508, .external_lex_state = 85}, + [4381] = {.lex_state = 508, .external_lex_state = 85}, + [4382] = {.lex_state = 508, .external_lex_state = 85}, + [4383] = {.lex_state = 508, .external_lex_state = 85}, + [4384] = {.lex_state = 508, .external_lex_state = 85}, + [4385] = {.lex_state = 508, .external_lex_state = 85}, + [4386] = {.lex_state = 508, .external_lex_state = 85}, + [4387] = {.lex_state = 508, .external_lex_state = 85}, + [4388] = {.lex_state = 508, .external_lex_state = 85}, + [4389] = {.lex_state = 508, .external_lex_state = 85}, + [4390] = {.lex_state = 508, .external_lex_state = 85}, + [4391] = {.lex_state = 508, .external_lex_state = 85}, + [4392] = {.lex_state = 508, .external_lex_state = 85}, + [4393] = {.lex_state = 508, .external_lex_state = 85}, + [4394] = {.lex_state = 508, .external_lex_state = 85}, + [4395] = {.lex_state = 508, .external_lex_state = 85}, + [4396] = {.lex_state = 508, .external_lex_state = 85}, + [4397] = {.lex_state = 508, .external_lex_state = 85}, + [4398] = {.lex_state = 508, .external_lex_state = 85}, + [4399] = {.lex_state = 508, .external_lex_state = 85}, + [4400] = {.lex_state = 508, .external_lex_state = 85}, + [4401] = {.lex_state = 508, .external_lex_state = 85}, + [4402] = {.lex_state = 508, .external_lex_state = 85}, + [4403] = {.lex_state = 508, .external_lex_state = 85}, + [4404] = {.lex_state = 508, .external_lex_state = 85}, + [4405] = {.lex_state = 508, .external_lex_state = 85}, + [4406] = {.lex_state = 508, .external_lex_state = 85}, + [4407] = {.lex_state = 508, .external_lex_state = 85}, + [4408] = {.lex_state = 508, .external_lex_state = 85}, + [4409] = {.lex_state = 508, .external_lex_state = 85}, + [4410] = {.lex_state = 508, .external_lex_state = 85}, + [4411] = {.lex_state = 508, .external_lex_state = 85}, + [4412] = {.lex_state = 490, .external_lex_state = 78}, + [4413] = {.lex_state = 508, .external_lex_state = 85}, + [4414] = {.lex_state = 508, .external_lex_state = 85}, + [4415] = {.lex_state = 508, .external_lex_state = 85}, + [4416] = {.lex_state = 508, .external_lex_state = 85}, + [4417] = {.lex_state = 508, .external_lex_state = 85}, + [4418] = {.lex_state = 508, .external_lex_state = 85}, + [4419] = {.lex_state = 508, .external_lex_state = 85}, + [4420] = {.lex_state = 508, .external_lex_state = 85}, + [4421] = {.lex_state = 511, .external_lex_state = 89}, + [4422] = {.lex_state = 508, .external_lex_state = 85}, + [4423] = {.lex_state = 508, .external_lex_state = 85}, + [4424] = {.lex_state = 490, .external_lex_state = 78}, + [4425] = {.lex_state = 508, .external_lex_state = 85}, + [4426] = {.lex_state = 508, .external_lex_state = 85}, + [4427] = {.lex_state = 549, .external_lex_state = 90}, + [4428] = {.lex_state = 508, .external_lex_state = 85}, + [4429] = {.lex_state = 508, .external_lex_state = 85}, + [4430] = {.lex_state = 508, .external_lex_state = 85}, + [4431] = {.lex_state = 508, .external_lex_state = 85}, + [4432] = {.lex_state = 508, .external_lex_state = 85}, + [4433] = {.lex_state = 490, .external_lex_state = 78}, + [4434] = {.lex_state = 508, .external_lex_state = 85}, + [4435] = {.lex_state = 508, .external_lex_state = 85}, + [4436] = {.lex_state = 490, .external_lex_state = 78}, + [4437] = {.lex_state = 490, .external_lex_state = 78}, + [4438] = {.lex_state = 490, .external_lex_state = 78}, + [4439] = {.lex_state = 490, .external_lex_state = 78}, + [4440] = {.lex_state = 508, .external_lex_state = 85}, + [4441] = {.lex_state = 508, .external_lex_state = 85}, + [4442] = {.lex_state = 508, .external_lex_state = 85}, + [4443] = {.lex_state = 98, .external_lex_state = 86}, + [4444] = {.lex_state = 508, .external_lex_state = 85}, + [4445] = {.lex_state = 96, .external_lex_state = 91}, + [4446] = {.lex_state = 508, .external_lex_state = 85}, + [4447] = {.lex_state = 508, .external_lex_state = 85}, + [4448] = {.lex_state = 490, .external_lex_state = 78}, + [4449] = {.lex_state = 490, .external_lex_state = 78}, + [4450] = {.lex_state = 490, .external_lex_state = 78}, + [4451] = {.lex_state = 490, .external_lex_state = 78}, + [4452] = {.lex_state = 508, .external_lex_state = 85}, + [4453] = {.lex_state = 508, .external_lex_state = 85}, + [4454] = {.lex_state = 490, .external_lex_state = 78}, + [4455] = {.lex_state = 490, .external_lex_state = 78}, + [4456] = {.lex_state = 490, .external_lex_state = 78}, + [4457] = {.lex_state = 490, .external_lex_state = 78}, + [4458] = {.lex_state = 508, .external_lex_state = 85}, + [4459] = {.lex_state = 490, .external_lex_state = 78}, + [4460] = {.lex_state = 490, .external_lex_state = 78}, + [4461] = {.lex_state = 490, .external_lex_state = 78}, + [4462] = {.lex_state = 490, .external_lex_state = 78}, + [4463] = {.lex_state = 508, .external_lex_state = 85}, + [4464] = {.lex_state = 508, .external_lex_state = 85}, + [4465] = {.lex_state = 508, .external_lex_state = 85}, + [4466] = {.lex_state = 508, .external_lex_state = 85}, + [4467] = {.lex_state = 508, .external_lex_state = 85}, + [4468] = {.lex_state = 508, .external_lex_state = 85}, + [4469] = {.lex_state = 508, .external_lex_state = 85}, + [4470] = {.lex_state = 508, .external_lex_state = 85}, + [4471] = {.lex_state = 508, .external_lex_state = 85}, + [4472] = {.lex_state = 508, .external_lex_state = 85}, + [4473] = {.lex_state = 508, .external_lex_state = 85}, + [4474] = {.lex_state = 508, .external_lex_state = 85}, + [4475] = {.lex_state = 508, .external_lex_state = 85}, + [4476] = {.lex_state = 508, .external_lex_state = 85}, + [4477] = {.lex_state = 508, .external_lex_state = 85}, + [4478] = {.lex_state = 508, .external_lex_state = 85}, + [4479] = {.lex_state = 508, .external_lex_state = 85}, + [4480] = {.lex_state = 508, .external_lex_state = 85}, + [4481] = {.lex_state = 553, .external_lex_state = 92}, + [4482] = {.lex_state = 508, .external_lex_state = 85}, + [4483] = {.lex_state = 508, .external_lex_state = 85}, + [4484] = {.lex_state = 508, .external_lex_state = 85}, + [4485] = {.lex_state = 508, .external_lex_state = 85}, + [4486] = {.lex_state = 508, .external_lex_state = 85}, + [4487] = {.lex_state = 508, .external_lex_state = 85}, + [4488] = {.lex_state = 508, .external_lex_state = 85}, + [4489] = {.lex_state = 508, .external_lex_state = 85}, + [4490] = {.lex_state = 508, .external_lex_state = 85}, + [4491] = {.lex_state = 508, .external_lex_state = 85}, + [4492] = {.lex_state = 508, .external_lex_state = 85}, + [4493] = {.lex_state = 508, .external_lex_state = 85}, + [4494] = {.lex_state = 508, .external_lex_state = 85}, + [4495] = {.lex_state = 508, .external_lex_state = 85}, + [4496] = {.lex_state = 508, .external_lex_state = 85}, + [4497] = {.lex_state = 508, .external_lex_state = 85}, + [4498] = {.lex_state = 508, .external_lex_state = 85}, + [4499] = {.lex_state = 508, .external_lex_state = 85}, + [4500] = {.lex_state = 508, .external_lex_state = 85}, + [4501] = {.lex_state = 508, .external_lex_state = 85}, + [4502] = {.lex_state = 508, .external_lex_state = 85}, + [4503] = {.lex_state = 508, .external_lex_state = 85}, + [4504] = {.lex_state = 508, .external_lex_state = 85}, + [4505] = {.lex_state = 508, .external_lex_state = 85}, + [4506] = {.lex_state = 508, .external_lex_state = 85}, + [4507] = {.lex_state = 508, .external_lex_state = 85}, + [4508] = {.lex_state = 490, .external_lex_state = 78}, + [4509] = {.lex_state = 96, .external_lex_state = 91}, + [4510] = {.lex_state = 508, .external_lex_state = 85}, + [4511] = {.lex_state = 508, .external_lex_state = 85}, + [4512] = {.lex_state = 508, .external_lex_state = 85}, + [4513] = {.lex_state = 508, .external_lex_state = 85}, + [4514] = {.lex_state = 508, .external_lex_state = 85}, + [4515] = {.lex_state = 508, .external_lex_state = 85}, + [4516] = {.lex_state = 508, .external_lex_state = 85}, + [4517] = {.lex_state = 508, .external_lex_state = 85}, + [4518] = {.lex_state = 508, .external_lex_state = 85}, + [4519] = {.lex_state = 508, .external_lex_state = 85}, + [4520] = {.lex_state = 490, .external_lex_state = 78}, + [4521] = {.lex_state = 508, .external_lex_state = 85}, + [4522] = {.lex_state = 490, .external_lex_state = 78}, + [4523] = {.lex_state = 508, .external_lex_state = 85}, + [4524] = {.lex_state = 490, .external_lex_state = 78}, + [4525] = {.lex_state = 490, .external_lex_state = 78}, + [4526] = {.lex_state = 490, .external_lex_state = 78}, + [4527] = {.lex_state = 96, .external_lex_state = 91}, + [4528] = {.lex_state = 508, .external_lex_state = 85}, + [4529] = {.lex_state = 508, .external_lex_state = 85}, + [4530] = {.lex_state = 508, .external_lex_state = 85}, + [4531] = {.lex_state = 508, .external_lex_state = 85}, + [4532] = {.lex_state = 508, .external_lex_state = 85}, + [4533] = {.lex_state = 508, .external_lex_state = 85}, + [4534] = {.lex_state = 508, .external_lex_state = 85}, + [4535] = {.lex_state = 508, .external_lex_state = 85}, + [4536] = {.lex_state = 490, .external_lex_state = 78}, + [4537] = {.lex_state = 508, .external_lex_state = 85}, + [4538] = {.lex_state = 490, .external_lex_state = 78}, + [4539] = {.lex_state = 508, .external_lex_state = 85}, + [4540] = {.lex_state = 490, .external_lex_state = 78}, + [4541] = {.lex_state = 490, .external_lex_state = 78}, + [4542] = {.lex_state = 508, .external_lex_state = 85}, + [4543] = {.lex_state = 490, .external_lex_state = 78}, + [4544] = {.lex_state = 96, .external_lex_state = 91}, + [4545] = {.lex_state = 508, .external_lex_state = 85}, + [4546] = {.lex_state = 508, .external_lex_state = 85}, + [4547] = {.lex_state = 549, .external_lex_state = 90}, + [4548] = {.lex_state = 549, .external_lex_state = 90}, + [4549] = {.lex_state = 549, .external_lex_state = 90}, + [4550] = {.lex_state = 549, .external_lex_state = 90}, + [4551] = {.lex_state = 549, .external_lex_state = 90}, + [4552] = {.lex_state = 98, .external_lex_state = 87}, + [4553] = {.lex_state = 549, .external_lex_state = 90}, + [4554] = {.lex_state = 553, .external_lex_state = 92}, + [4555] = {.lex_state = 553, .external_lex_state = 92}, + [4556] = {.lex_state = 549, .external_lex_state = 90}, + [4557] = {.lex_state = 549, .external_lex_state = 90}, + [4558] = {.lex_state = 98, .external_lex_state = 87}, + [4559] = {.lex_state = 99, .external_lex_state = 92}, + [4560] = {.lex_state = 553, .external_lex_state = 92}, + [4561] = {.lex_state = 553, .external_lex_state = 92}, + [4562] = {.lex_state = 549, .external_lex_state = 90}, + [4563] = {.lex_state = 98, .external_lex_state = 86}, + [4564] = {.lex_state = 99, .external_lex_state = 87}, + [4565] = {.lex_state = 549, .external_lex_state = 90}, + [4566] = {.lex_state = 553, .external_lex_state = 92}, + [4567] = {.lex_state = 553, .external_lex_state = 92}, + [4568] = {.lex_state = 549, .external_lex_state = 90}, + [4569] = {.lex_state = 553, .external_lex_state = 92}, + [4570] = {.lex_state = 99, .external_lex_state = 88}, + [4571] = {.lex_state = 553, .external_lex_state = 92}, + [4572] = {.lex_state = 98, .external_lex_state = 93}, + [4573] = {.lex_state = 549, .external_lex_state = 90}, + [4574] = {.lex_state = 553, .external_lex_state = 92}, + [4575] = {.lex_state = 549, .external_lex_state = 90}, + [4576] = {.lex_state = 549, .external_lex_state = 90}, + [4577] = {.lex_state = 549, .external_lex_state = 90}, + [4578] = {.lex_state = 553, .external_lex_state = 92}, + [4579] = {.lex_state = 553, .external_lex_state = 92}, + [4580] = {.lex_state = 553, .external_lex_state = 92}, + [4581] = {.lex_state = 553, .external_lex_state = 90}, + [4582] = {.lex_state = 96, .external_lex_state = 91}, + [4583] = {.lex_state = 98, .external_lex_state = 87}, + [4584] = {.lex_state = 98, .external_lex_state = 87}, + [4585] = {.lex_state = 99, .external_lex_state = 88}, + [4586] = {.lex_state = 98, .external_lex_state = 87}, + [4587] = {.lex_state = 99, .external_lex_state = 88}, + [4588] = {.lex_state = 283, .external_lex_state = 94}, + [4589] = {.lex_state = 96, .external_lex_state = 91}, + [4590] = {.lex_state = 98, .external_lex_state = 90}, + [4591] = {.lex_state = 99, .external_lex_state = 64}, + [4592] = {.lex_state = 99, .external_lex_state = 88}, + [4593] = {.lex_state = 283, .external_lex_state = 94}, + [4594] = {.lex_state = 99, .external_lex_state = 64}, + [4595] = {.lex_state = 98, .external_lex_state = 87}, + [4596] = {.lex_state = 99, .external_lex_state = 88}, + [4597] = {.lex_state = 98, .external_lex_state = 93}, + [4598] = {.lex_state = 553, .external_lex_state = 92}, + [4599] = {.lex_state = 553, .external_lex_state = 92}, + [4600] = {.lex_state = 553, .external_lex_state = 92}, + [4601] = {.lex_state = 549, .external_lex_state = 90}, + [4602] = {.lex_state = 549, .external_lex_state = 90}, + [4603] = {.lex_state = 549, .external_lex_state = 90}, + [4604] = {.lex_state = 553, .external_lex_state = 92}, + [4605] = {.lex_state = 98, .external_lex_state = 87}, + [4606] = {.lex_state = 553, .external_lex_state = 92}, + [4607] = {.lex_state = 98, .external_lex_state = 87}, + [4608] = {.lex_state = 98, .external_lex_state = 93}, + [4609] = {.lex_state = 98, .external_lex_state = 87}, + [4610] = {.lex_state = 98, .external_lex_state = 86}, + [4611] = {.lex_state = 98, .external_lex_state = 87}, + [4612] = {.lex_state = 553, .external_lex_state = 92}, + [4613] = {.lex_state = 96, .external_lex_state = 91}, + [4614] = {.lex_state = 553, .external_lex_state = 92}, + [4615] = {.lex_state = 98, .external_lex_state = 87}, + [4616] = {.lex_state = 549, .external_lex_state = 90}, + [4617] = {.lex_state = 98, .external_lex_state = 93}, + [4618] = {.lex_state = 549, .external_lex_state = 93}, + [4619] = {.lex_state = 98, .external_lex_state = 87}, + [4620] = {.lex_state = 98, .external_lex_state = 87}, + [4621] = {.lex_state = 98, .external_lex_state = 87}, + [4622] = {.lex_state = 549, .external_lex_state = 93}, + [4623] = {.lex_state = 98, .external_lex_state = 87}, + [4624] = {.lex_state = 98, .external_lex_state = 87}, + [4625] = {.lex_state = 98, .external_lex_state = 87}, + [4626] = {.lex_state = 99, .external_lex_state = 86}, + [4627] = {.lex_state = 549, .external_lex_state = 93}, + [4628] = {.lex_state = 99, .external_lex_state = 67}, + [4629] = {.lex_state = 98, .external_lex_state = 87}, + [4630] = {.lex_state = 99, .external_lex_state = 86}, + [4631] = {.lex_state = 98, .external_lex_state = 87}, + [4632] = {.lex_state = 511, .external_lex_state = 95}, + [4633] = {.lex_state = 549, .external_lex_state = 93}, + [4634] = {.lex_state = 511, .external_lex_state = 95}, + [4635] = {.lex_state = 549, .external_lex_state = 93}, + [4636] = {.lex_state = 550, .external_lex_state = 93}, + [4637] = {.lex_state = 98, .external_lex_state = 87}, + [4638] = {.lex_state = 553, .external_lex_state = 90}, + [4639] = {.lex_state = 99, .external_lex_state = 88}, + [4640] = {.lex_state = 99, .external_lex_state = 86}, + [4641] = {.lex_state = 553, .external_lex_state = 90}, + [4642] = {.lex_state = 553, .external_lex_state = 90}, + [4643] = {.lex_state = 550, .external_lex_state = 93}, + [4644] = {.lex_state = 99, .external_lex_state = 88}, + [4645] = {.lex_state = 99, .external_lex_state = 88}, + [4646] = {.lex_state = 98, .external_lex_state = 87}, + [4647] = {.lex_state = 99, .external_lex_state = 88}, + [4648] = {.lex_state = 553, .external_lex_state = 90}, + [4649] = {.lex_state = 98, .external_lex_state = 87}, + [4650] = {.lex_state = 553, .external_lex_state = 90}, + [4651] = {.lex_state = 99, .external_lex_state = 88}, + [4652] = {.lex_state = 98, .external_lex_state = 87}, + [4653] = {.lex_state = 554, .external_lex_state = 92}, + [4654] = {.lex_state = 98, .external_lex_state = 87}, + [4655] = {.lex_state = 98, .external_lex_state = 87}, + [4656] = {.lex_state = 99, .external_lex_state = 88}, + [4657] = {.lex_state = 549, .external_lex_state = 93}, + [4658] = {.lex_state = 553, .external_lex_state = 90}, + [4659] = {.lex_state = 549, .external_lex_state = 93}, + [4660] = {.lex_state = 98, .external_lex_state = 86}, + [4661] = {.lex_state = 511, .external_lex_state = 95}, + [4662] = {.lex_state = 553, .external_lex_state = 90}, + [4663] = {.lex_state = 549, .external_lex_state = 93}, + [4664] = {.lex_state = 511, .external_lex_state = 95}, + [4665] = {.lex_state = 99, .external_lex_state = 88}, + [4666] = {.lex_state = 99, .external_lex_state = 88}, + [4667] = {.lex_state = 99, .external_lex_state = 88}, + [4668] = {.lex_state = 549, .external_lex_state = 93}, + [4669] = {.lex_state = 99, .external_lex_state = 92}, + [4670] = {.lex_state = 99, .external_lex_state = 92}, + [4671] = {.lex_state = 551, .external_lex_state = 90}, + [4672] = {.lex_state = 553, .external_lex_state = 90}, + [4673] = {.lex_state = 553, .external_lex_state = 90}, + [4674] = {.lex_state = 553, .external_lex_state = 90}, + [4675] = {.lex_state = 98, .external_lex_state = 93}, + [4676] = {.lex_state = 550, .external_lex_state = 93}, + [4677] = {.lex_state = 99, .external_lex_state = 88}, + [4678] = {.lex_state = 553, .external_lex_state = 90}, + [4679] = {.lex_state = 551, .external_lex_state = 90}, + [4680] = {.lex_state = 549, .external_lex_state = 93}, + [4681] = {.lex_state = 553, .external_lex_state = 90}, + [4682] = {.lex_state = 553, .external_lex_state = 90}, + [4683] = {.lex_state = 553, .external_lex_state = 90}, + [4684] = {.lex_state = 553, .external_lex_state = 90}, + [4685] = {.lex_state = 99, .external_lex_state = 88}, + [4686] = {.lex_state = 555, .external_lex_state = 67}, + [4687] = {.lex_state = 553, .external_lex_state = 90}, + [4688] = {.lex_state = 549, .external_lex_state = 93}, + [4689] = {.lex_state = 98, .external_lex_state = 86}, + [4690] = {.lex_state = 549, .external_lex_state = 93}, + [4691] = {.lex_state = 98, .external_lex_state = 86}, + [4692] = {.lex_state = 549, .external_lex_state = 93}, + [4693] = {.lex_state = 553, .external_lex_state = 90}, + [4694] = {.lex_state = 553, .external_lex_state = 90}, + [4695] = {.lex_state = 553, .external_lex_state = 90}, + [4696] = {.lex_state = 549, .external_lex_state = 93}, + [4697] = {.lex_state = 98, .external_lex_state = 86}, + [4698] = {.lex_state = 549, .external_lex_state = 93}, + [4699] = {.lex_state = 551, .external_lex_state = 90}, + [4700] = {.lex_state = 549, .external_lex_state = 93}, + [4701] = {.lex_state = 549, .external_lex_state = 93}, + [4702] = {.lex_state = 99, .external_lex_state = 87}, + [4703] = {.lex_state = 549, .external_lex_state = 93}, + [4704] = {.lex_state = 550, .external_lex_state = 93}, + [4705] = {.lex_state = 549, .external_lex_state = 93}, + [4706] = {.lex_state = 550, .external_lex_state = 93}, + [4707] = {.lex_state = 98, .external_lex_state = 86}, + [4708] = {.lex_state = 549, .external_lex_state = 90}, + [4709] = {.lex_state = 99, .external_lex_state = 64}, + [4710] = {.lex_state = 98, .external_lex_state = 87}, + [4711] = {.lex_state = 550, .external_lex_state = 93}, + [4712] = {.lex_state = 549, .external_lex_state = 93}, + [4713] = {.lex_state = 549, .external_lex_state = 93}, + [4714] = {.lex_state = 98, .external_lex_state = 90}, + [4715] = {.lex_state = 98, .external_lex_state = 87}, + [4716] = {.lex_state = 98, .external_lex_state = 90}, + [4717] = {.lex_state = 550, .external_lex_state = 93}, + [4718] = {.lex_state = 99, .external_lex_state = 87}, + [4719] = {.lex_state = 99, .external_lex_state = 87}, + [4720] = {.lex_state = 99, .external_lex_state = 88}, + [4721] = {.lex_state = 549, .external_lex_state = 93}, + [4722] = {.lex_state = 98, .external_lex_state = 90}, + [4723] = {.lex_state = 98, .external_lex_state = 90}, + [4724] = {.lex_state = 99, .external_lex_state = 86}, + [4725] = {.lex_state = 99, .external_lex_state = 87}, + [4726] = {.lex_state = 99, .external_lex_state = 87}, + [4727] = {.lex_state = 99, .external_lex_state = 88}, + [4728] = {.lex_state = 99, .external_lex_state = 88}, + [4729] = {.lex_state = 550, .external_lex_state = 93}, + [4730] = {.lex_state = 554, .external_lex_state = 92}, + [4731] = {.lex_state = 99, .external_lex_state = 87}, + [4732] = {.lex_state = 555, .external_lex_state = 67}, + [4733] = {.lex_state = 549, .external_lex_state = 93}, + [4734] = {.lex_state = 99, .external_lex_state = 87}, + [4735] = {.lex_state = 98, .external_lex_state = 90}, + [4736] = {.lex_state = 98, .external_lex_state = 87}, + [4737] = {.lex_state = 98, .external_lex_state = 87}, + [4738] = {.lex_state = 553, .external_lex_state = 92}, + [4739] = {.lex_state = 99, .external_lex_state = 87}, + [4740] = {.lex_state = 98, .external_lex_state = 90}, + [4741] = {.lex_state = 549, .external_lex_state = 93}, + [4742] = {.lex_state = 99, .external_lex_state = 87}, + [4743] = {.lex_state = 99, .external_lex_state = 88}, + [4744] = {.lex_state = 99, .external_lex_state = 86}, + [4745] = {.lex_state = 98, .external_lex_state = 90}, + [4746] = {.lex_state = 98, .external_lex_state = 90}, + [4747] = {.lex_state = 99, .external_lex_state = 64}, + [4748] = {.lex_state = 99, .external_lex_state = 88}, + [4749] = {.lex_state = 99, .external_lex_state = 88}, + [4750] = {.lex_state = 98, .external_lex_state = 90}, + [4751] = {.lex_state = 99, .external_lex_state = 92}, + [4752] = {.lex_state = 99, .external_lex_state = 67}, + [4753] = {.lex_state = 99, .external_lex_state = 86}, + [4754] = {.lex_state = 99, .external_lex_state = 92}, + [4755] = {.lex_state = 98, .external_lex_state = 86}, + [4756] = {.lex_state = 554, .external_lex_state = 92}, + [4757] = {.lex_state = 99, .external_lex_state = 92}, + [4758] = {.lex_state = 550, .external_lex_state = 93}, + [4759] = {.lex_state = 98, .external_lex_state = 90}, + [4760] = {.lex_state = 98, .external_lex_state = 90}, + [4761] = {.lex_state = 549, .external_lex_state = 93}, + [4762] = {.lex_state = 99, .external_lex_state = 88}, + [4763] = {.lex_state = 99, .external_lex_state = 88}, + [4764] = {.lex_state = 549, .external_lex_state = 93}, + [4765] = {.lex_state = 549, .external_lex_state = 93}, + [4766] = {.lex_state = 98, .external_lex_state = 87}, + [4767] = {.lex_state = 99, .external_lex_state = 87}, + [4768] = {.lex_state = 549, .external_lex_state = 93}, + [4769] = {.lex_state = 99, .external_lex_state = 87}, + [4770] = {.lex_state = 99, .external_lex_state = 90}, + [4771] = {.lex_state = 98, .external_lex_state = 86}, + [4772] = {.lex_state = 98, .external_lex_state = 86}, + [4773] = {.lex_state = 98, .external_lex_state = 93}, + [4774] = {.lex_state = 549, .external_lex_state = 90}, + [4775] = {.lex_state = 552, .external_lex_state = 93}, + [4776] = {.lex_state = 99, .external_lex_state = 90}, + [4777] = {.lex_state = 511, .external_lex_state = 71}, + [4778] = {.lex_state = 550, .external_lex_state = 93}, + [4779] = {.lex_state = 552, .external_lex_state = 93}, + [4780] = {.lex_state = 99, .external_lex_state = 90}, + [4781] = {.lex_state = 98, .external_lex_state = 93}, + [4782] = {.lex_state = 554, .external_lex_state = 90}, + [4783] = {.lex_state = 99, .external_lex_state = 92}, + [4784] = {.lex_state = 552, .external_lex_state = 93}, + [4785] = {.lex_state = 553, .external_lex_state = 92}, + [4786] = {.lex_state = 553, .external_lex_state = 92}, + [4787] = {.lex_state = 99, .external_lex_state = 92}, + [4788] = {.lex_state = 554, .external_lex_state = 90}, + [4789] = {.lex_state = 549, .external_lex_state = 90}, + [4790] = {.lex_state = 549, .external_lex_state = 90}, + [4791] = {.lex_state = 511, .external_lex_state = 71}, + [4792] = {.lex_state = 99, .external_lex_state = 92}, + [4793] = {.lex_state = 99, .external_lex_state = 92}, + [4794] = {.lex_state = 98, .external_lex_state = 90}, + [4795] = {.lex_state = 98, .external_lex_state = 90}, + [4796] = {.lex_state = 98, .external_lex_state = 90}, + [4797] = {.lex_state = 549, .external_lex_state = 90}, + [4798] = {.lex_state = 98, .external_lex_state = 90}, + [4799] = {.lex_state = 99, .external_lex_state = 92}, + [4800] = {.lex_state = 99, .external_lex_state = 92}, + [4801] = {.lex_state = 99, .external_lex_state = 92}, + [4802] = {.lex_state = 99, .external_lex_state = 86}, + [4803] = {.lex_state = 99, .external_lex_state = 90}, + [4804] = {.lex_state = 549, .external_lex_state = 90}, + [4805] = {.lex_state = 555, .external_lex_state = 93}, + [4806] = {.lex_state = 549, .external_lex_state = 93}, + [4807] = {.lex_state = 99, .external_lex_state = 87}, + [4808] = {.lex_state = 99, .external_lex_state = 87}, + [4809] = {.lex_state = 99, .external_lex_state = 90}, + [4810] = {.lex_state = 549, .external_lex_state = 90}, + [4811] = {.lex_state = 549, .external_lex_state = 90}, + [4812] = {.lex_state = 552, .external_lex_state = 93}, + [4813] = {.lex_state = 99, .external_lex_state = 67}, + [4814] = {.lex_state = 549, .external_lex_state = 93}, + [4815] = {.lex_state = 99, .external_lex_state = 86}, + [4816] = {.lex_state = 549, .external_lex_state = 90}, + [4817] = {.lex_state = 553, .external_lex_state = 90}, + [4818] = {.lex_state = 549, .external_lex_state = 90}, + [4819] = {.lex_state = 552, .external_lex_state = 93}, + [4820] = {.lex_state = 99, .external_lex_state = 92}, + [4821] = {.lex_state = 99, .external_lex_state = 90}, + [4822] = {.lex_state = 99, .external_lex_state = 90}, + [4823] = {.lex_state = 99, .external_lex_state = 92}, + [4824] = {.lex_state = 99, .external_lex_state = 67}, + [4825] = {.lex_state = 549, .external_lex_state = 93}, + [4826] = {.lex_state = 552, .external_lex_state = 93}, + [4827] = {.lex_state = 556, .external_lex_state = 67}, + [4828] = {.lex_state = 99, .external_lex_state = 87}, + [4829] = {.lex_state = 556, .external_lex_state = 67}, + [4830] = {.lex_state = 99, .external_lex_state = 64}, + [4831] = {.lex_state = 99, .external_lex_state = 87}, + [4832] = {.lex_state = 549, .external_lex_state = 90}, + [4833] = {.lex_state = 549, .external_lex_state = 90}, + [4834] = {.lex_state = 99, .external_lex_state = 93}, + [4835] = {.lex_state = 552, .external_lex_state = 93}, + [4836] = {.lex_state = 555, .external_lex_state = 93}, + [4837] = {.lex_state = 99, .external_lex_state = 86}, + [4838] = {.lex_state = 553, .external_lex_state = 92}, + [4839] = {.lex_state = 555, .external_lex_state = 93}, + [4840] = {.lex_state = 553, .external_lex_state = 92}, + [4841] = {.lex_state = 98, .external_lex_state = 90}, + [4842] = {.lex_state = 99, .external_lex_state = 90}, + [4843] = {.lex_state = 98, .external_lex_state = 90}, + [4844] = {.lex_state = 549, .external_lex_state = 93}, + [4845] = {.lex_state = 549, .external_lex_state = 90}, + [4846] = {.lex_state = 549, .external_lex_state = 93}, + [4847] = {.lex_state = 549, .external_lex_state = 90}, + [4848] = {.lex_state = 552, .external_lex_state = 93}, + [4849] = {.lex_state = 98, .external_lex_state = 93}, + [4850] = {.lex_state = 98, .external_lex_state = 93}, + [4851] = {.lex_state = 99, .external_lex_state = 92}, + [4852] = {.lex_state = 98, .external_lex_state = 93}, + [4853] = {.lex_state = 553, .external_lex_state = 92}, + [4854] = {.lex_state = 553, .external_lex_state = 92}, + [4855] = {.lex_state = 556, .external_lex_state = 93}, + [4856] = {.lex_state = 553, .external_lex_state = 92}, + [4857] = {.lex_state = 98, .external_lex_state = 93}, + [4858] = {.lex_state = 99, .external_lex_state = 87}, + [4859] = {.lex_state = 98, .external_lex_state = 93}, + [4860] = {.lex_state = 550, .external_lex_state = 93}, + [4861] = {.lex_state = 553, .external_lex_state = 92}, + [4862] = {.lex_state = 553, .external_lex_state = 92}, + [4863] = {.lex_state = 553, .external_lex_state = 92}, + [4864] = {.lex_state = 511, .external_lex_state = 71}, + [4865] = {.lex_state = 553, .external_lex_state = 67}, + [4866] = {.lex_state = 554, .external_lex_state = 90}, + [4867] = {.lex_state = 549, .external_lex_state = 90}, + [4868] = {.lex_state = 549, .external_lex_state = 90}, + [4869] = {.lex_state = 550, .external_lex_state = 93}, + [4870] = {.lex_state = 549, .external_lex_state = 93}, + [4871] = {.lex_state = 549, .external_lex_state = 93}, + [4872] = {.lex_state = 549, .external_lex_state = 93}, + [4873] = {.lex_state = 511, .external_lex_state = 71}, + [4874] = {.lex_state = 555, .external_lex_state = 67}, + [4875] = {.lex_state = 99, .external_lex_state = 87}, + [4876] = {.lex_state = 99, .external_lex_state = 92}, + [4877] = {.lex_state = 99, .external_lex_state = 92}, + [4878] = {.lex_state = 98, .external_lex_state = 90}, + [4879] = {.lex_state = 99, .external_lex_state = 86}, + [4880] = {.lex_state = 98, .external_lex_state = 90}, + [4881] = {.lex_state = 555, .external_lex_state = 93}, + [4882] = {.lex_state = 99, .external_lex_state = 93}, + [4883] = {.lex_state = 552, .external_lex_state = 93}, + [4884] = {.lex_state = 554, .external_lex_state = 92}, + [4885] = {.lex_state = 555, .external_lex_state = 93}, + [4886] = {.lex_state = 552, .external_lex_state = 93}, + [4887] = {.lex_state = 556, .external_lex_state = 67}, + [4888] = {.lex_state = 553, .external_lex_state = 92}, + [4889] = {.lex_state = 99, .external_lex_state = 87}, + [4890] = {.lex_state = 99, .external_lex_state = 92}, + [4891] = {.lex_state = 553, .external_lex_state = 92}, + [4892] = {.lex_state = 552, .external_lex_state = 93}, + [4893] = {.lex_state = 98, .external_lex_state = 90}, + [4894] = {.lex_state = 99, .external_lex_state = 90}, + [4895] = {.lex_state = 98, .external_lex_state = 90}, + [4896] = {.lex_state = 99, .external_lex_state = 86}, + [4897] = {.lex_state = 99, .external_lex_state = 93}, + [4898] = {.lex_state = 99, .external_lex_state = 92}, + [4899] = {.lex_state = 553, .external_lex_state = 92}, + [4900] = {.lex_state = 553, .external_lex_state = 67}, + [4901] = {.lex_state = 553, .external_lex_state = 92}, + [4902] = {.lex_state = 553, .external_lex_state = 67}, + [4903] = {.lex_state = 99, .external_lex_state = 92}, + [4904] = {.lex_state = 99, .external_lex_state = 90}, + [4905] = {.lex_state = 552, .external_lex_state = 93}, + [4906] = {.lex_state = 98, .external_lex_state = 90}, + [4907] = {.lex_state = 99, .external_lex_state = 87}, + [4908] = {.lex_state = 552, .external_lex_state = 93}, + [4909] = {.lex_state = 98, .external_lex_state = 90}, + [4910] = {.lex_state = 552, .external_lex_state = 93}, + [4911] = {.lex_state = 99, .external_lex_state = 93}, + [4912] = {.lex_state = 553, .external_lex_state = 92}, + [4913] = {.lex_state = 549, .external_lex_state = 93}, + [4914] = {.lex_state = 98, .external_lex_state = 90}, + [4915] = {.lex_state = 549, .external_lex_state = 90}, + [4916] = {.lex_state = 549, .external_lex_state = 90}, + [4917] = {.lex_state = 549, .external_lex_state = 90}, + [4918] = {.lex_state = 549, .external_lex_state = 90}, + [4919] = {.lex_state = 549, .external_lex_state = 90}, + [4920] = {.lex_state = 549, .external_lex_state = 90}, + [4921] = {.lex_state = 549, .external_lex_state = 90}, + [4922] = {.lex_state = 549, .external_lex_state = 90}, + [4923] = {.lex_state = 552, .external_lex_state = 93}, + [4924] = {.lex_state = 553, .external_lex_state = 67}, + [4925] = {.lex_state = 553, .external_lex_state = 92}, + [4926] = {.lex_state = 98, .external_lex_state = 90}, + [4927] = {.lex_state = 549, .external_lex_state = 93}, + [4928] = {.lex_state = 99, .external_lex_state = 87}, + [4929] = {.lex_state = 99, .external_lex_state = 90}, + [4930] = {.lex_state = 99, .external_lex_state = 90}, + [4931] = {.lex_state = 549, .external_lex_state = 93}, + [4932] = {.lex_state = 552, .external_lex_state = 93}, + [4933] = {.lex_state = 552, .external_lex_state = 93}, + [4934] = {.lex_state = 98, .external_lex_state = 93}, + [4935] = {.lex_state = 99, .external_lex_state = 93}, + [4936] = {.lex_state = 98, .external_lex_state = 93}, + [4937] = {.lex_state = 99, .external_lex_state = 92}, + [4938] = {.lex_state = 549, .external_lex_state = 93}, + [4939] = {.lex_state = 99, .external_lex_state = 87}, + [4940] = {.lex_state = 552, .external_lex_state = 93}, + [4941] = {.lex_state = 99, .external_lex_state = 87}, + [4942] = {.lex_state = 99, .external_lex_state = 87}, + [4943] = {.lex_state = 549, .external_lex_state = 90}, + [4944] = {.lex_state = 549, .external_lex_state = 90}, + [4945] = {.lex_state = 549, .external_lex_state = 90}, + [4946] = {.lex_state = 549, .external_lex_state = 90}, + [4947] = {.lex_state = 549, .external_lex_state = 90}, + [4948] = {.lex_state = 549, .external_lex_state = 90}, + [4949] = {.lex_state = 549, .external_lex_state = 90}, + [4950] = {.lex_state = 549, .external_lex_state = 90}, + [4951] = {.lex_state = 98, .external_lex_state = 90}, + [4952] = {.lex_state = 549, .external_lex_state = 90}, + [4953] = {.lex_state = 549, .external_lex_state = 90}, + [4954] = {.lex_state = 98, .external_lex_state = 90}, + [4955] = {.lex_state = 99, .external_lex_state = 87}, + [4956] = {.lex_state = 98, .external_lex_state = 86}, + [4957] = {.lex_state = 99, .external_lex_state = 87}, + [4958] = {.lex_state = 551, .external_lex_state = 90}, + [4959] = {.lex_state = 99, .external_lex_state = 92}, + [4960] = {.lex_state = 98, .external_lex_state = 90}, + [4961] = {.lex_state = 99, .external_lex_state = 87}, + [4962] = {.lex_state = 99, .external_lex_state = 92}, + [4963] = {.lex_state = 98, .external_lex_state = 90}, + [4964] = {.lex_state = 553, .external_lex_state = 67}, + [4965] = {.lex_state = 98, .external_lex_state = 90}, + [4966] = {.lex_state = 553, .external_lex_state = 67}, + [4967] = {.lex_state = 549, .external_lex_state = 90}, + [4968] = {.lex_state = 99, .external_lex_state = 87}, + [4969] = {.lex_state = 549, .external_lex_state = 90}, + [4970] = {.lex_state = 549, .external_lex_state = 90}, + [4971] = {.lex_state = 549, .external_lex_state = 90}, + [4972] = {.lex_state = 549, .external_lex_state = 90}, + [4973] = {.lex_state = 549, .external_lex_state = 90}, + [4974] = {.lex_state = 549, .external_lex_state = 90}, + [4975] = {.lex_state = 555, .external_lex_state = 67}, + [4976] = {.lex_state = 555, .external_lex_state = 67}, + [4977] = {.lex_state = 99, .external_lex_state = 87}, + [4978] = {.lex_state = 99, .external_lex_state = 87}, + [4979] = {.lex_state = 99, .external_lex_state = 93}, + [4980] = {.lex_state = 99, .external_lex_state = 92}, + [4981] = {.lex_state = 99, .external_lex_state = 87}, + [4982] = {.lex_state = 99, .external_lex_state = 64}, + [4983] = {.lex_state = 556, .external_lex_state = 93}, + [4984] = {.lex_state = 504, .external_lex_state = 96}, + [4985] = {.lex_state = 556, .external_lex_state = 93}, + [4986] = {.lex_state = 553, .external_lex_state = 93}, + [4987] = {.lex_state = 553, .external_lex_state = 93}, + [4988] = {.lex_state = 556, .external_lex_state = 93}, + [4989] = {.lex_state = 98, .external_lex_state = 86}, + [4990] = {.lex_state = 99, .external_lex_state = 93}, + [4991] = {.lex_state = 504, .external_lex_state = 96}, + [4992] = {.lex_state = 556, .external_lex_state = 93}, + [4993] = {.lex_state = 556, .external_lex_state = 93}, + [4994] = {.lex_state = 99, .external_lex_state = 86}, + [4995] = {.lex_state = 99, .external_lex_state = 93}, + [4996] = {.lex_state = 99, .external_lex_state = 86}, + [4997] = {.lex_state = 555, .external_lex_state = 93}, + [4998] = {.lex_state = 555, .external_lex_state = 93}, + [4999] = {.lex_state = 556, .external_lex_state = 93}, + [5000] = {.lex_state = 98, .external_lex_state = 86}, + [5001] = {.lex_state = 99, .external_lex_state = 93}, + [5002] = {.lex_state = 553, .external_lex_state = 93}, + [5003] = {.lex_state = 553, .external_lex_state = 93}, + [5004] = {.lex_state = 99, .external_lex_state = 93}, + [5005] = {.lex_state = 99, .external_lex_state = 93}, + [5006] = {.lex_state = 549, .external_lex_state = 93}, + [5007] = {.lex_state = 556, .external_lex_state = 93}, + [5008] = {.lex_state = 553, .external_lex_state = 93}, + [5009] = {.lex_state = 98, .external_lex_state = 86}, + [5010] = {.lex_state = 553, .external_lex_state = 93}, + [5011] = {.lex_state = 553, .external_lex_state = 93}, + [5012] = {.lex_state = 553, .external_lex_state = 93}, + [5013] = {.lex_state = 504, .external_lex_state = 96}, + [5014] = {.lex_state = 556, .external_lex_state = 93}, + [5015] = {.lex_state = 549, .external_lex_state = 93}, + [5016] = {.lex_state = 553, .external_lex_state = 93}, + [5017] = {.lex_state = 549, .external_lex_state = 93}, + [5018] = {.lex_state = 98, .external_lex_state = 86}, + [5019] = {.lex_state = 553, .external_lex_state = 90}, + [5020] = {.lex_state = 99, .external_lex_state = 90}, + [5021] = {.lex_state = 99, .external_lex_state = 90}, + [5022] = {.lex_state = 553, .external_lex_state = 90}, + [5023] = {.lex_state = 556, .external_lex_state = 93}, + [5024] = {.lex_state = 556, .external_lex_state = 93}, + [5025] = {.lex_state = 98, .external_lex_state = 86}, + [5026] = {.lex_state = 556, .external_lex_state = 93}, + [5027] = {.lex_state = 553, .external_lex_state = 93}, + [5028] = {.lex_state = 98, .external_lex_state = 93}, + [5029] = {.lex_state = 99, .external_lex_state = 90}, + [5030] = {.lex_state = 99, .external_lex_state = 90}, + [5031] = {.lex_state = 549, .external_lex_state = 93}, + [5032] = {.lex_state = 556, .external_lex_state = 93}, + [5033] = {.lex_state = 556, .external_lex_state = 93}, + [5034] = {.lex_state = 98, .external_lex_state = 86}, + [5035] = {.lex_state = 556, .external_lex_state = 93}, + [5036] = {.lex_state = 98, .external_lex_state = 86}, + [5037] = {.lex_state = 555, .external_lex_state = 93}, + [5038] = {.lex_state = 553, .external_lex_state = 93}, + [5039] = {.lex_state = 556, .external_lex_state = 93}, + [5040] = {.lex_state = 99, .external_lex_state = 67}, + [5041] = {.lex_state = 556, .external_lex_state = 93}, + [5042] = {.lex_state = 553, .external_lex_state = 90}, + [5043] = {.lex_state = 553, .external_lex_state = 90}, + [5044] = {.lex_state = 556, .external_lex_state = 93}, + [5045] = {.lex_state = 555, .external_lex_state = 93}, + [5046] = {.lex_state = 553, .external_lex_state = 90}, + [5047] = {.lex_state = 553, .external_lex_state = 90}, + [5048] = {.lex_state = 556, .external_lex_state = 93}, + [5049] = {.lex_state = 98, .external_lex_state = 86}, + [5050] = {.lex_state = 556, .external_lex_state = 93}, + [5051] = {.lex_state = 99, .external_lex_state = 86}, + [5052] = {.lex_state = 556, .external_lex_state = 93}, + [5053] = {.lex_state = 99, .external_lex_state = 90}, + [5054] = {.lex_state = 99, .external_lex_state = 90}, + [5055] = {.lex_state = 556, .external_lex_state = 93}, + [5056] = {.lex_state = 550, .external_lex_state = 93}, + [5057] = {.lex_state = 553, .external_lex_state = 93}, + [5058] = {.lex_state = 325, .external_lex_state = 97}, + [5059] = {.lex_state = 556, .external_lex_state = 93}, + [5060] = {.lex_state = 325, .external_lex_state = 97}, + [5061] = {.lex_state = 555, .external_lex_state = 93}, + [5062] = {.lex_state = 555, .external_lex_state = 93}, + [5063] = {.lex_state = 325, .external_lex_state = 97}, + [5064] = {.lex_state = 555, .external_lex_state = 93}, + [5065] = {.lex_state = 556, .external_lex_state = 93}, + [5066] = {.lex_state = 553, .external_lex_state = 90}, + [5067] = {.lex_state = 553, .external_lex_state = 90}, + [5068] = {.lex_state = 98, .external_lex_state = 86}, + [5069] = {.lex_state = 549, .external_lex_state = 93}, + [5070] = {.lex_state = 549, .external_lex_state = 93}, + [5071] = {.lex_state = 550, .external_lex_state = 93}, + [5072] = {.lex_state = 553, .external_lex_state = 90}, + [5073] = {.lex_state = 550, .external_lex_state = 93}, + [5074] = {.lex_state = 553, .external_lex_state = 90}, + [5075] = {.lex_state = 556, .external_lex_state = 93}, + [5076] = {.lex_state = 553, .external_lex_state = 90}, + [5077] = {.lex_state = 553, .external_lex_state = 90}, + [5078] = {.lex_state = 556, .external_lex_state = 93}, + [5079] = {.lex_state = 99, .external_lex_state = 90}, + [5080] = {.lex_state = 98, .external_lex_state = 86}, + [5081] = {.lex_state = 325, .external_lex_state = 97}, + [5082] = {.lex_state = 98, .external_lex_state = 86}, + [5083] = {.lex_state = 98, .external_lex_state = 86}, + [5084] = {.lex_state = 556, .external_lex_state = 93}, + [5085] = {.lex_state = 553, .external_lex_state = 93}, + [5086] = {.lex_state = 553, .external_lex_state = 90}, + [5087] = {.lex_state = 553, .external_lex_state = 90}, + [5088] = {.lex_state = 554, .external_lex_state = 90}, + [5089] = {.lex_state = 99, .external_lex_state = 90}, + [5090] = {.lex_state = 549, .external_lex_state = 93}, + [5091] = {.lex_state = 99, .external_lex_state = 86}, + [5092] = {.lex_state = 99, .external_lex_state = 90}, + [5093] = {.lex_state = 553, .external_lex_state = 93}, + [5094] = {.lex_state = 99, .external_lex_state = 90}, + [5095] = {.lex_state = 99, .external_lex_state = 90}, + [5096] = {.lex_state = 553, .external_lex_state = 93}, + [5097] = {.lex_state = 99, .external_lex_state = 90}, + [5098] = {.lex_state = 504, .external_lex_state = 96}, + [5099] = {.lex_state = 553, .external_lex_state = 90}, + [5100] = {.lex_state = 556, .external_lex_state = 93}, + [5101] = {.lex_state = 556, .external_lex_state = 93}, + [5102] = {.lex_state = 553, .external_lex_state = 93}, + [5103] = {.lex_state = 99, .external_lex_state = 90}, + [5104] = {.lex_state = 556, .external_lex_state = 93}, + [5105] = {.lex_state = 99, .external_lex_state = 90}, + [5106] = {.lex_state = 553, .external_lex_state = 93}, + [5107] = {.lex_state = 98, .external_lex_state = 86}, + [5108] = {.lex_state = 99, .external_lex_state = 90}, + [5109] = {.lex_state = 99, .external_lex_state = 90}, + [5110] = {.lex_state = 99, .external_lex_state = 90}, + [5111] = {.lex_state = 98, .external_lex_state = 86}, + [5112] = {.lex_state = 98, .external_lex_state = 86}, + [5113] = {.lex_state = 553, .external_lex_state = 93}, + [5114] = {.lex_state = 98, .external_lex_state = 86}, + [5115] = {.lex_state = 99, .external_lex_state = 86}, + [5116] = {.lex_state = 549, .external_lex_state = 93}, + [5117] = {.lex_state = 556, .external_lex_state = 93}, + [5118] = {.lex_state = 556, .external_lex_state = 93}, + [5119] = {.lex_state = 549, .external_lex_state = 93}, + [5120] = {.lex_state = 553, .external_lex_state = 93}, + [5121] = {.lex_state = 556, .external_lex_state = 93}, + [5122] = {.lex_state = 99, .external_lex_state = 90}, + [5123] = {.lex_state = 556, .external_lex_state = 93}, + [5124] = {.lex_state = 553, .external_lex_state = 93}, + [5125] = {.lex_state = 556, .external_lex_state = 93}, + [5126] = {.lex_state = 556, .external_lex_state = 93}, + [5127] = {.lex_state = 556, .external_lex_state = 93}, + [5128] = {.lex_state = 553, .external_lex_state = 93}, + [5129] = {.lex_state = 325, .external_lex_state = 97}, + [5130] = {.lex_state = 325, .external_lex_state = 97}, + [5131] = {.lex_state = 549, .external_lex_state = 93}, + [5132] = {.lex_state = 504, .external_lex_state = 96}, + [5133] = {.lex_state = 556, .external_lex_state = 93}, + [5134] = {.lex_state = 553, .external_lex_state = 93}, + [5135] = {.lex_state = 556, .external_lex_state = 93}, + [5136] = {.lex_state = 553, .external_lex_state = 93}, + [5137] = {.lex_state = 556, .external_lex_state = 93}, + [5138] = {.lex_state = 553, .external_lex_state = 67}, + [5139] = {.lex_state = 549, .external_lex_state = 93}, + [5140] = {.lex_state = 553, .external_lex_state = 93}, + [5141] = {.lex_state = 556, .external_lex_state = 93}, + [5142] = {.lex_state = 556, .external_lex_state = 93}, + [5143] = {.lex_state = 556, .external_lex_state = 93}, + [5144] = {.lex_state = 556, .external_lex_state = 93}, + [5145] = {.lex_state = 504, .external_lex_state = 96}, + [5146] = {.lex_state = 553, .external_lex_state = 93}, + [5147] = {.lex_state = 553, .external_lex_state = 93}, + [5148] = {.lex_state = 556, .external_lex_state = 93}, + [5149] = {.lex_state = 99, .external_lex_state = 90}, + [5150] = {.lex_state = 556, .external_lex_state = 93}, + [5151] = {.lex_state = 504, .external_lex_state = 96}, + [5152] = {.lex_state = 553, .external_lex_state = 93}, + [5153] = {.lex_state = 553, .external_lex_state = 93}, + [5154] = {.lex_state = 98, .external_lex_state = 86}, + [5155] = {.lex_state = 553, .external_lex_state = 93}, + [5156] = {.lex_state = 553, .external_lex_state = 67}, + [5157] = {.lex_state = 98, .external_lex_state = 86}, + [5158] = {.lex_state = 556, .external_lex_state = 93}, + [5159] = {.lex_state = 556, .external_lex_state = 93}, + [5160] = {.lex_state = 553, .external_lex_state = 90}, + [5161] = {.lex_state = 553, .external_lex_state = 90}, + [5162] = {.lex_state = 553, .external_lex_state = 90}, + [5163] = {.lex_state = 553, .external_lex_state = 90}, + [5164] = {.lex_state = 553, .external_lex_state = 90}, + [5165] = {.lex_state = 553, .external_lex_state = 90}, + [5166] = {.lex_state = 553, .external_lex_state = 90}, + [5167] = {.lex_state = 553, .external_lex_state = 90}, + [5168] = {.lex_state = 556, .external_lex_state = 93}, + [5169] = {.lex_state = 99, .external_lex_state = 64}, + [5170] = {.lex_state = 549, .external_lex_state = 93}, + [5171] = {.lex_state = 553, .external_lex_state = 93}, + [5172] = {.lex_state = 556, .external_lex_state = 93}, + [5173] = {.lex_state = 556, .external_lex_state = 93}, + [5174] = {.lex_state = 553, .external_lex_state = 67}, + [5175] = {.lex_state = 553, .external_lex_state = 67}, + [5176] = {.lex_state = 556, .external_lex_state = 93}, + [5177] = {.lex_state = 549, .external_lex_state = 93}, + [5178] = {.lex_state = 556, .external_lex_state = 93}, + [5179] = {.lex_state = 556, .external_lex_state = 93}, + [5180] = {.lex_state = 556, .external_lex_state = 93}, + [5181] = {.lex_state = 553, .external_lex_state = 90}, + [5182] = {.lex_state = 553, .external_lex_state = 90}, + [5183] = {.lex_state = 553, .external_lex_state = 90}, + [5184] = {.lex_state = 553, .external_lex_state = 90}, + [5185] = {.lex_state = 553, .external_lex_state = 90}, + [5186] = {.lex_state = 553, .external_lex_state = 90}, + [5187] = {.lex_state = 553, .external_lex_state = 90}, + [5188] = {.lex_state = 553, .external_lex_state = 90}, + [5189] = {.lex_state = 556, .external_lex_state = 93}, + [5190] = {.lex_state = 556, .external_lex_state = 93}, + [5191] = {.lex_state = 556, .external_lex_state = 93}, + [5192] = {.lex_state = 553, .external_lex_state = 93}, + [5193] = {.lex_state = 553, .external_lex_state = 93}, + [5194] = {.lex_state = 553, .external_lex_state = 93}, + [5195] = {.lex_state = 549, .external_lex_state = 93}, + [5196] = {.lex_state = 99, .external_lex_state = 64}, + [5197] = {.lex_state = 553, .external_lex_state = 90}, + [5198] = {.lex_state = 553, .external_lex_state = 90}, + [5199] = {.lex_state = 553, .external_lex_state = 90}, + [5200] = {.lex_state = 553, .external_lex_state = 90}, + [5201] = {.lex_state = 553, .external_lex_state = 90}, + [5202] = {.lex_state = 553, .external_lex_state = 90}, + [5203] = {.lex_state = 553, .external_lex_state = 90}, + [5204] = {.lex_state = 553, .external_lex_state = 90}, + [5205] = {.lex_state = 553, .external_lex_state = 93}, + [5206] = {.lex_state = 504, .external_lex_state = 96}, + [5207] = {.lex_state = 549, .external_lex_state = 93}, + [5208] = {.lex_state = 549, .external_lex_state = 93}, + [5209] = {.lex_state = 504, .external_lex_state = 96}, + [5210] = {.lex_state = 99, .external_lex_state = 86}, + [5211] = {.lex_state = 553, .external_lex_state = 90}, + [5212] = {.lex_state = 99, .external_lex_state = 86}, + [5213] = {.lex_state = 99, .external_lex_state = 93}, + [5214] = {.lex_state = 99, .external_lex_state = 86}, + [5215] = {.lex_state = 504, .external_lex_state = 96}, + [5216] = {.lex_state = 486, .external_lex_state = 98}, + [5217] = {.lex_state = 486, .external_lex_state = 98}, + [5218] = {.lex_state = 486, .external_lex_state = 98}, + [5219] = {.lex_state = 486, .external_lex_state = 98}, + [5220] = {.lex_state = 486, .external_lex_state = 98}, + [5221] = {.lex_state = 486, .external_lex_state = 98}, + [5222] = {.lex_state = 99, .external_lex_state = 86}, + [5223] = {.lex_state = 99, .external_lex_state = 86}, + [5224] = {.lex_state = 99, .external_lex_state = 86}, + [5225] = {.lex_state = 486, .external_lex_state = 98}, + [5226] = {.lex_state = 486, .external_lex_state = 98}, + [5227] = {.lex_state = 486, .external_lex_state = 98}, + [5228] = {.lex_state = 99, .external_lex_state = 86}, + [5229] = {.lex_state = 99, .external_lex_state = 86}, + [5230] = {.lex_state = 486, .external_lex_state = 98}, + [5231] = {.lex_state = 486, .external_lex_state = 98}, + [5232] = {.lex_state = 99, .external_lex_state = 86}, + [5233] = {.lex_state = 99, .external_lex_state = 86}, + [5234] = {.lex_state = 99, .external_lex_state = 86}, + [5235] = {.lex_state = 486, .external_lex_state = 98}, + [5236] = {.lex_state = 99, .external_lex_state = 86}, + [5237] = {.lex_state = 486, .external_lex_state = 98}, + [5238] = {.lex_state = 504, .external_lex_state = 96}, + [5239] = {.lex_state = 98, .external_lex_state = 93}, + [5240] = {.lex_state = 325, .external_lex_state = 97}, + [5241] = {.lex_state = 325, .external_lex_state = 97}, + [5242] = {.lex_state = 325, .external_lex_state = 97}, + [5243] = {.lex_state = 486, .external_lex_state = 98}, + [5244] = {.lex_state = 486, .external_lex_state = 98}, + [5245] = {.lex_state = 325, .external_lex_state = 97}, + [5246] = {.lex_state = 486, .external_lex_state = 98}, + [5247] = {.lex_state = 325, .external_lex_state = 97}, + [5248] = {.lex_state = 486, .external_lex_state = 98}, + [5249] = {.lex_state = 325, .external_lex_state = 97}, + [5250] = {.lex_state = 325, .external_lex_state = 97}, + [5251] = {.lex_state = 325, .external_lex_state = 97}, + [5252] = {.lex_state = 99, .external_lex_state = 86}, + [5253] = {.lex_state = 325, .external_lex_state = 97}, + [5254] = {.lex_state = 99, .external_lex_state = 93}, + [5255] = {.lex_state = 99, .external_lex_state = 86}, + [5256] = {.lex_state = 99, .external_lex_state = 86}, + [5257] = {.lex_state = 553, .external_lex_state = 93}, + [5258] = {.lex_state = 504, .external_lex_state = 96}, + [5259] = {.lex_state = 504, .external_lex_state = 96}, + [5260] = {.lex_state = 325, .external_lex_state = 97}, + [5261] = {.lex_state = 325, .external_lex_state = 97}, + [5262] = {.lex_state = 325, .external_lex_state = 97}, + [5263] = {.lex_state = 486, .external_lex_state = 98}, + [5264] = {.lex_state = 99, .external_lex_state = 86}, + [5265] = {.lex_state = 99, .external_lex_state = 86}, + [5266] = {.lex_state = 99, .external_lex_state = 93}, + [5267] = {.lex_state = 98, .external_lex_state = 93}, + [5268] = {.lex_state = 486, .external_lex_state = 98}, + [5269] = {.lex_state = 99, .external_lex_state = 93}, + [5270] = {.lex_state = 98, .external_lex_state = 93}, + [5271] = {.lex_state = 549, .external_lex_state = 93}, + [5272] = {.lex_state = 98, .external_lex_state = 93}, + [5273] = {.lex_state = 98, .external_lex_state = 93}, + [5274] = {.lex_state = 98, .external_lex_state = 93}, + [5275] = {.lex_state = 553, .external_lex_state = 93}, + [5276] = {.lex_state = 486, .external_lex_state = 98}, + [5277] = {.lex_state = 486, .external_lex_state = 98}, + [5278] = {.lex_state = 553, .external_lex_state = 93}, + [5279] = {.lex_state = 486, .external_lex_state = 98}, + [5280] = {.lex_state = 99, .external_lex_state = 86}, + [5281] = {.lex_state = 99, .external_lex_state = 86}, + [5282] = {.lex_state = 553, .external_lex_state = 93}, + [5283] = {.lex_state = 486, .external_lex_state = 98}, + [5284] = {.lex_state = 486, .external_lex_state = 98}, + [5285] = {.lex_state = 99, .external_lex_state = 86}, + [5286] = {.lex_state = 99, .external_lex_state = 86}, + [5287] = {.lex_state = 99, .external_lex_state = 86}, + [5288] = {.lex_state = 99, .external_lex_state = 86}, + [5289] = {.lex_state = 98, .external_lex_state = 93}, + [5290] = {.lex_state = 486, .external_lex_state = 98}, + [5291] = {.lex_state = 99, .external_lex_state = 86}, + [5292] = {.lex_state = 99, .external_lex_state = 86}, + [5293] = {.lex_state = 486, .external_lex_state = 98}, + [5294] = {.lex_state = 98, .external_lex_state = 93}, + [5295] = {.lex_state = 98, .external_lex_state = 93}, + [5296] = {.lex_state = 486, .external_lex_state = 98}, + [5297] = {.lex_state = 99, .external_lex_state = 86}, + [5298] = {.lex_state = 99, .external_lex_state = 86}, + [5299] = {.lex_state = 98, .external_lex_state = 93}, + [5300] = {.lex_state = 486, .external_lex_state = 98}, + [5301] = {.lex_state = 486, .external_lex_state = 98}, + [5302] = {.lex_state = 486, .external_lex_state = 98}, + [5303] = {.lex_state = 486, .external_lex_state = 98}, + [5304] = {.lex_state = 486, .external_lex_state = 98}, + [5305] = {.lex_state = 98, .external_lex_state = 93}, + [5306] = {.lex_state = 486, .external_lex_state = 98}, + [5307] = {.lex_state = 486, .external_lex_state = 98}, + [5308] = {.lex_state = 486, .external_lex_state = 98}, + [5309] = {.lex_state = 486, .external_lex_state = 98}, + [5310] = {.lex_state = 486, .external_lex_state = 98}, + [5311] = {.lex_state = 486, .external_lex_state = 98}, + [5312] = {.lex_state = 99, .external_lex_state = 86}, + [5313] = {.lex_state = 99, .external_lex_state = 86}, + [5314] = {.lex_state = 99, .external_lex_state = 86}, + [5315] = {.lex_state = 486, .external_lex_state = 98}, + [5316] = {.lex_state = 486, .external_lex_state = 98}, + [5317] = {.lex_state = 99, .external_lex_state = 86}, + [5318] = {.lex_state = 504, .external_lex_state = 96}, + [5319] = {.lex_state = 99, .external_lex_state = 86}, + [5320] = {.lex_state = 504, .external_lex_state = 96}, + [5321] = {.lex_state = 486, .external_lex_state = 98}, + [5322] = {.lex_state = 98, .external_lex_state = 93}, + [5323] = {.lex_state = 553, .external_lex_state = 93}, + [5324] = {.lex_state = 486, .external_lex_state = 98}, + [5325] = {.lex_state = 486, .external_lex_state = 98}, + [5326] = {.lex_state = 553, .external_lex_state = 67}, + [5327] = {.lex_state = 486, .external_lex_state = 98}, + [5328] = {.lex_state = 486, .external_lex_state = 98}, + [5329] = {.lex_state = 98, .external_lex_state = 93}, + [5330] = {.lex_state = 98, .external_lex_state = 93}, + [5331] = {.lex_state = 486, .external_lex_state = 98}, + [5332] = {.lex_state = 99, .external_lex_state = 86}, + [5333] = {.lex_state = 504, .external_lex_state = 96}, + [5334] = {.lex_state = 486, .external_lex_state = 98}, + [5335] = {.lex_state = 99, .external_lex_state = 86}, + [5336] = {.lex_state = 98, .external_lex_state = 93}, + [5337] = {.lex_state = 553, .external_lex_state = 93}, + [5338] = {.lex_state = 486, .external_lex_state = 98}, + [5339] = {.lex_state = 486, .external_lex_state = 98}, + [5340] = {.lex_state = 486, .external_lex_state = 98}, + [5341] = {.lex_state = 486, .external_lex_state = 98}, + [5342] = {.lex_state = 99, .external_lex_state = 86}, + [5343] = {.lex_state = 99, .external_lex_state = 86}, + [5344] = {.lex_state = 486, .external_lex_state = 98}, + [5345] = {.lex_state = 553, .external_lex_state = 93}, + [5346] = {.lex_state = 98, .external_lex_state = 93}, + [5347] = {.lex_state = 486, .external_lex_state = 98}, + [5348] = {.lex_state = 99, .external_lex_state = 86}, + [5349] = {.lex_state = 553, .external_lex_state = 93}, + [5350] = {.lex_state = 486, .external_lex_state = 98}, + [5351] = {.lex_state = 486, .external_lex_state = 98}, + [5352] = {.lex_state = 486, .external_lex_state = 98}, + [5353] = {.lex_state = 325, .external_lex_state = 97}, + [5354] = {.lex_state = 99, .external_lex_state = 93}, + [5355] = {.lex_state = 99, .external_lex_state = 86}, + [5356] = {.lex_state = 99, .external_lex_state = 86}, + [5357] = {.lex_state = 486, .external_lex_state = 98}, + [5358] = {.lex_state = 99, .external_lex_state = 86}, + [5359] = {.lex_state = 486, .external_lex_state = 98}, + [5360] = {.lex_state = 325, .external_lex_state = 97}, + [5361] = {.lex_state = 325, .external_lex_state = 97}, + [5362] = {.lex_state = 486, .external_lex_state = 98}, + [5363] = {.lex_state = 486, .external_lex_state = 98}, + [5364] = {.lex_state = 486, .external_lex_state = 98}, + [5365] = {.lex_state = 486, .external_lex_state = 98}, + [5366] = {.lex_state = 486, .external_lex_state = 98}, + [5367] = {.lex_state = 99, .external_lex_state = 86}, + [5368] = {.lex_state = 99, .external_lex_state = 86}, + [5369] = {.lex_state = 99, .external_lex_state = 86}, + [5370] = {.lex_state = 486, .external_lex_state = 98}, + [5371] = {.lex_state = 99, .external_lex_state = 67}, + [5372] = {.lex_state = 486, .external_lex_state = 98}, + [5373] = {.lex_state = 98, .external_lex_state = 93}, + [5374] = {.lex_state = 486, .external_lex_state = 98}, + [5375] = {.lex_state = 99, .external_lex_state = 86}, + [5376] = {.lex_state = 553, .external_lex_state = 93}, + [5377] = {.lex_state = 99, .external_lex_state = 86}, + [5378] = {.lex_state = 549, .external_lex_state = 93}, + [5379] = {.lex_state = 99, .external_lex_state = 67}, + [5380] = {.lex_state = 553, .external_lex_state = 93}, + [5381] = {.lex_state = 99, .external_lex_state = 86}, + [5382] = {.lex_state = 99, .external_lex_state = 86}, + [5383] = {.lex_state = 553, .external_lex_state = 93}, + [5384] = {.lex_state = 486, .external_lex_state = 98}, + [5385] = {.lex_state = 553, .external_lex_state = 93}, + [5386] = {.lex_state = 549, .external_lex_state = 93}, + [5387] = {.lex_state = 549, .external_lex_state = 93}, + [5388] = {.lex_state = 486, .external_lex_state = 98}, + [5389] = {.lex_state = 325, .external_lex_state = 97}, + [5390] = {.lex_state = 504, .external_lex_state = 96}, + [5391] = {.lex_state = 553, .external_lex_state = 93}, + [5392] = {.lex_state = 486, .external_lex_state = 98}, + [5393] = {.lex_state = 325, .external_lex_state = 97}, + [5394] = {.lex_state = 486, .external_lex_state = 98}, + [5395] = {.lex_state = 99, .external_lex_state = 86}, + [5396] = {.lex_state = 99, .external_lex_state = 86}, + [5397] = {.lex_state = 99, .external_lex_state = 86}, + [5398] = {.lex_state = 486, .external_lex_state = 98}, + [5399] = {.lex_state = 99, .external_lex_state = 86}, + [5400] = {.lex_state = 486, .external_lex_state = 98}, + [5401] = {.lex_state = 553, .external_lex_state = 93}, + [5402] = {.lex_state = 486, .external_lex_state = 98}, + [5403] = {.lex_state = 99, .external_lex_state = 86}, + [5404] = {.lex_state = 486, .external_lex_state = 98}, + [5405] = {.lex_state = 486, .external_lex_state = 98}, + [5406] = {.lex_state = 98, .external_lex_state = 93}, + [5407] = {.lex_state = 486, .external_lex_state = 98}, + [5408] = {.lex_state = 504, .external_lex_state = 96}, + [5409] = {.lex_state = 99, .external_lex_state = 67}, + [5410] = {.lex_state = 325, .external_lex_state = 97}, + [5411] = {.lex_state = 486, .external_lex_state = 98}, + [5412] = {.lex_state = 325, .external_lex_state = 97}, + [5413] = {.lex_state = 99, .external_lex_state = 86}, + [5414] = {.lex_state = 486, .external_lex_state = 98}, + [5415] = {.lex_state = 486, .external_lex_state = 98}, + [5416] = {.lex_state = 99, .external_lex_state = 86}, + [5417] = {.lex_state = 99, .external_lex_state = 86}, + [5418] = {.lex_state = 486, .external_lex_state = 98}, + [5419] = {.lex_state = 99, .external_lex_state = 93}, + [5420] = {.lex_state = 99, .external_lex_state = 86}, + [5421] = {.lex_state = 486, .external_lex_state = 98}, + [5422] = {.lex_state = 486, .external_lex_state = 98}, + [5423] = {.lex_state = 99, .external_lex_state = 86}, + [5424] = {.lex_state = 486, .external_lex_state = 98}, + [5425] = {.lex_state = 486, .external_lex_state = 98}, + [5426] = {.lex_state = 99, .external_lex_state = 86}, + [5427] = {.lex_state = 553, .external_lex_state = 93}, + [5428] = {.lex_state = 99, .external_lex_state = 93}, + [5429] = {.lex_state = 99, .external_lex_state = 93}, + [5430] = {.lex_state = 553, .external_lex_state = 93}, + [5431] = {.lex_state = 553, .external_lex_state = 93}, + [5432] = {.lex_state = 99, .external_lex_state = 92}, + [5433] = {.lex_state = 98, .external_lex_state = 90}, + [5434] = {.lex_state = 99, .external_lex_state = 93}, + [5435] = {.lex_state = 99, .external_lex_state = 93}, + [5436] = {.lex_state = 553, .external_lex_state = 93}, + [5437] = {.lex_state = 555, .external_lex_state = 93}, + [5438] = {.lex_state = 99, .external_lex_state = 93}, + [5439] = {.lex_state = 553, .external_lex_state = 93}, + [5440] = {.lex_state = 99, .external_lex_state = 93}, + [5441] = {.lex_state = 99, .external_lex_state = 93}, + [5442] = {.lex_state = 553, .external_lex_state = 93}, + [5443] = {.lex_state = 99, .external_lex_state = 93}, + [5444] = {.lex_state = 99, .external_lex_state = 93}, + [5445] = {.lex_state = 98, .external_lex_state = 93}, + [5446] = {.lex_state = 99, .external_lex_state = 93}, + [5447] = {.lex_state = 99, .external_lex_state = 93}, + [5448] = {.lex_state = 99, .external_lex_state = 93}, + [5449] = {.lex_state = 99, .external_lex_state = 93}, + [5450] = {.lex_state = 99, .external_lex_state = 93}, + [5451] = {.lex_state = 553, .external_lex_state = 93}, + [5452] = {.lex_state = 99, .external_lex_state = 93}, + [5453] = {.lex_state = 555, .external_lex_state = 93}, + [5454] = {.lex_state = 553, .external_lex_state = 93}, + [5455] = {.lex_state = 553, .external_lex_state = 93}, + [5456] = {.lex_state = 99, .external_lex_state = 93}, + [5457] = {.lex_state = 99, .external_lex_state = 93}, + [5458] = {.lex_state = 553, .external_lex_state = 93}, + [5459] = {.lex_state = 99, .external_lex_state = 93}, + [5460] = {.lex_state = 99, .external_lex_state = 93}, + [5461] = {.lex_state = 553, .external_lex_state = 93}, + [5462] = {.lex_state = 99, .external_lex_state = 93}, + [5463] = {.lex_state = 99, .external_lex_state = 93}, + [5464] = {.lex_state = 99, .external_lex_state = 93}, + [5465] = {.lex_state = 553, .external_lex_state = 93}, + [5466] = {.lex_state = 99, .external_lex_state = 93}, + [5467] = {.lex_state = 99, .external_lex_state = 93}, + [5468] = {.lex_state = 99, .external_lex_state = 93}, + [5469] = {.lex_state = 516, .external_lex_state = 99}, + [5470] = {.lex_state = 324, .external_lex_state = 72}, + [5471] = {.lex_state = 99, .external_lex_state = 93}, + [5472] = {.lex_state = 98, .external_lex_state = 93}, + [5473] = {.lex_state = 553, .external_lex_state = 93}, + [5474] = {.lex_state = 99, .external_lex_state = 93}, + [5475] = {.lex_state = 553, .external_lex_state = 93}, + [5476] = {.lex_state = 553, .external_lex_state = 93}, + [5477] = {.lex_state = 553, .external_lex_state = 93}, + [5478] = {.lex_state = 555, .external_lex_state = 93}, + [5479] = {.lex_state = 555, .external_lex_state = 93}, + [5480] = {.lex_state = 99, .external_lex_state = 93}, + [5481] = {.lex_state = 553, .external_lex_state = 93}, + [5482] = {.lex_state = 99, .external_lex_state = 93}, + [5483] = {.lex_state = 553, .external_lex_state = 93}, + [5484] = {.lex_state = 99, .external_lex_state = 93}, + [5485] = {.lex_state = 553, .external_lex_state = 93}, + [5486] = {.lex_state = 553, .external_lex_state = 93}, + [5487] = {.lex_state = 553, .external_lex_state = 93}, + [5488] = {.lex_state = 99, .external_lex_state = 93}, + [5489] = {.lex_state = 99, .external_lex_state = 93}, + [5490] = {.lex_state = 553, .external_lex_state = 93}, + [5491] = {.lex_state = 99, .external_lex_state = 93}, + [5492] = {.lex_state = 99, .external_lex_state = 93}, + [5493] = {.lex_state = 553, .external_lex_state = 93}, + [5494] = {.lex_state = 553, .external_lex_state = 93}, + [5495] = {.lex_state = 99, .external_lex_state = 93}, + [5496] = {.lex_state = 99, .external_lex_state = 93}, + [5497] = {.lex_state = 99, .external_lex_state = 93}, + [5498] = {.lex_state = 99, .external_lex_state = 93}, + [5499] = {.lex_state = 99, .external_lex_state = 93}, + [5500] = {.lex_state = 99, .external_lex_state = 93}, + [5501] = {.lex_state = 99, .external_lex_state = 93}, + [5502] = {.lex_state = 99, .external_lex_state = 93}, + [5503] = {.lex_state = 99, .external_lex_state = 93}, + [5504] = {.lex_state = 99, .external_lex_state = 93}, + [5505] = {.lex_state = 99, .external_lex_state = 93}, + [5506] = {.lex_state = 553, .external_lex_state = 93}, + [5507] = {.lex_state = 99, .external_lex_state = 93}, + [5508] = {.lex_state = 99, .external_lex_state = 93}, + [5509] = {.lex_state = 553, .external_lex_state = 93}, + [5510] = {.lex_state = 99, .external_lex_state = 93}, + [5511] = {.lex_state = 99, .external_lex_state = 93}, + [5512] = {.lex_state = 99, .external_lex_state = 93}, + [5513] = {.lex_state = 99, .external_lex_state = 93}, + [5514] = {.lex_state = 553, .external_lex_state = 93}, + [5515] = {.lex_state = 99, .external_lex_state = 93}, + [5516] = {.lex_state = 99, .external_lex_state = 93}, + [5517] = {.lex_state = 99, .external_lex_state = 93}, + [5518] = {.lex_state = 98, .external_lex_state = 93}, + [5519] = {.lex_state = 324, .external_lex_state = 72}, + [5520] = {.lex_state = 99, .external_lex_state = 93}, + [5521] = {.lex_state = 99, .external_lex_state = 93}, + [5522] = {.lex_state = 553, .external_lex_state = 93}, + [5523] = {.lex_state = 553, .external_lex_state = 93}, + [5524] = {.lex_state = 98, .external_lex_state = 93}, + [5525] = {.lex_state = 99, .external_lex_state = 93}, + [5526] = {.lex_state = 504, .external_lex_state = 96}, + [5527] = {.lex_state = 98, .external_lex_state = 90}, + [5528] = {.lex_state = 493, .external_lex_state = 100}, + [5529] = {.lex_state = 98, .external_lex_state = 90}, + [5530] = {.lex_state = 504, .external_lex_state = 96}, + [5531] = {.lex_state = 504, .external_lex_state = 96}, + [5532] = {.lex_state = 516, .external_lex_state = 99}, + [5533] = {.lex_state = 516, .external_lex_state = 99}, + [5534] = {.lex_state = 481, .external_lex_state = 101}, + [5535] = {.lex_state = 504, .external_lex_state = 96}, + [5536] = {.lex_state = 504, .external_lex_state = 96}, + [5537] = {.lex_state = 504, .external_lex_state = 96}, + [5538] = {.lex_state = 504, .external_lex_state = 96}, + [5539] = {.lex_state = 504, .external_lex_state = 96}, + [5540] = {.lex_state = 504, .external_lex_state = 96}, + [5541] = {.lex_state = 516, .external_lex_state = 99}, + [5542] = {.lex_state = 516, .external_lex_state = 99}, + [5543] = {.lex_state = 504, .external_lex_state = 96}, + [5544] = {.lex_state = 504, .external_lex_state = 96}, + [5545] = {.lex_state = 513, .external_lex_state = 102}, + [5546] = {.lex_state = 504, .external_lex_state = 96}, + [5547] = {.lex_state = 99, .external_lex_state = 92}, + [5548] = {.lex_state = 504, .external_lex_state = 96}, + [5549] = {.lex_state = 553, .external_lex_state = 93}, + [5550] = {.lex_state = 504, .external_lex_state = 96}, + [5551] = {.lex_state = 99, .external_lex_state = 92}, + [5552] = {.lex_state = 504, .external_lex_state = 96}, + [5553] = {.lex_state = 504, .external_lex_state = 96}, + [5554] = {.lex_state = 99, .external_lex_state = 92}, + [5555] = {.lex_state = 481, .external_lex_state = 103}, + [5556] = {.lex_state = 493, .external_lex_state = 100}, + [5557] = {.lex_state = 493, .external_lex_state = 100}, + [5558] = {.lex_state = 516, .external_lex_state = 99}, + [5559] = {.lex_state = 504, .external_lex_state = 96}, + [5560] = {.lex_state = 516, .external_lex_state = 99}, + [5561] = {.lex_state = 310, .external_lex_state = 97}, + [5562] = {.lex_state = 310, .external_lex_state = 97}, + [5563] = {.lex_state = 310, .external_lex_state = 97}, + [5564] = {.lex_state = 516, .external_lex_state = 99}, + [5565] = {.lex_state = 553, .external_lex_state = 93}, + [5566] = {.lex_state = 553, .external_lex_state = 93}, + [5567] = {.lex_state = 553, .external_lex_state = 93}, + [5568] = {.lex_state = 504, .external_lex_state = 96}, + [5569] = {.lex_state = 99, .external_lex_state = 92}, + [5570] = {.lex_state = 516, .external_lex_state = 99}, + [5571] = {.lex_state = 516, .external_lex_state = 99}, + [5572] = {.lex_state = 504, .external_lex_state = 96}, + [5573] = {.lex_state = 504, .external_lex_state = 96}, + [5574] = {.lex_state = 504, .external_lex_state = 96}, + [5575] = {.lex_state = 504, .external_lex_state = 96}, + [5576] = {.lex_state = 504, .external_lex_state = 96}, + [5577] = {.lex_state = 493, .external_lex_state = 100}, + [5578] = {.lex_state = 504, .external_lex_state = 96}, + [5579] = {.lex_state = 516, .external_lex_state = 99}, + [5580] = {.lex_state = 504, .external_lex_state = 96}, + [5581] = {.lex_state = 493, .external_lex_state = 100}, + [5582] = {.lex_state = 504, .external_lex_state = 96}, + [5583] = {.lex_state = 553, .external_lex_state = 93}, + [5584] = {.lex_state = 504, .external_lex_state = 96}, + [5585] = {.lex_state = 504, .external_lex_state = 96}, + [5586] = {.lex_state = 504, .external_lex_state = 96}, + [5587] = {.lex_state = 514, .external_lex_state = 104}, + [5588] = {.lex_state = 310, .external_lex_state = 97}, + [5589] = {.lex_state = 481, .external_lex_state = 103}, + [5590] = {.lex_state = 504, .external_lex_state = 96}, + [5591] = {.lex_state = 504, .external_lex_state = 96}, + [5592] = {.lex_state = 504, .external_lex_state = 96}, + [5593] = {.lex_state = 504, .external_lex_state = 96}, + [5594] = {.lex_state = 517, .external_lex_state = 99}, + [5595] = {.lex_state = 310, .external_lex_state = 97}, + [5596] = {.lex_state = 504, .external_lex_state = 96}, + [5597] = {.lex_state = 504, .external_lex_state = 96}, + [5598] = {.lex_state = 504, .external_lex_state = 96}, + [5599] = {.lex_state = 553, .external_lex_state = 93}, + [5600] = {.lex_state = 481, .external_lex_state = 101}, + [5601] = {.lex_state = 504, .external_lex_state = 96}, + [5602] = {.lex_state = 324, .external_lex_state = 72}, + [5603] = {.lex_state = 516, .external_lex_state = 99}, + [5604] = {.lex_state = 493, .external_lex_state = 100}, + [5605] = {.lex_state = 99, .external_lex_state = 90}, + [5606] = {.lex_state = 504, .external_lex_state = 96}, + [5607] = {.lex_state = 504, .external_lex_state = 96}, + [5608] = {.lex_state = 98, .external_lex_state = 93}, + [5609] = {.lex_state = 98, .external_lex_state = 93}, + [5610] = {.lex_state = 481, .external_lex_state = 103}, + [5611] = {.lex_state = 98, .external_lex_state = 90}, + [5612] = {.lex_state = 98, .external_lex_state = 90}, + [5613] = {.lex_state = 98, .external_lex_state = 90}, + [5614] = {.lex_state = 98, .external_lex_state = 90}, + [5615] = {.lex_state = 98, .external_lex_state = 90}, + [5616] = {.lex_state = 98, .external_lex_state = 90}, + [5617] = {.lex_state = 98, .external_lex_state = 90}, + [5618] = {.lex_state = 98, .external_lex_state = 90}, + [5619] = {.lex_state = 99, .external_lex_state = 67}, + [5620] = {.lex_state = 99, .external_lex_state = 67}, + [5621] = {.lex_state = 505, .external_lex_state = 105}, + [5622] = {.lex_state = 516, .external_lex_state = 99}, + [5623] = {.lex_state = 99, .external_lex_state = 93}, + [5624] = {.lex_state = 502, .external_lex_state = 68}, + [5625] = {.lex_state = 516, .external_lex_state = 99}, + [5626] = {.lex_state = 504, .external_lex_state = 101}, + [5627] = {.lex_state = 513, .external_lex_state = 102}, + [5628] = {.lex_state = 99, .external_lex_state = 93}, + [5629] = {.lex_state = 513, .external_lex_state = 102}, + [5630] = {.lex_state = 502, .external_lex_state = 68}, + [5631] = {.lex_state = 502, .external_lex_state = 68}, + [5632] = {.lex_state = 513, .external_lex_state = 102}, + [5633] = {.lex_state = 502, .external_lex_state = 68}, + [5634] = {.lex_state = 516, .external_lex_state = 104}, + [5635] = {.lex_state = 516, .external_lex_state = 104}, + [5636] = {.lex_state = 504, .external_lex_state = 101}, + [5637] = {.lex_state = 502, .external_lex_state = 68}, + [5638] = {.lex_state = 504, .external_lex_state = 101}, + [5639] = {.lex_state = 493, .external_lex_state = 100}, + [5640] = {.lex_state = 516, .external_lex_state = 104}, + [5641] = {.lex_state = 493, .external_lex_state = 100}, + [5642] = {.lex_state = 493, .external_lex_state = 100}, + [5643] = {.lex_state = 504, .external_lex_state = 81}, + [5644] = {.lex_state = 481, .external_lex_state = 101}, + [5645] = {.lex_state = 504, .external_lex_state = 81}, + [5646] = {.lex_state = 516, .external_lex_state = 99}, + [5647] = {.lex_state = 98, .external_lex_state = 93}, + [5648] = {.lex_state = 516, .external_lex_state = 99}, + [5649] = {.lex_state = 493, .external_lex_state = 100}, + [5650] = {.lex_state = 516, .external_lex_state = 99}, + [5651] = {.lex_state = 493, .external_lex_state = 100}, + [5652] = {.lex_state = 516, .external_lex_state = 99}, + [5653] = {.lex_state = 493, .external_lex_state = 100}, + [5654] = {.lex_state = 516, .external_lex_state = 99}, + [5655] = {.lex_state = 516, .external_lex_state = 99}, + [5656] = {.lex_state = 516, .external_lex_state = 99}, + [5657] = {.lex_state = 502, .external_lex_state = 68}, + [5658] = {.lex_state = 504, .external_lex_state = 101}, + [5659] = {.lex_state = 516, .external_lex_state = 99}, + [5660] = {.lex_state = 493, .external_lex_state = 100}, + [5661] = {.lex_state = 516, .external_lex_state = 99}, + [5662] = {.lex_state = 516, .external_lex_state = 99}, + [5663] = {.lex_state = 516, .external_lex_state = 99}, + [5664] = {.lex_state = 517, .external_lex_state = 99}, + [5665] = {.lex_state = 502, .external_lex_state = 68}, + [5666] = {.lex_state = 493, .external_lex_state = 100}, + [5667] = {.lex_state = 481, .external_lex_state = 103}, + [5668] = {.lex_state = 517, .external_lex_state = 99}, + [5669] = {.lex_state = 502, .external_lex_state = 68}, + [5670] = {.lex_state = 516, .external_lex_state = 104}, + [5671] = {.lex_state = 516, .external_lex_state = 104}, + [5672] = {.lex_state = 516, .external_lex_state = 104}, + [5673] = {.lex_state = 502, .external_lex_state = 68}, + [5674] = {.lex_state = 516, .external_lex_state = 104}, + [5675] = {.lex_state = 517, .external_lex_state = 99}, + [5676] = {.lex_state = 99, .external_lex_state = 90}, + [5677] = {.lex_state = 99, .external_lex_state = 90}, + [5678] = {.lex_state = 504, .external_lex_state = 101}, + [5679] = {.lex_state = 502, .external_lex_state = 68}, + [5680] = {.lex_state = 502, .external_lex_state = 68}, + [5681] = {.lex_state = 504, .external_lex_state = 101}, + [5682] = {.lex_state = 502, .external_lex_state = 68}, + [5683] = {.lex_state = 513, .external_lex_state = 104}, + [5684] = {.lex_state = 502, .external_lex_state = 68}, + [5685] = {.lex_state = 502, .external_lex_state = 68}, + [5686] = {.lex_state = 493, .external_lex_state = 100}, + [5687] = {.lex_state = 493, .external_lex_state = 100}, + [5688] = {.lex_state = 493, .external_lex_state = 100}, + [5689] = {.lex_state = 504, .external_lex_state = 101}, + [5690] = {.lex_state = 493, .external_lex_state = 100}, + [5691] = {.lex_state = 502, .external_lex_state = 68}, + [5692] = {.lex_state = 481, .external_lex_state = 103}, + [5693] = {.lex_state = 493, .external_lex_state = 100}, + [5694] = {.lex_state = 502, .external_lex_state = 68}, + [5695] = {.lex_state = 516, .external_lex_state = 104}, + [5696] = {.lex_state = 516, .external_lex_state = 104}, + [5697] = {.lex_state = 481, .external_lex_state = 101}, + [5698] = {.lex_state = 517, .external_lex_state = 99}, + [5699] = {.lex_state = 517, .external_lex_state = 99}, + [5700] = {.lex_state = 516, .external_lex_state = 104}, + [5701] = {.lex_state = 502, .external_lex_state = 68}, + [5702] = {.lex_state = 517, .external_lex_state = 99}, + [5703] = {.lex_state = 481, .external_lex_state = 101}, + [5704] = {.lex_state = 481, .external_lex_state = 101}, + [5705] = {.lex_state = 516, .external_lex_state = 99}, + [5706] = {.lex_state = 517, .external_lex_state = 99}, + [5707] = {.lex_state = 516, .external_lex_state = 104}, + [5708] = {.lex_state = 493, .external_lex_state = 100}, + [5709] = {.lex_state = 502, .external_lex_state = 68}, + [5710] = {.lex_state = 517, .external_lex_state = 99}, + [5711] = {.lex_state = 517, .external_lex_state = 99}, + [5712] = {.lex_state = 481, .external_lex_state = 101}, + [5713] = {.lex_state = 513, .external_lex_state = 102}, + [5714] = {.lex_state = 513, .external_lex_state = 102}, + [5715] = {.lex_state = 97, .external_lex_state = 106}, + [5716] = {.lex_state = 516, .external_lex_state = 99}, + [5717] = {.lex_state = 504, .external_lex_state = 101}, + [5718] = {.lex_state = 516, .external_lex_state = 99}, + [5719] = {.lex_state = 97, .external_lex_state = 106}, + [5720] = {.lex_state = 502, .external_lex_state = 68}, + [5721] = {.lex_state = 493, .external_lex_state = 100}, + [5722] = {.lex_state = 516, .external_lex_state = 99}, + [5723] = {.lex_state = 502, .external_lex_state = 68}, + [5724] = {.lex_state = 516, .external_lex_state = 99}, + [5725] = {.lex_state = 502, .external_lex_state = 68}, + [5726] = {.lex_state = 493, .external_lex_state = 100}, + [5727] = {.lex_state = 99, .external_lex_state = 93}, + [5728] = {.lex_state = 98, .external_lex_state = 93}, + [5729] = {.lex_state = 99, .external_lex_state = 93}, + [5730] = {.lex_state = 502, .external_lex_state = 68}, + [5731] = {.lex_state = 517, .external_lex_state = 99}, + [5732] = {.lex_state = 99, .external_lex_state = 90}, + [5733] = {.lex_state = 99, .external_lex_state = 90}, + [5734] = {.lex_state = 99, .external_lex_state = 90}, + [5735] = {.lex_state = 99, .external_lex_state = 90}, + [5736] = {.lex_state = 99, .external_lex_state = 90}, + [5737] = {.lex_state = 99, .external_lex_state = 90}, + [5738] = {.lex_state = 99, .external_lex_state = 90}, + [5739] = {.lex_state = 99, .external_lex_state = 90}, + [5740] = {.lex_state = 517, .external_lex_state = 99}, + [5741] = {.lex_state = 493, .external_lex_state = 100}, + [5742] = {.lex_state = 493, .external_lex_state = 100}, + [5743] = {.lex_state = 493, .external_lex_state = 100}, + [5744] = {.lex_state = 516, .external_lex_state = 99}, + [5745] = {.lex_state = 504, .external_lex_state = 101}, + [5746] = {.lex_state = 99, .external_lex_state = 93}, + [5747] = {.lex_state = 504, .external_lex_state = 101}, + [5748] = {.lex_state = 99, .external_lex_state = 93}, + [5749] = {.lex_state = 97, .external_lex_state = 106}, + [5750] = {.lex_state = 502, .external_lex_state = 68}, + [5751] = {.lex_state = 98, .external_lex_state = 93}, + [5752] = {.lex_state = 502, .external_lex_state = 68}, + [5753] = {.lex_state = 490, .external_lex_state = 48}, + [5754] = {.lex_state = 517, .external_lex_state = 99}, + [5755] = {.lex_state = 513, .external_lex_state = 102}, + [5756] = {.lex_state = 490, .external_lex_state = 48}, + [5757] = {.lex_state = 490, .external_lex_state = 48}, + [5758] = {.lex_state = 513, .external_lex_state = 102}, + [5759] = {.lex_state = 517, .external_lex_state = 99}, + [5760] = {.lex_state = 513, .external_lex_state = 104}, + [5761] = {.lex_state = 516, .external_lex_state = 104}, + [5762] = {.lex_state = 513, .external_lex_state = 102}, + [5763] = {.lex_state = 517, .external_lex_state = 99}, + [5764] = {.lex_state = 517, .external_lex_state = 99}, + [5765] = {.lex_state = 516, .external_lex_state = 104}, + [5766] = {.lex_state = 516, .external_lex_state = 104}, + [5767] = {.lex_state = 517, .external_lex_state = 99}, + [5768] = {.lex_state = 516, .external_lex_state = 104}, + [5769] = {.lex_state = 517, .external_lex_state = 99}, + [5770] = {.lex_state = 504, .external_lex_state = 101}, + [5771] = {.lex_state = 490, .external_lex_state = 48}, + [5772] = {.lex_state = 517, .external_lex_state = 99}, + [5773] = {.lex_state = 481, .external_lex_state = 101}, + [5774] = {.lex_state = 504, .external_lex_state = 103}, + [5775] = {.lex_state = 490, .external_lex_state = 48}, + [5776] = {.lex_state = 490, .external_lex_state = 48}, + [5777] = {.lex_state = 513, .external_lex_state = 102}, + [5778] = {.lex_state = 513, .external_lex_state = 102}, + [5779] = {.lex_state = 516, .external_lex_state = 104}, + [5780] = {.lex_state = 504, .external_lex_state = 101}, + [5781] = {.lex_state = 490, .external_lex_state = 48}, + [5782] = {.lex_state = 490, .external_lex_state = 48}, + [5783] = {.lex_state = 490, .external_lex_state = 48}, + [5784] = {.lex_state = 490, .external_lex_state = 48}, + [5785] = {.lex_state = 513, .external_lex_state = 102}, + [5786] = {.lex_state = 516, .external_lex_state = 104}, + [5787] = {.lex_state = 516, .external_lex_state = 104}, + [5788] = {.lex_state = 490, .external_lex_state = 48}, + [5789] = {.lex_state = 517, .external_lex_state = 99}, + [5790] = {.lex_state = 504, .external_lex_state = 101}, + [5791] = {.lex_state = 481, .external_lex_state = 103}, + [5792] = {.lex_state = 516, .external_lex_state = 104}, + [5793] = {.lex_state = 490, .external_lex_state = 48}, + [5794] = {.lex_state = 490, .external_lex_state = 48}, + [5795] = {.lex_state = 516, .external_lex_state = 104}, + [5796] = {.lex_state = 490, .external_lex_state = 48}, + [5797] = {.lex_state = 517, .external_lex_state = 99}, + [5798] = {.lex_state = 514, .external_lex_state = 103}, + [5799] = {.lex_state = 517, .external_lex_state = 99}, + [5800] = {.lex_state = 490, .external_lex_state = 48}, + [5801] = {.lex_state = 513, .external_lex_state = 102}, + [5802] = {.lex_state = 490, .external_lex_state = 48}, + [5803] = {.lex_state = 513, .external_lex_state = 102}, + [5804] = {.lex_state = 490, .external_lex_state = 48}, + [5805] = {.lex_state = 490, .external_lex_state = 48}, + [5806] = {.lex_state = 490, .external_lex_state = 48}, + [5807] = {.lex_state = 513, .external_lex_state = 104}, + [5808] = {.lex_state = 490, .external_lex_state = 48}, + [5809] = {.lex_state = 504, .external_lex_state = 101}, + [5810] = {.lex_state = 490, .external_lex_state = 48}, + [5811] = {.lex_state = 490, .external_lex_state = 48}, + [5812] = {.lex_state = 513, .external_lex_state = 102}, + [5813] = {.lex_state = 490, .external_lex_state = 48}, + [5814] = {.lex_state = 517, .external_lex_state = 99}, + [5815] = {.lex_state = 513, .external_lex_state = 104}, + [5816] = {.lex_state = 516, .external_lex_state = 104}, + [5817] = {.lex_state = 513, .external_lex_state = 102}, + [5818] = {.lex_state = 516, .external_lex_state = 104}, + [5819] = {.lex_state = 513, .external_lex_state = 102}, + [5820] = {.lex_state = 490, .external_lex_state = 48}, + [5821] = {.lex_state = 513, .external_lex_state = 102}, + [5822] = {.lex_state = 490, .external_lex_state = 48}, + [5823] = {.lex_state = 490, .external_lex_state = 48}, + [5824] = {.lex_state = 490, .external_lex_state = 48}, + [5825] = {.lex_state = 490, .external_lex_state = 48}, + [5826] = {.lex_state = 517, .external_lex_state = 99}, + [5827] = {.lex_state = 516, .external_lex_state = 104}, + [5828] = {.lex_state = 490, .external_lex_state = 48}, + [5829] = {.lex_state = 490, .external_lex_state = 48}, + [5830] = {.lex_state = 490, .external_lex_state = 48}, + [5831] = {.lex_state = 490, .external_lex_state = 78}, + [5832] = {.lex_state = 513, .external_lex_state = 102}, + [5833] = {.lex_state = 490, .external_lex_state = 78}, + [5834] = {.lex_state = 514, .external_lex_state = 103}, + [5835] = {.lex_state = 514, .external_lex_state = 103}, + [5836] = {.lex_state = 513, .external_lex_state = 102}, + [5837] = {.lex_state = 513, .external_lex_state = 102}, + [5838] = {.lex_state = 513, .external_lex_state = 102}, + [5839] = {.lex_state = 504, .external_lex_state = 103}, + [5840] = {.lex_state = 516, .external_lex_state = 104}, + [5841] = {.lex_state = 490, .external_lex_state = 48}, + [5842] = {.lex_state = 279, .external_lex_state = 72}, + [5843] = {.lex_state = 490, .external_lex_state = 48}, + [5844] = {.lex_state = 517, .external_lex_state = 99}, + [5845] = {.lex_state = 517, .external_lex_state = 99}, + [5846] = {.lex_state = 517, .external_lex_state = 99}, + [5847] = {.lex_state = 97, .external_lex_state = 106}, + [5848] = {.lex_state = 516, .external_lex_state = 104}, + [5849] = {.lex_state = 490, .external_lex_state = 48}, + [5850] = {.lex_state = 513, .external_lex_state = 102}, + [5851] = {.lex_state = 490, .external_lex_state = 48}, + [5852] = {.lex_state = 490, .external_lex_state = 48}, + [5853] = {.lex_state = 490, .external_lex_state = 48}, + [5854] = {.lex_state = 490, .external_lex_state = 48}, + [5855] = {.lex_state = 513, .external_lex_state = 104}, + [5856] = {.lex_state = 490, .external_lex_state = 48}, + [5857] = {.lex_state = 490, .external_lex_state = 48}, + [5858] = {.lex_state = 490, .external_lex_state = 48}, + [5859] = {.lex_state = 490, .external_lex_state = 48}, + [5860] = {.lex_state = 517, .external_lex_state = 99}, + [5861] = {.lex_state = 517, .external_lex_state = 99}, + [5862] = {.lex_state = 490, .external_lex_state = 48}, + [5863] = {.lex_state = 504, .external_lex_state = 103}, + [5864] = {.lex_state = 490, .external_lex_state = 48}, + [5865] = {.lex_state = 517, .external_lex_state = 99}, + [5866] = {.lex_state = 504, .external_lex_state = 101}, + [5867] = {.lex_state = 490, .external_lex_state = 48}, + [5868] = {.lex_state = 490, .external_lex_state = 48}, + [5869] = {.lex_state = 490, .external_lex_state = 48}, + [5870] = {.lex_state = 516, .external_lex_state = 104}, + [5871] = {.lex_state = 513, .external_lex_state = 102}, + [5872] = {.lex_state = 490, .external_lex_state = 48}, + [5873] = {.lex_state = 513, .external_lex_state = 81}, + [5874] = {.lex_state = 516, .external_lex_state = 104}, + [5875] = {.lex_state = 490, .external_lex_state = 48}, + [5876] = {.lex_state = 490, .external_lex_state = 48}, + [5877] = {.lex_state = 513, .external_lex_state = 104}, + [5878] = {.lex_state = 513, .external_lex_state = 104}, + [5879] = {.lex_state = 490, .external_lex_state = 48}, + [5880] = {.lex_state = 504, .external_lex_state = 103}, + [5881] = {.lex_state = 490, .external_lex_state = 48}, + [5882] = {.lex_state = 490, .external_lex_state = 48}, + [5883] = {.lex_state = 513, .external_lex_state = 104}, + [5884] = {.lex_state = 490, .external_lex_state = 48}, + [5885] = {.lex_state = 516, .external_lex_state = 104}, + [5886] = {.lex_state = 514, .external_lex_state = 103}, + [5887] = {.lex_state = 481, .external_lex_state = 103}, + [5888] = {.lex_state = 490, .external_lex_state = 48}, + [5889] = {.lex_state = 513, .external_lex_state = 104}, + [5890] = {.lex_state = 514, .external_lex_state = 103}, + [5891] = {.lex_state = 513, .external_lex_state = 104}, + [5892] = {.lex_state = 513, .external_lex_state = 104}, + [5893] = {.lex_state = 490, .external_lex_state = 48}, + [5894] = {.lex_state = 513, .external_lex_state = 81}, + [5895] = {.lex_state = 516, .external_lex_state = 104}, + [5896] = {.lex_state = 513, .external_lex_state = 104}, + [5897] = {.lex_state = 490, .external_lex_state = 48}, + [5898] = {.lex_state = 516, .external_lex_state = 104}, + [5899] = {.lex_state = 490, .external_lex_state = 48}, + [5900] = {.lex_state = 504, .external_lex_state = 103}, + [5901] = {.lex_state = 481, .external_lex_state = 103}, + [5902] = {.lex_state = 513, .external_lex_state = 102}, + [5903] = {.lex_state = 517, .external_lex_state = 99}, + [5904] = {.lex_state = 490, .external_lex_state = 48}, + [5905] = {.lex_state = 490, .external_lex_state = 48}, + [5906] = {.lex_state = 490, .external_lex_state = 48}, + [5907] = {.lex_state = 490, .external_lex_state = 48}, + [5908] = {.lex_state = 490, .external_lex_state = 48}, + [5909] = {.lex_state = 505, .external_lex_state = 107}, + [5910] = {.lex_state = 490, .external_lex_state = 48}, + [5911] = {.lex_state = 513, .external_lex_state = 104}, + [5912] = {.lex_state = 99, .external_lex_state = 93}, + [5913] = {.lex_state = 99, .external_lex_state = 93}, + [5914] = {.lex_state = 514, .external_lex_state = 103}, + [5915] = {.lex_state = 97, .external_lex_state = 108}, + [5916] = {.lex_state = 513, .external_lex_state = 104}, + [5917] = {.lex_state = 481, .external_lex_state = 101}, + [5918] = {.lex_state = 513, .external_lex_state = 104}, + [5919] = {.lex_state = 99, .external_lex_state = 93}, + [5920] = {.lex_state = 97, .external_lex_state = 108}, + [5921] = {.lex_state = 513, .external_lex_state = 104}, + [5922] = {.lex_state = 100, .external_lex_state = 109}, + [5923] = {.lex_state = 513, .external_lex_state = 104}, + [5924] = {.lex_state = 279, .external_lex_state = 72}, + [5925] = {.lex_state = 97, .external_lex_state = 108}, + [5926] = {.lex_state = 513, .external_lex_state = 104}, + [5927] = {.lex_state = 513, .external_lex_state = 103}, + [5928] = {.lex_state = 513, .external_lex_state = 104}, + [5929] = {.lex_state = 97, .external_lex_state = 108}, + [5930] = {.lex_state = 513, .external_lex_state = 103}, + [5931] = {.lex_state = 97, .external_lex_state = 106}, + [5932] = {.lex_state = 490, .external_lex_state = 78}, + [5933] = {.lex_state = 504, .external_lex_state = 101}, + [5934] = {.lex_state = 513, .external_lex_state = 104}, + [5935] = {.lex_state = 97, .external_lex_state = 108}, + [5936] = {.lex_state = 513, .external_lex_state = 104}, + [5937] = {.lex_state = 481, .external_lex_state = 101}, + [5938] = {.lex_state = 513, .external_lex_state = 104}, + [5939] = {.lex_state = 513, .external_lex_state = 104}, + [5940] = {.lex_state = 513, .external_lex_state = 104}, + [5941] = {.lex_state = 97, .external_lex_state = 108}, + [5942] = {.lex_state = 513, .external_lex_state = 104}, + [5943] = {.lex_state = 513, .external_lex_state = 104}, + [5944] = {.lex_state = 97, .external_lex_state = 108}, + [5945] = {.lex_state = 513, .external_lex_state = 103}, + [5946] = {.lex_state = 97, .external_lex_state = 106}, + [5947] = {.lex_state = 97, .external_lex_state = 108}, + [5948] = {.lex_state = 481, .external_lex_state = 101}, + [5949] = {.lex_state = 97, .external_lex_state = 108}, + [5950] = {.lex_state = 99, .external_lex_state = 93}, + [5951] = {.lex_state = 97, .external_lex_state = 106}, + [5952] = {.lex_state = 513, .external_lex_state = 103}, + [5953] = {.lex_state = 513, .external_lex_state = 104}, + [5954] = {.lex_state = 513, .external_lex_state = 104}, + [5955] = {.lex_state = 513, .external_lex_state = 104}, + [5956] = {.lex_state = 513, .external_lex_state = 81}, + [5957] = {.lex_state = 513, .external_lex_state = 104}, + [5958] = {.lex_state = 481, .external_lex_state = 101}, + [5959] = {.lex_state = 97, .external_lex_state = 108}, + [5960] = {.lex_state = 513, .external_lex_state = 104}, + [5961] = {.lex_state = 513, .external_lex_state = 103}, + [5962] = {.lex_state = 504, .external_lex_state = 101}, + [5963] = {.lex_state = 504, .external_lex_state = 103}, + [5964] = {.lex_state = 504, .external_lex_state = 103}, + [5965] = {.lex_state = 286, .external_lex_state = 110}, + [5966] = {.lex_state = 481, .external_lex_state = 103}, + [5967] = {.lex_state = 286, .external_lex_state = 110}, + [5968] = {.lex_state = 481, .external_lex_state = 103}, + [5969] = {.lex_state = 504, .external_lex_state = 81}, + [5970] = {.lex_state = 504, .external_lex_state = 101}, + [5971] = {.lex_state = 504, .external_lex_state = 103}, + [5972] = {.lex_state = 481, .external_lex_state = 76}, + [5973] = {.lex_state = 100, .external_lex_state = 109}, + [5974] = {.lex_state = 100, .external_lex_state = 109}, + [5975] = {.lex_state = 504, .external_lex_state = 103}, + [5976] = {.lex_state = 504, .external_lex_state = 103}, + [5977] = {.lex_state = 481, .external_lex_state = 103}, + [5978] = {.lex_state = 504, .external_lex_state = 103}, + [5979] = {.lex_state = 504, .external_lex_state = 103}, + [5980] = {.lex_state = 100, .external_lex_state = 109}, + [5981] = {.lex_state = 100, .external_lex_state = 109}, + [5982] = {.lex_state = 481, .external_lex_state = 103}, + [5983] = {.lex_state = 481, .external_lex_state = 103}, + [5984] = {.lex_state = 481, .external_lex_state = 103}, + [5985] = {.lex_state = 504, .external_lex_state = 103}, + [5986] = {.lex_state = 504, .external_lex_state = 103}, + [5987] = {.lex_state = 97, .external_lex_state = 108}, + [5988] = {.lex_state = 481, .external_lex_state = 103}, + [5989] = {.lex_state = 481, .external_lex_state = 103}, + [5990] = {.lex_state = 481, .external_lex_state = 103}, + [5991] = {.lex_state = 504, .external_lex_state = 103}, + [5992] = {.lex_state = 504, .external_lex_state = 103}, + [5993] = {.lex_state = 481, .external_lex_state = 103}, + [5994] = {.lex_state = 504, .external_lex_state = 101}, + [5995] = {.lex_state = 481, .external_lex_state = 103}, + [5996] = {.lex_state = 481, .external_lex_state = 103}, + [5997] = {.lex_state = 504, .external_lex_state = 101}, + [5998] = {.lex_state = 100, .external_lex_state = 109}, + [5999] = {.lex_state = 100, .external_lex_state = 109}, + [6000] = {.lex_state = 100, .external_lex_state = 109}, + [6001] = {.lex_state = 504, .external_lex_state = 103}, + [6002] = {.lex_state = 481, .external_lex_state = 103}, + [6003] = {.lex_state = 504, .external_lex_state = 101}, + [6004] = {.lex_state = 481, .external_lex_state = 103}, + [6005] = {.lex_state = 504, .external_lex_state = 101}, + [6006] = {.lex_state = 481, .external_lex_state = 103}, + [6007] = {.lex_state = 504, .external_lex_state = 101}, + [6008] = {.lex_state = 504, .external_lex_state = 101}, + [6009] = {.lex_state = 504, .external_lex_state = 101}, + [6010] = {.lex_state = 504, .external_lex_state = 101}, + [6011] = {.lex_state = 504, .external_lex_state = 101}, + [6012] = {.lex_state = 504, .external_lex_state = 101}, + [6013] = {.lex_state = 504, .external_lex_state = 101}, + [6014] = {.lex_state = 481, .external_lex_state = 103}, + [6015] = {.lex_state = 504, .external_lex_state = 101}, + [6016] = {.lex_state = 504, .external_lex_state = 101}, + [6017] = {.lex_state = 504, .external_lex_state = 101}, + [6018] = {.lex_state = 504, .external_lex_state = 101}, + [6019] = {.lex_state = 504, .external_lex_state = 101}, + [6020] = {.lex_state = 504, .external_lex_state = 101}, + [6021] = {.lex_state = 504, .external_lex_state = 101}, + [6022] = {.lex_state = 504, .external_lex_state = 101}, + [6023] = {.lex_state = 504, .external_lex_state = 101}, + [6024] = {.lex_state = 504, .external_lex_state = 101}, + [6025] = {.lex_state = 504, .external_lex_state = 103}, + [6026] = {.lex_state = 513, .external_lex_state = 103}, + [6027] = {.lex_state = 100, .external_lex_state = 109}, + [6028] = {.lex_state = 100, .external_lex_state = 109}, + [6029] = {.lex_state = 504, .external_lex_state = 101}, + [6030] = {.lex_state = 481, .external_lex_state = 103}, + [6031] = {.lex_state = 100, .external_lex_state = 109}, + [6032] = {.lex_state = 100, .external_lex_state = 109}, + [6033] = {.lex_state = 504, .external_lex_state = 81}, + [6034] = {.lex_state = 504, .external_lex_state = 101}, + [6035] = {.lex_state = 504, .external_lex_state = 81}, + [6036] = {.lex_state = 481, .external_lex_state = 103}, + [6037] = {.lex_state = 504, .external_lex_state = 103}, + [6038] = {.lex_state = 504, .external_lex_state = 103}, + [6039] = {.lex_state = 504, .external_lex_state = 103}, + [6040] = {.lex_state = 504, .external_lex_state = 103}, + [6041] = {.lex_state = 504, .external_lex_state = 103}, + [6042] = {.lex_state = 504, .external_lex_state = 103}, + [6043] = {.lex_state = 504, .external_lex_state = 103}, + [6044] = {.lex_state = 100, .external_lex_state = 108}, + [6045] = {.lex_state = 504, .external_lex_state = 103}, + [6046] = {.lex_state = 504, .external_lex_state = 103}, + [6047] = {.lex_state = 100, .external_lex_state = 109}, + [6048] = {.lex_state = 504, .external_lex_state = 103}, + [6049] = {.lex_state = 100, .external_lex_state = 108}, + [6050] = {.lex_state = 100, .external_lex_state = 109}, + [6051] = {.lex_state = 100, .external_lex_state = 109}, + [6052] = {.lex_state = 504, .external_lex_state = 103}, + [6053] = {.lex_state = 504, .external_lex_state = 103}, + [6054] = {.lex_state = 504, .external_lex_state = 103}, + [6055] = {.lex_state = 100, .external_lex_state = 109}, + [6056] = {.lex_state = 504, .external_lex_state = 103}, + [6057] = {.lex_state = 100, .external_lex_state = 109}, + [6058] = {.lex_state = 100, .external_lex_state = 109}, + [6059] = {.lex_state = 100, .external_lex_state = 109}, + [6060] = {.lex_state = 504, .external_lex_state = 103}, + [6061] = {.lex_state = 504, .external_lex_state = 103}, + [6062] = {.lex_state = 100, .external_lex_state = 109}, + [6063] = {.lex_state = 504, .external_lex_state = 103}, + [6064] = {.lex_state = 504, .external_lex_state = 103}, + [6065] = {.lex_state = 504, .external_lex_state = 103}, + [6066] = {.lex_state = 504, .external_lex_state = 103}, + [6067] = {.lex_state = 504, .external_lex_state = 103}, + [6068] = {.lex_state = 504, .external_lex_state = 103}, + [6069] = {.lex_state = 504, .external_lex_state = 103}, + [6070] = {.lex_state = 504, .external_lex_state = 103}, + [6071] = {.lex_state = 504, .external_lex_state = 103}, + [6072] = {.lex_state = 504, .external_lex_state = 103}, + [6073] = {.lex_state = 504, .external_lex_state = 103}, + [6074] = {.lex_state = 100, .external_lex_state = 109}, + [6075] = {.lex_state = 504, .external_lex_state = 103}, + [6076] = {.lex_state = 504, .external_lex_state = 103}, + [6077] = {.lex_state = 100, .external_lex_state = 109}, + [6078] = {.lex_state = 504, .external_lex_state = 103}, + [6079] = {.lex_state = 504, .external_lex_state = 103}, + [6080] = {.lex_state = 504, .external_lex_state = 103}, + [6081] = {.lex_state = 100, .external_lex_state = 108}, + [6082] = {.lex_state = 504, .external_lex_state = 103}, + [6083] = {.lex_state = 100, .external_lex_state = 109}, + [6084] = {.lex_state = 504, .external_lex_state = 103}, + [6085] = {.lex_state = 504, .external_lex_state = 103}, + [6086] = {.lex_state = 100, .external_lex_state = 108}, + [6087] = {.lex_state = 504, .external_lex_state = 103}, + [6088] = {.lex_state = 100, .external_lex_state = 109}, + [6089] = {.lex_state = 504, .external_lex_state = 103}, + [6090] = {.lex_state = 504, .external_lex_state = 103}, + [6091] = {.lex_state = 100, .external_lex_state = 109}, + [6092] = {.lex_state = 504, .external_lex_state = 103}, + [6093] = {.lex_state = 504, .external_lex_state = 103}, + [6094] = {.lex_state = 504, .external_lex_state = 103}, + [6095] = {.lex_state = 504, .external_lex_state = 103}, + [6096] = {.lex_state = 504, .external_lex_state = 103}, + [6097] = {.lex_state = 100, .external_lex_state = 109}, + [6098] = {.lex_state = 504, .external_lex_state = 103}, + [6099] = {.lex_state = 504, .external_lex_state = 103}, + [6100] = {.lex_state = 504, .external_lex_state = 103}, + [6101] = {.lex_state = 100, .external_lex_state = 109}, + [6102] = {.lex_state = 504, .external_lex_state = 103}, + [6103] = {.lex_state = 100, .external_lex_state = 109}, + [6104] = {.lex_state = 100, .external_lex_state = 109}, + [6105] = {.lex_state = 504, .external_lex_state = 103}, + [6106] = {.lex_state = 100, .external_lex_state = 109}, + [6107] = {.lex_state = 504, .external_lex_state = 103}, + [6108] = {.lex_state = 504, .external_lex_state = 103}, + [6109] = {.lex_state = 504, .external_lex_state = 103}, + [6110] = {.lex_state = 504, .external_lex_state = 103}, + [6111] = {.lex_state = 100, .external_lex_state = 108}, + [6112] = {.lex_state = 504, .external_lex_state = 103}, + [6113] = {.lex_state = 504, .external_lex_state = 103}, + [6114] = {.lex_state = 504, .external_lex_state = 103}, + [6115] = {.lex_state = 504, .external_lex_state = 103}, + [6116] = {.lex_state = 504, .external_lex_state = 103}, + [6117] = {.lex_state = 100, .external_lex_state = 109}, + [6118] = {.lex_state = 100, .external_lex_state = 108}, + [6119] = {.lex_state = 97, .external_lex_state = 108}, + [6120] = {.lex_state = 97, .external_lex_state = 108}, + [6121] = {.lex_state = 478, .external_lex_state = 111}, + [6122] = {.lex_state = 478, .external_lex_state = 111}, + [6123] = {.lex_state = 97, .external_lex_state = 108}, + [6124] = {.lex_state = 97, .external_lex_state = 108}, + [6125] = {.lex_state = 485, .external_lex_state = 111}, + [6126] = {.lex_state = 485, .external_lex_state = 111}, + [6127] = {.lex_state = 510}, + [6128] = {.lex_state = 510}, + [6129] = {.lex_state = 510}, + [6130] = {.lex_state = 510}, + [6131] = {.lex_state = 510}, + [6132] = {.lex_state = 510}, + [6133] = {.lex_state = 510}, + [6134] = {.lex_state = 510}, + [6135] = {.lex_state = 510}, + [6136] = {.lex_state = 510}, + [6137] = {.lex_state = 510}, + [6138] = {.lex_state = 510}, + [6139] = {.lex_state = 510}, + [6140] = {.lex_state = 510}, + [6141] = {.lex_state = 510}, + [6142] = {.lex_state = 510}, + [6143] = {.lex_state = 510}, + [6144] = {.lex_state = 510}, + [6145] = {.lex_state = 510}, + [6146] = {.lex_state = 510}, + [6147] = {.lex_state = 510}, + [6148] = {.lex_state = 510}, + [6149] = {.lex_state = 510}, + [6150] = {.lex_state = 510}, + [6151] = {.lex_state = 510}, + [6152] = {.lex_state = 510}, + [6153] = {.lex_state = 510}, + [6154] = {.lex_state = 510}, + [6155] = {.lex_state = 510}, + [6156] = {.lex_state = 510}, + [6157] = {.lex_state = 510}, + [6158] = {.lex_state = 510}, + [6159] = {.lex_state = 510}, + [6160] = {.lex_state = 510}, + [6161] = {.lex_state = 510}, + [6162] = {.lex_state = 510}, + [6163] = {.lex_state = 510}, + [6164] = {.lex_state = 510}, + [6165] = {.lex_state = 510}, + [6166] = {.lex_state = 510}, + [6167] = {.lex_state = 510}, + [6168] = {.lex_state = 510}, + [6169] = {.lex_state = 510}, + [6170] = {.lex_state = 510}, + [6171] = {.lex_state = 510}, + [6172] = {.lex_state = 510}, + [6173] = {.lex_state = 510}, + [6174] = {.lex_state = 510}, + [6175] = {.lex_state = 510}, + [6176] = {.lex_state = 510}, + [6177] = {.lex_state = 510}, + [6178] = {.lex_state = 510}, + [6179] = {.lex_state = 510}, + [6180] = {.lex_state = 510}, + [6181] = {.lex_state = 510}, + [6182] = {.lex_state = 510}, + [6183] = {.lex_state = 510}, + [6184] = {.lex_state = 510}, + [6185] = {.lex_state = 510}, + [6186] = {.lex_state = 510}, + [6187] = {.lex_state = 510}, + [6188] = {.lex_state = 510}, + [6189] = {.lex_state = 510}, + [6190] = {.lex_state = 510}, + [6191] = {.lex_state = 510}, + [6192] = {.lex_state = 510}, + [6193] = {.lex_state = 510}, + [6194] = {.lex_state = 510}, + [6195] = {.lex_state = 510}, + [6196] = {.lex_state = 510}, + [6197] = {.lex_state = 510}, + [6198] = {.lex_state = 510}, + [6199] = {.lex_state = 510}, + [6200] = {.lex_state = 510}, + [6201] = {.lex_state = 510}, + [6202] = {.lex_state = 510}, + [6203] = {.lex_state = 510}, + [6204] = {.lex_state = 510}, + [6205] = {.lex_state = 510}, + [6206] = {.lex_state = 510}, + [6207] = {.lex_state = 510}, + [6208] = {.lex_state = 510}, + [6209] = {.lex_state = 510}, + [6210] = {.lex_state = 510}, + [6211] = {.lex_state = 510}, + [6212] = {.lex_state = 510}, + [6213] = {.lex_state = 510}, + [6214] = {.lex_state = 510}, + [6215] = {.lex_state = 510}, + [6216] = {.lex_state = 510}, + [6217] = {.lex_state = 510}, + [6218] = {.lex_state = 510}, + [6219] = {.lex_state = 510}, + [6220] = {.lex_state = 510}, + [6221] = {.lex_state = 510}, + [6222] = {.lex_state = 510}, + [6223] = {.lex_state = 510}, + [6224] = {.lex_state = 510}, + [6225] = {.lex_state = 510}, + [6226] = {.lex_state = 510}, + [6227] = {.lex_state = 510}, + [6228] = {.lex_state = 510}, + [6229] = {.lex_state = 510}, + [6230] = {.lex_state = 510}, + [6231] = {.lex_state = 510}, + [6232] = {.lex_state = 510}, + [6233] = {.lex_state = 510}, + [6234] = {.lex_state = 510}, + [6235] = {.lex_state = 510}, + [6236] = {.lex_state = 510}, + [6237] = {.lex_state = 510}, + [6238] = {.lex_state = 510}, + [6239] = {.lex_state = 510}, + [6240] = {.lex_state = 510}, + [6241] = {.lex_state = 510}, + [6242] = {.lex_state = 510}, + [6243] = {.lex_state = 510}, + [6244] = {.lex_state = 510}, + [6245] = {.lex_state = 510}, + [6246] = {.lex_state = 510}, + [6247] = {.lex_state = 510}, + [6248] = {.lex_state = 510}, + [6249] = {.lex_state = 510}, + [6250] = {.lex_state = 510}, + [6251] = {.lex_state = 510}, + [6252] = {.lex_state = 510}, + [6253] = {.lex_state = 510}, + [6254] = {.lex_state = 510}, + [6255] = {.lex_state = 510}, + [6256] = {.lex_state = 510}, + [6257] = {.lex_state = 510}, + [6258] = {.lex_state = 510}, + [6259] = {.lex_state = 510}, + [6260] = {.lex_state = 510}, + [6261] = {.lex_state = 510}, + [6262] = {.lex_state = 510}, + [6263] = {.lex_state = 510}, + [6264] = {.lex_state = 510}, + [6265] = {.lex_state = 510}, + [6266] = {.lex_state = 510}, + [6267] = {.lex_state = 510}, + [6268] = {.lex_state = 510}, + [6269] = {.lex_state = 510}, + [6270] = {.lex_state = 510}, + [6271] = {.lex_state = 510}, + [6272] = {.lex_state = 510}, + [6273] = {.lex_state = 510}, + [6274] = {.lex_state = 510}, + [6275] = {.lex_state = 510}, + [6276] = {.lex_state = 510}, + [6277] = {.lex_state = 510}, + [6278] = {.lex_state = 510}, + [6279] = {.lex_state = 510}, + [6280] = {.lex_state = 510}, + [6281] = {.lex_state = 510}, + [6282] = {.lex_state = 510}, + [6283] = {.lex_state = 510}, + [6284] = {.lex_state = 510}, + [6285] = {.lex_state = 510}, + [6286] = {.lex_state = 510}, + [6287] = {.lex_state = 510}, + [6288] = {.lex_state = 510}, + [6289] = {.lex_state = 510}, + [6290] = {.lex_state = 510}, + [6291] = {.lex_state = 510}, + [6292] = {.lex_state = 510}, + [6293] = {.lex_state = 510}, + [6294] = {.lex_state = 510}, + [6295] = {.lex_state = 510}, + [6296] = {.lex_state = 479, .external_lex_state = 111}, + [6297] = {.lex_state = 479, .external_lex_state = 111}, + [6298] = {.lex_state = 480, .external_lex_state = 111}, + [6299] = {.lex_state = 479, .external_lex_state = 111}, + [6300] = {.lex_state = 481, .external_lex_state = 112}, + [6301] = {.lex_state = 481, .external_lex_state = 112}, + [6302] = {.lex_state = 479, .external_lex_state = 111}, + [6303] = {.lex_state = 480, .external_lex_state = 111}, + [6304] = {.lex_state = 479, .external_lex_state = 111}, + [6305] = {.lex_state = 481, .external_lex_state = 112}, + [6306] = {.lex_state = 479, .external_lex_state = 111}, + [6307] = {.lex_state = 479, .external_lex_state = 111}, + [6308] = {.lex_state = 480, .external_lex_state = 111}, + [6309] = {.lex_state = 479, .external_lex_state = 111}, + [6310] = {.lex_state = 480, .external_lex_state = 111}, + [6311] = {.lex_state = 479, .external_lex_state = 111}, + [6312] = {.lex_state = 480, .external_lex_state = 111}, + [6313] = {.lex_state = 479, .external_lex_state = 111}, + [6314] = {.lex_state = 479, .external_lex_state = 111}, + [6315] = {.lex_state = 479, .external_lex_state = 111}, + [6316] = {.lex_state = 479, .external_lex_state = 111}, + [6317] = {.lex_state = 480, .external_lex_state = 111}, + [6318] = {.lex_state = 479, .external_lex_state = 111}, + [6319] = {.lex_state = 480, .external_lex_state = 111}, + [6320] = {.lex_state = 479, .external_lex_state = 111}, + [6321] = {.lex_state = 480, .external_lex_state = 111}, + [6322] = {.lex_state = 479, .external_lex_state = 111}, + [6323] = {.lex_state = 479, .external_lex_state = 111}, + [6324] = {.lex_state = 481, .external_lex_state = 112}, + [6325] = {.lex_state = 480, .external_lex_state = 111}, + [6326] = {.lex_state = 479, .external_lex_state = 111}, + [6327] = {.lex_state = 479, .external_lex_state = 111}, + [6328] = {.lex_state = 480, .external_lex_state = 111}, + [6329] = {.lex_state = 480, .external_lex_state = 111}, + [6330] = {.lex_state = 480, .external_lex_state = 111}, + [6331] = {.lex_state = 479, .external_lex_state = 111}, + [6332] = {.lex_state = 479, .external_lex_state = 111}, + [6333] = {.lex_state = 479, .external_lex_state = 111}, + [6334] = {.lex_state = 479, .external_lex_state = 111}, + [6335] = {.lex_state = 479, .external_lex_state = 111}, + [6336] = {.lex_state = 480, .external_lex_state = 111}, + [6337] = {.lex_state = 479, .external_lex_state = 111}, + [6338] = {.lex_state = 479, .external_lex_state = 111}, + [6339] = {.lex_state = 479, .external_lex_state = 111}, + [6340] = {.lex_state = 480, .external_lex_state = 111}, + [6341] = {.lex_state = 479, .external_lex_state = 111}, + [6342] = {.lex_state = 480, .external_lex_state = 111}, + [6343] = {.lex_state = 479, .external_lex_state = 111}, + [6344] = {.lex_state = 479, .external_lex_state = 111}, + [6345] = {.lex_state = 479, .external_lex_state = 111}, + [6346] = {.lex_state = 479, .external_lex_state = 111}, + [6347] = {.lex_state = 479, .external_lex_state = 111}, + [6348] = {.lex_state = 479, .external_lex_state = 111}, + [6349] = {.lex_state = 480, .external_lex_state = 111}, + [6350] = {.lex_state = 479, .external_lex_state = 111}, + [6351] = {.lex_state = 479, .external_lex_state = 111}, + [6352] = {.lex_state = 479, .external_lex_state = 111}, + [6353] = {.lex_state = 479, .external_lex_state = 111}, + [6354] = {.lex_state = 479, .external_lex_state = 111}, + [6355] = {.lex_state = 479, .external_lex_state = 111}, + [6356] = {.lex_state = 479, .external_lex_state = 111}, + [6357] = {.lex_state = 479, .external_lex_state = 111}, + [6358] = {.lex_state = 479, .external_lex_state = 111}, + [6359] = {.lex_state = 480, .external_lex_state = 111}, + [6360] = {.lex_state = 480, .external_lex_state = 111}, + [6361] = {.lex_state = 479, .external_lex_state = 111}, + [6362] = {.lex_state = 479, .external_lex_state = 111}, + [6363] = {.lex_state = 481, .external_lex_state = 112}, + [6364] = {.lex_state = 479, .external_lex_state = 111}, + [6365] = {.lex_state = 479, .external_lex_state = 111}, + [6366] = {.lex_state = 479, .external_lex_state = 111}, + [6367] = {.lex_state = 480, .external_lex_state = 111}, + [6368] = {.lex_state = 479, .external_lex_state = 111}, + [6369] = {.lex_state = 479, .external_lex_state = 111}, + [6370] = {.lex_state = 479, .external_lex_state = 111}, + [6371] = {.lex_state = 480, .external_lex_state = 111}, + [6372] = {.lex_state = 479, .external_lex_state = 111}, + [6373] = {.lex_state = 480, .external_lex_state = 111}, + [6374] = {.lex_state = 480, .external_lex_state = 111}, + [6375] = {.lex_state = 479, .external_lex_state = 111}, + [6376] = {.lex_state = 479, .external_lex_state = 111}, + [6377] = {.lex_state = 479, .external_lex_state = 111}, + [6378] = {.lex_state = 479, .external_lex_state = 111}, + [6379] = {.lex_state = 479, .external_lex_state = 111}, + [6380] = {.lex_state = 481, .external_lex_state = 112}, + [6381] = {.lex_state = 480, .external_lex_state = 111}, + [6382] = {.lex_state = 479, .external_lex_state = 111}, + [6383] = {.lex_state = 479, .external_lex_state = 111}, + [6384] = {.lex_state = 479, .external_lex_state = 111}, + [6385] = {.lex_state = 479, .external_lex_state = 111}, + [6386] = {.lex_state = 479, .external_lex_state = 111}, + [6387] = {.lex_state = 480, .external_lex_state = 111}, + [6388] = {.lex_state = 479, .external_lex_state = 111}, + [6389] = {.lex_state = 480, .external_lex_state = 111}, + [6390] = {.lex_state = 479, .external_lex_state = 111}, + [6391] = {.lex_state = 479, .external_lex_state = 111}, + [6392] = {.lex_state = 479, .external_lex_state = 111}, + [6393] = {.lex_state = 479, .external_lex_state = 111}, + [6394] = {.lex_state = 479, .external_lex_state = 111}, + [6395] = {.lex_state = 480, .external_lex_state = 111}, + [6396] = {.lex_state = 480, .external_lex_state = 111}, + [6397] = {.lex_state = 479, .external_lex_state = 111}, + [6398] = {.lex_state = 480, .external_lex_state = 111}, + [6399] = {.lex_state = 479, .external_lex_state = 111}, + [6400] = {.lex_state = 480, .external_lex_state = 111}, + [6401] = {.lex_state = 479, .external_lex_state = 111}, + [6402] = {.lex_state = 480, .external_lex_state = 111}, + [6403] = {.lex_state = 479, .external_lex_state = 111}, + [6404] = {.lex_state = 479, .external_lex_state = 111}, + [6405] = {.lex_state = 479, .external_lex_state = 111}, + [6406] = {.lex_state = 479, .external_lex_state = 111}, + [6407] = {.lex_state = 479, .external_lex_state = 111}, + [6408] = {.lex_state = 479, .external_lex_state = 111}, + [6409] = {.lex_state = 481, .external_lex_state = 112}, + [6410] = {.lex_state = 480, .external_lex_state = 111}, + [6411] = {.lex_state = 479, .external_lex_state = 111}, + [6412] = {.lex_state = 480, .external_lex_state = 111}, + [6413] = {.lex_state = 479, .external_lex_state = 111}, + [6414] = {.lex_state = 479, .external_lex_state = 111}, + [6415] = {.lex_state = 479, .external_lex_state = 111}, + [6416] = {.lex_state = 479, .external_lex_state = 111}, + [6417] = {.lex_state = 479, .external_lex_state = 111}, + [6418] = {.lex_state = 479, .external_lex_state = 111}, + [6419] = {.lex_state = 479, .external_lex_state = 111}, + [6420] = {.lex_state = 479, .external_lex_state = 111}, + [6421] = {.lex_state = 480, .external_lex_state = 111}, + [6422] = {.lex_state = 479, .external_lex_state = 111}, + [6423] = {.lex_state = 480, .external_lex_state = 111}, + [6424] = {.lex_state = 479, .external_lex_state = 111}, + [6425] = {.lex_state = 479, .external_lex_state = 111}, + [6426] = {.lex_state = 479, .external_lex_state = 111}, + [6427] = {.lex_state = 479, .external_lex_state = 111}, + [6428] = {.lex_state = 479, .external_lex_state = 111}, + [6429] = {.lex_state = 480, .external_lex_state = 111}, + [6430] = {.lex_state = 479, .external_lex_state = 111}, + [6431] = {.lex_state = 480, .external_lex_state = 111}, + [6432] = {.lex_state = 479, .external_lex_state = 111}, + [6433] = {.lex_state = 480, .external_lex_state = 111}, + [6434] = {.lex_state = 479, .external_lex_state = 111}, + [6435] = {.lex_state = 480, .external_lex_state = 111}, + [6436] = {.lex_state = 479, .external_lex_state = 111}, + [6437] = {.lex_state = 479, .external_lex_state = 111}, + [6438] = {.lex_state = 479, .external_lex_state = 111}, + [6439] = {.lex_state = 479, .external_lex_state = 111}, + [6440] = {.lex_state = 479, .external_lex_state = 111}, + [6441] = {.lex_state = 479, .external_lex_state = 111}, + [6442] = {.lex_state = 479, .external_lex_state = 111}, + [6443] = {.lex_state = 480, .external_lex_state = 111}, + [6444] = {.lex_state = 479, .external_lex_state = 111}, + [6445] = {.lex_state = 480, .external_lex_state = 111}, + [6446] = {.lex_state = 480, .external_lex_state = 111}, + [6447] = {.lex_state = 479, .external_lex_state = 111}, + [6448] = {.lex_state = 479, .external_lex_state = 111}, + [6449] = {.lex_state = 479, .external_lex_state = 111}, + [6450] = {.lex_state = 479, .external_lex_state = 111}, + [6451] = {.lex_state = 480, .external_lex_state = 111}, + [6452] = {.lex_state = 479, .external_lex_state = 111}, + [6453] = {.lex_state = 479, .external_lex_state = 111}, + [6454] = {.lex_state = 479, .external_lex_state = 111}, + [6455] = {.lex_state = 480, .external_lex_state = 111}, + [6456] = {.lex_state = 479, .external_lex_state = 111}, + [6457] = {.lex_state = 479, .external_lex_state = 111}, + [6458] = {.lex_state = 479, .external_lex_state = 111}, + [6459] = {.lex_state = 480, .external_lex_state = 111}, + [6460] = {.lex_state = 479, .external_lex_state = 111}, + [6461] = {.lex_state = 479, .external_lex_state = 111}, + [6462] = {.lex_state = 479, .external_lex_state = 111}, + [6463] = {.lex_state = 479, .external_lex_state = 111}, + [6464] = {.lex_state = 480, .external_lex_state = 111}, + [6465] = {.lex_state = 479, .external_lex_state = 111}, + [6466] = {.lex_state = 479, .external_lex_state = 111}, + [6467] = {.lex_state = 479, .external_lex_state = 111}, + [6468] = {.lex_state = 479, .external_lex_state = 111}, + [6469] = {.lex_state = 479, .external_lex_state = 111}, + [6470] = {.lex_state = 480, .external_lex_state = 111}, + [6471] = {.lex_state = 480, .external_lex_state = 111}, + [6472] = {.lex_state = 480, .external_lex_state = 111}, + [6473] = {.lex_state = 480, .external_lex_state = 111}, + [6474] = {.lex_state = 479, .external_lex_state = 111}, + [6475] = {.lex_state = 479, .external_lex_state = 111}, + [6476] = {.lex_state = 479, .external_lex_state = 111}, + [6477] = {.lex_state = 480, .external_lex_state = 111}, + [6478] = {.lex_state = 479, .external_lex_state = 111}, + [6479] = {.lex_state = 479, .external_lex_state = 111}, + [6480] = {.lex_state = 480, .external_lex_state = 111}, + [6481] = {.lex_state = 479, .external_lex_state = 111}, + [6482] = {.lex_state = 480, .external_lex_state = 111}, + [6483] = {.lex_state = 480, .external_lex_state = 111}, + [6484] = {.lex_state = 479, .external_lex_state = 111}, + [6485] = {.lex_state = 479, .external_lex_state = 111}, + [6486] = {.lex_state = 479, .external_lex_state = 111}, + [6487] = {.lex_state = 480, .external_lex_state = 111}, + [6488] = {.lex_state = 479, .external_lex_state = 111}, + [6489] = {.lex_state = 479, .external_lex_state = 111}, + [6490] = {.lex_state = 479, .external_lex_state = 111}, + [6491] = {.lex_state = 479, .external_lex_state = 111}, + [6492] = {.lex_state = 480, .external_lex_state = 111}, + [6493] = {.lex_state = 479, .external_lex_state = 111}, + [6494] = {.lex_state = 479, .external_lex_state = 111}, + [6495] = {.lex_state = 479, .external_lex_state = 111}, + [6496] = {.lex_state = 479, .external_lex_state = 111}, + [6497] = {.lex_state = 480, .external_lex_state = 111}, + [6498] = {.lex_state = 479, .external_lex_state = 111}, + [6499] = {.lex_state = 480, .external_lex_state = 111}, + [6500] = {.lex_state = 479, .external_lex_state = 111}, + [6501] = {.lex_state = 479, .external_lex_state = 111}, + [6502] = {.lex_state = 480, .external_lex_state = 111}, + [6503] = {.lex_state = 479, .external_lex_state = 111}, + [6504] = {.lex_state = 479, .external_lex_state = 111}, + [6505] = {.lex_state = 480, .external_lex_state = 111}, + [6506] = {.lex_state = 481, .external_lex_state = 112}, + [6507] = {.lex_state = 479, .external_lex_state = 111}, + [6508] = {.lex_state = 479, .external_lex_state = 111}, + [6509] = {.lex_state = 480, .external_lex_state = 111}, + [6510] = {.lex_state = 479, .external_lex_state = 111}, + [6511] = {.lex_state = 479, .external_lex_state = 111}, + [6512] = {.lex_state = 479, .external_lex_state = 111}, + [6513] = {.lex_state = 480, .external_lex_state = 111}, + [6514] = {.lex_state = 479, .external_lex_state = 111}, + [6515] = {.lex_state = 479, .external_lex_state = 111}, + [6516] = {.lex_state = 479, .external_lex_state = 111}, + [6517] = {.lex_state = 479, .external_lex_state = 111}, + [6518] = {.lex_state = 479, .external_lex_state = 111}, + [6519] = {.lex_state = 480, .external_lex_state = 111}, + [6520] = {.lex_state = 479, .external_lex_state = 111}, + [6521] = {.lex_state = 480, .external_lex_state = 111}, + [6522] = {.lex_state = 480, .external_lex_state = 111}, + [6523] = {.lex_state = 479, .external_lex_state = 111}, + [6524] = {.lex_state = 481, .external_lex_state = 112}, + [6525] = {.lex_state = 479, .external_lex_state = 111}, + [6526] = {.lex_state = 480, .external_lex_state = 111}, + [6527] = {.lex_state = 479, .external_lex_state = 111}, + [6528] = {.lex_state = 480, .external_lex_state = 111}, + [6529] = {.lex_state = 480, .external_lex_state = 111}, + [6530] = {.lex_state = 479, .external_lex_state = 111}, + [6531] = {.lex_state = 479, .external_lex_state = 111}, + [6532] = {.lex_state = 479, .external_lex_state = 111}, + [6533] = {.lex_state = 479, .external_lex_state = 111}, + [6534] = {.lex_state = 480, .external_lex_state = 111}, + [6535] = {.lex_state = 480, .external_lex_state = 111}, + [6536] = {.lex_state = 479, .external_lex_state = 111}, + [6537] = {.lex_state = 480, .external_lex_state = 111}, + [6538] = {.lex_state = 479, .external_lex_state = 111}, + [6539] = {.lex_state = 479, .external_lex_state = 111}, + [6540] = {.lex_state = 479, .external_lex_state = 111}, + [6541] = {.lex_state = 480, .external_lex_state = 111}, + [6542] = {.lex_state = 479, .external_lex_state = 111}, + [6543] = {.lex_state = 479, .external_lex_state = 111}, + [6544] = {.lex_state = 504, .external_lex_state = 112}, + [6545] = {.lex_state = 504, .external_lex_state = 112}, + [6546] = {.lex_state = 97, .external_lex_state = 106}, + [6547] = {.lex_state = 97, .external_lex_state = 106}, + [6548] = {.lex_state = 504, .external_lex_state = 112}, + [6549] = {.lex_state = 504, .external_lex_state = 112}, + [6550] = {.lex_state = 504, .external_lex_state = 112}, + [6551] = {.lex_state = 482, .external_lex_state = 111}, + [6552] = {.lex_state = 504, .external_lex_state = 112}, + [6553] = {.lex_state = 504, .external_lex_state = 112}, + [6554] = {.lex_state = 504, .external_lex_state = 112}, + [6555] = {.lex_state = 504, .external_lex_state = 112}, + [6556] = {.lex_state = 504, .external_lex_state = 112}, + [6557] = {.lex_state = 515}, + [6558] = {.lex_state = 463, .external_lex_state = 113}, + [6559] = {.lex_state = 483, .external_lex_state = 111}, + [6560] = {.lex_state = 515}, + [6561] = {.lex_state = 515}, + [6562] = {.lex_state = 515}, + [6563] = {.lex_state = 483, .external_lex_state = 111}, + [6564] = {.lex_state = 515}, + [6565] = {.lex_state = 483, .external_lex_state = 111}, + [6566] = {.lex_state = 515}, + [6567] = {.lex_state = 505, .external_lex_state = 114}, + [6568] = {.lex_state = 515}, + [6569] = {.lex_state = 515}, + [6570] = {.lex_state = 515}, + [6571] = {.lex_state = 515}, + [6572] = {.lex_state = 515}, + [6573] = {.lex_state = 515}, + [6574] = {.lex_state = 515}, + [6575] = {.lex_state = 515}, + [6576] = {.lex_state = 515}, + [6577] = {.lex_state = 515}, + [6578] = {.lex_state = 515}, + [6579] = {.lex_state = 515}, + [6580] = {.lex_state = 515}, + [6581] = {.lex_state = 515}, + [6582] = {.lex_state = 483, .external_lex_state = 111}, + [6583] = {.lex_state = 463, .external_lex_state = 113}, + [6584] = {.lex_state = 515}, + [6585] = {.lex_state = 463, .external_lex_state = 113}, + [6586] = {.lex_state = 483, .external_lex_state = 111}, + [6587] = {.lex_state = 515}, + [6588] = {.lex_state = 515}, + [6589] = {.lex_state = 515}, + [6590] = {.lex_state = 515}, + [6591] = {.lex_state = 515}, + [6592] = {.lex_state = 515}, + [6593] = {.lex_state = 515}, + [6594] = {.lex_state = 483, .external_lex_state = 111}, + [6595] = {.lex_state = 515}, + [6596] = {.lex_state = 483, .external_lex_state = 111}, + [6597] = {.lex_state = 483, .external_lex_state = 111}, + [6598] = {.lex_state = 515}, + [6599] = {.lex_state = 483, .external_lex_state = 111}, + [6600] = {.lex_state = 515, .external_lex_state = 96}, + [6601] = {.lex_state = 510, .external_lex_state = 115}, + [6602] = {.lex_state = 515, .external_lex_state = 96}, + [6603] = {.lex_state = 515, .external_lex_state = 96}, + [6604] = {.lex_state = 515, .external_lex_state = 96}, + [6605] = {.lex_state = 515, .external_lex_state = 96}, + [6606] = {.lex_state = 510, .external_lex_state = 115}, + [6607] = {.lex_state = 515, .external_lex_state = 96}, + [6608] = {.lex_state = 515, .external_lex_state = 96}, + [6609] = {.lex_state = 515, .external_lex_state = 96}, + [6610] = {.lex_state = 515, .external_lex_state = 96}, + [6611] = {.lex_state = 510, .external_lex_state = 115}, + [6612] = {.lex_state = 515, .external_lex_state = 96}, + [6613] = {.lex_state = 510, .external_lex_state = 115}, + [6614] = {.lex_state = 505}, + [6615] = {.lex_state = 516}, + [6616] = {.lex_state = 515, .external_lex_state = 96}, + [6617] = {.lex_state = 515, .external_lex_state = 96}, + [6618] = {.lex_state = 515, .external_lex_state = 96}, + [6619] = {.lex_state = 515, .external_lex_state = 96}, + [6620] = {.lex_state = 515, .external_lex_state = 96}, + [6621] = {.lex_state = 515, .external_lex_state = 96}, + [6622] = {.lex_state = 510, .external_lex_state = 115}, + [6623] = {.lex_state = 515, .external_lex_state = 96}, + [6624] = {.lex_state = 515, .external_lex_state = 96}, + [6625] = {.lex_state = 510, .external_lex_state = 115}, + [6626] = {.lex_state = 515, .external_lex_state = 96}, + [6627] = {.lex_state = 510, .external_lex_state = 115}, + [6628] = {.lex_state = 510, .external_lex_state = 115}, + [6629] = {.lex_state = 510, .external_lex_state = 115}, + [6630] = {.lex_state = 510, .external_lex_state = 115}, + [6631] = {.lex_state = 515, .external_lex_state = 96}, + [6632] = {.lex_state = 515, .external_lex_state = 96}, + [6633] = {.lex_state = 515, .external_lex_state = 96}, + [6634] = {.lex_state = 515, .external_lex_state = 96}, + [6635] = {.lex_state = 515, .external_lex_state = 96}, + [6636] = {.lex_state = 515, .external_lex_state = 96}, + [6637] = {.lex_state = 515, .external_lex_state = 96}, + [6638] = {.lex_state = 515, .external_lex_state = 96}, + [6639] = {.lex_state = 510, .external_lex_state = 115}, + [6640] = {.lex_state = 506, .external_lex_state = 116}, + [6641] = {.lex_state = 510}, + [6642] = {.lex_state = 101, .external_lex_state = 117}, + [6643] = {.lex_state = 510}, + [6644] = {.lex_state = 513}, + [6645] = {.lex_state = 101, .external_lex_state = 117}, + [6646] = {.lex_state = 101, .external_lex_state = 117}, + [6647] = {.lex_state = 101, .external_lex_state = 117}, + [6648] = {.lex_state = 507, .external_lex_state = 118}, + [6649] = {.lex_state = 101, .external_lex_state = 117}, + [6650] = {.lex_state = 101, .external_lex_state = 117}, + [6651] = {.lex_state = 507, .external_lex_state = 118}, + [6652] = {.lex_state = 101, .external_lex_state = 117}, + [6653] = {.lex_state = 101, .external_lex_state = 117}, + [6654] = {.lex_state = 507, .external_lex_state = 118}, + [6655] = {.lex_state = 101, .external_lex_state = 117}, + [6656] = {.lex_state = 101, .external_lex_state = 117}, + [6657] = {.lex_state = 513}, + [6658] = {.lex_state = 101, .external_lex_state = 117}, + [6659] = {.lex_state = 101, .external_lex_state = 117}, + [6660] = {.lex_state = 101, .external_lex_state = 117}, + [6661] = {.lex_state = 101, .external_lex_state = 117}, + [6662] = {.lex_state = 101, .external_lex_state = 117}, + [6663] = {.lex_state = 101, .external_lex_state = 117}, + [6664] = {.lex_state = 506, .external_lex_state = 114}, + [6665] = {.lex_state = 506, .external_lex_state = 114}, + [6666] = {.lex_state = 101, .external_lex_state = 119}, + [6667] = {.lex_state = 506, .external_lex_state = 114}, + [6668] = {.lex_state = 506, .external_lex_state = 114}, + [6669] = {.lex_state = 101, .external_lex_state = 117}, + [6670] = {.lex_state = 101, .external_lex_state = 117}, + [6671] = {.lex_state = 506, .external_lex_state = 114}, + [6672] = {.lex_state = 101, .external_lex_state = 117}, + [6673] = {.lex_state = 101, .external_lex_state = 117}, + [6674] = {.lex_state = 506, .external_lex_state = 114}, + [6675] = {.lex_state = 463, .external_lex_state = 113}, + [6676] = {.lex_state = 506, .external_lex_state = 114}, + [6677] = {.lex_state = 101, .external_lex_state = 117}, + [6678] = {.lex_state = 101, .external_lex_state = 117}, + [6679] = {.lex_state = 101, .external_lex_state = 117}, + [6680] = {.lex_state = 463, .external_lex_state = 113}, + [6681] = {.lex_state = 463, .external_lex_state = 113}, + [6682] = {.lex_state = 506, .external_lex_state = 114}, + [6683] = {.lex_state = 463, .external_lex_state = 113}, + [6684] = {.lex_state = 101, .external_lex_state = 117}, + [6685] = {.lex_state = 101, .external_lex_state = 119}, + [6686] = {.lex_state = 101, .external_lex_state = 117}, + [6687] = {.lex_state = 506, .external_lex_state = 114}, + [6688] = {.lex_state = 506, .external_lex_state = 114}, + [6689] = {.lex_state = 101, .external_lex_state = 119}, + [6690] = {.lex_state = 101, .external_lex_state = 117}, + [6691] = {.lex_state = 506, .external_lex_state = 114}, + [6692] = {.lex_state = 101, .external_lex_state = 117}, + [6693] = {.lex_state = 463, .external_lex_state = 113}, + [6694] = {.lex_state = 101, .external_lex_state = 119}, + [6695] = {.lex_state = 463, .external_lex_state = 113}, + [6696] = {.lex_state = 101, .external_lex_state = 117}, + [6697] = {.lex_state = 463, .external_lex_state = 113}, + [6698] = {.lex_state = 101, .external_lex_state = 117}, + [6699] = {.lex_state = 101, .external_lex_state = 117}, + [6700] = {.lex_state = 101, .external_lex_state = 119}, + [6701] = {.lex_state = 101, .external_lex_state = 117}, + [6702] = {.lex_state = 506, .external_lex_state = 114}, + [6703] = {.lex_state = 463}, + [6704] = {.lex_state = 463}, + [6705] = {.lex_state = 506, .external_lex_state = 114}, + [6706] = {.lex_state = 463}, + [6707] = {.lex_state = 463}, + [6708] = {.lex_state = 463}, + [6709] = {.lex_state = 463}, + [6710] = {.lex_state = 96, .external_lex_state = 119}, + [6711] = {.lex_state = 516}, + [6712] = {.lex_state = 506, .external_lex_state = 114}, + [6713] = {.lex_state = 515}, + [6714] = {.lex_state = 96, .external_lex_state = 119}, + [6715] = {.lex_state = 463}, + [6716] = {.lex_state = 463}, + [6717] = {.lex_state = 101, .external_lex_state = 119}, + [6718] = {.lex_state = 463}, + [6719] = {.lex_state = 463}, + [6720] = {.lex_state = 463}, + [6721] = {.lex_state = 463}, + [6722] = {.lex_state = 463}, + [6723] = {.lex_state = 516}, + [6724] = {.lex_state = 463}, + [6725] = {.lex_state = 463}, + [6726] = {.lex_state = 506, .external_lex_state = 114}, + [6727] = {.lex_state = 515}, + [6728] = {.lex_state = 463}, + [6729] = {.lex_state = 506, .external_lex_state = 114}, + [6730] = {.lex_state = 463}, + [6731] = {.lex_state = 463}, + [6732] = {.lex_state = 506, .external_lex_state = 114}, + [6733] = {.lex_state = 463}, + [6734] = {.lex_state = 463}, + [6735] = {.lex_state = 506, .external_lex_state = 114}, + [6736] = {.lex_state = 506, .external_lex_state = 114}, + [6737] = {.lex_state = 463}, + [6738] = {.lex_state = 463}, + [6739] = {.lex_state = 516}, + [6740] = {.lex_state = 489, .external_lex_state = 115}, + [6741] = {.lex_state = 463}, + [6742] = {.lex_state = 96, .external_lex_state = 119}, + [6743] = {.lex_state = 96, .external_lex_state = 119}, + [6744] = {.lex_state = 463}, + [6745] = {.lex_state = 463}, + [6746] = {.lex_state = 463}, + [6747] = {.lex_state = 463}, + [6748] = {.lex_state = 515}, + [6749] = {.lex_state = 463}, + [6750] = {.lex_state = 96, .external_lex_state = 119}, + [6751] = {.lex_state = 463}, + [6752] = {.lex_state = 516}, + [6753] = {.lex_state = 463}, + [6754] = {.lex_state = 506, .external_lex_state = 114}, + [6755] = {.lex_state = 463}, + [6756] = {.lex_state = 463}, + [6757] = {.lex_state = 463}, + [6758] = {.lex_state = 516}, + [6759] = {.lex_state = 463}, + [6760] = {.lex_state = 506, .external_lex_state = 114}, + [6761] = {.lex_state = 463}, + [6762] = {.lex_state = 506, .external_lex_state = 114}, + [6763] = {.lex_state = 463}, + [6764] = {.lex_state = 463}, + [6765] = {.lex_state = 516}, + [6766] = {.lex_state = 507, .external_lex_state = 118}, + [6767] = {.lex_state = 463}, + [6768] = {.lex_state = 463}, + [6769] = {.lex_state = 463}, + [6770] = {.lex_state = 507, .external_lex_state = 118}, + [6771] = {.lex_state = 507, .external_lex_state = 118}, + [6772] = {.lex_state = 463}, + [6773] = {.lex_state = 489, .external_lex_state = 115}, + [6774] = {.lex_state = 463}, + [6775] = {.lex_state = 463}, + [6776] = {.lex_state = 96, .external_lex_state = 119}, + [6777] = {.lex_state = 463}, + [6778] = {.lex_state = 463}, + [6779] = {.lex_state = 463}, + [6780] = {.lex_state = 96, .external_lex_state = 119}, + [6781] = {.lex_state = 489, .external_lex_state = 115}, + [6782] = {.lex_state = 463}, + [6783] = {.lex_state = 463}, + [6784] = {.lex_state = 463}, + [6785] = {.lex_state = 463}, + [6786] = {.lex_state = 463}, + [6787] = {.lex_state = 463}, + [6788] = {.lex_state = 489, .external_lex_state = 115}, + [6789] = {.lex_state = 463}, + [6790] = {.lex_state = 506, .external_lex_state = 114}, + [6791] = {.lex_state = 463}, + [6792] = {.lex_state = 516}, + [6793] = {.lex_state = 463}, + [6794] = {.lex_state = 463}, + [6795] = {.lex_state = 463}, + [6796] = {.lex_state = 463}, + [6797] = {.lex_state = 516}, + [6798] = {.lex_state = 463}, + [6799] = {.lex_state = 489, .external_lex_state = 115}, + [6800] = {.lex_state = 489, .external_lex_state = 115}, + [6801] = {.lex_state = 463}, + [6802] = {.lex_state = 463}, + [6803] = {.lex_state = 506, .external_lex_state = 114}, + [6804] = {.lex_state = 463}, + [6805] = {.lex_state = 96, .external_lex_state = 119}, + [6806] = {.lex_state = 463}, + [6807] = {.lex_state = 463}, + [6808] = {.lex_state = 489, .external_lex_state = 115}, + [6809] = {.lex_state = 518, .external_lex_state = 120}, + [6810] = {.lex_state = 463}, + [6811] = {.lex_state = 518, .external_lex_state = 120}, + [6812] = {.lex_state = 463}, + [6813] = {.lex_state = 463}, + [6814] = {.lex_state = 463}, + [6815] = {.lex_state = 463}, + [6816] = {.lex_state = 506, .external_lex_state = 114}, + [6817] = {.lex_state = 506, .external_lex_state = 114}, + [6818] = {.lex_state = 463}, + [6819] = {.lex_state = 463}, + [6820] = {.lex_state = 506, .external_lex_state = 114}, + [6821] = {.lex_state = 463}, + [6822] = {.lex_state = 463}, + [6823] = {.lex_state = 463}, + [6824] = {.lex_state = 463}, + [6825] = {.lex_state = 518, .external_lex_state = 120}, + [6826] = {.lex_state = 489, .external_lex_state = 115}, + [6827] = {.lex_state = 507, .external_lex_state = 118}, + [6828] = {.lex_state = 489, .external_lex_state = 115}, + [6829] = {.lex_state = 506, .external_lex_state = 114}, + [6830] = {.lex_state = 463}, + [6831] = {.lex_state = 463}, + [6832] = {.lex_state = 515}, + [6833] = {.lex_state = 588, .external_lex_state = 121}, + [6834] = {.lex_state = 588, .external_lex_state = 121}, + [6835] = {.lex_state = 471, .external_lex_state = 122}, + [6836] = {.lex_state = 588, .external_lex_state = 121}, + [6837] = {.lex_state = 588, .external_lex_state = 121}, + [6838] = {.lex_state = 588, .external_lex_state = 121}, + [6839] = {.lex_state = 471, .external_lex_state = 122}, + [6840] = {.lex_state = 588, .external_lex_state = 121}, + [6841] = {.lex_state = 588, .external_lex_state = 121}, + [6842] = {.lex_state = 588, .external_lex_state = 121}, + [6843] = {.lex_state = 489, .external_lex_state = 115}, + [6844] = {.lex_state = 588, .external_lex_state = 121}, + [6845] = {.lex_state = 588, .external_lex_state = 121}, + [6846] = {.lex_state = 588, .external_lex_state = 121}, + [6847] = {.lex_state = 588, .external_lex_state = 121}, + [6848] = {.lex_state = 588, .external_lex_state = 121}, + [6849] = {.lex_state = 471, .external_lex_state = 123}, + [6850] = {.lex_state = 588, .external_lex_state = 121}, + [6851] = {.lex_state = 588, .external_lex_state = 121}, + [6852] = {.lex_state = 515}, + [6853] = {.lex_state = 471, .external_lex_state = 123}, + [6854] = {.lex_state = 518, .external_lex_state = 120}, + [6855] = {.lex_state = 588, .external_lex_state = 121}, + [6856] = {.lex_state = 588, .external_lex_state = 121}, + [6857] = {.lex_state = 518, .external_lex_state = 124}, + [6858] = {.lex_state = 588, .external_lex_state = 121}, + [6859] = {.lex_state = 471, .external_lex_state = 122}, + [6860] = {.lex_state = 101, .external_lex_state = 119}, + [6861] = {.lex_state = 588, .external_lex_state = 121}, + [6862] = {.lex_state = 588, .external_lex_state = 121}, + [6863] = {.lex_state = 101, .external_lex_state = 119}, + [6864] = {.lex_state = 101, .external_lex_state = 119}, + [6865] = {.lex_state = 488}, + [6866] = {.lex_state = 588, .external_lex_state = 121}, + [6867] = {.lex_state = 588, .external_lex_state = 121}, + [6868] = {.lex_state = 588, .external_lex_state = 121}, + [6869] = {.lex_state = 516}, + [6870] = {.lex_state = 518, .external_lex_state = 124}, + [6871] = {.lex_state = 471, .external_lex_state = 122}, + [6872] = {.lex_state = 471, .external_lex_state = 122}, + [6873] = {.lex_state = 96, .external_lex_state = 119}, + [6874] = {.lex_state = 518, .external_lex_state = 124}, + [6875] = {.lex_state = 471, .external_lex_state = 122}, + [6876] = {.lex_state = 588, .external_lex_state = 121}, + [6877] = {.lex_state = 588, .external_lex_state = 121}, + [6878] = {.lex_state = 588, .external_lex_state = 121}, + [6879] = {.lex_state = 588, .external_lex_state = 121}, + [6880] = {.lex_state = 488}, + [6881] = {.lex_state = 588, .external_lex_state = 121}, + [6882] = {.lex_state = 515}, + [6883] = {.lex_state = 471, .external_lex_state = 122}, + [6884] = {.lex_state = 588, .external_lex_state = 121}, + [6885] = {.lex_state = 588, .external_lex_state = 121}, + [6886] = {.lex_state = 471, .external_lex_state = 123}, + [6887] = {.lex_state = 588, .external_lex_state = 121}, + [6888] = {.lex_state = 588, .external_lex_state = 121}, + [6889] = {.lex_state = 515}, + [6890] = {.lex_state = 588, .external_lex_state = 121}, + [6891] = {.lex_state = 588, .external_lex_state = 121}, + [6892] = {.lex_state = 514}, + [6893] = {.lex_state = 588, .external_lex_state = 121}, + [6894] = {.lex_state = 489, .external_lex_state = 115}, + [6895] = {.lex_state = 588, .external_lex_state = 121}, + [6896] = {.lex_state = 518, .external_lex_state = 120}, + [6897] = {.lex_state = 518, .external_lex_state = 124}, + [6898] = {.lex_state = 518, .external_lex_state = 124}, + [6899] = {.lex_state = 588, .external_lex_state = 121}, + [6900] = {.lex_state = 588, .external_lex_state = 121}, + [6901] = {.lex_state = 588, .external_lex_state = 121}, + [6902] = {.lex_state = 588, .external_lex_state = 121}, + [6903] = {.lex_state = 588, .external_lex_state = 121}, + [6904] = {.lex_state = 588, .external_lex_state = 121}, + [6905] = {.lex_state = 518, .external_lex_state = 124}, + [6906] = {.lex_state = 518, .external_lex_state = 124}, + [6907] = {.lex_state = 588, .external_lex_state = 121}, + [6908] = {.lex_state = 588, .external_lex_state = 121}, + [6909] = {.lex_state = 471, .external_lex_state = 122}, + [6910] = {.lex_state = 518, .external_lex_state = 120}, + [6911] = {.lex_state = 588, .external_lex_state = 121}, + [6912] = {.lex_state = 588, .external_lex_state = 121}, + [6913] = {.lex_state = 471, .external_lex_state = 122}, + [6914] = {.lex_state = 488}, + [6915] = {.lex_state = 588, .external_lex_state = 121}, + [6916] = {.lex_state = 588, .external_lex_state = 121}, + [6917] = {.lex_state = 588, .external_lex_state = 121}, + [6918] = {.lex_state = 488}, + [6919] = {.lex_state = 588, .external_lex_state = 121}, + [6920] = {.lex_state = 588, .external_lex_state = 121}, + [6921] = {.lex_state = 588, .external_lex_state = 121}, + [6922] = {.lex_state = 588, .external_lex_state = 121}, + [6923] = {.lex_state = 101, .external_lex_state = 119}, + [6924] = {.lex_state = 588, .external_lex_state = 121}, + [6925] = {.lex_state = 588, .external_lex_state = 121}, + [6926] = {.lex_state = 489, .external_lex_state = 115}, + [6927] = {.lex_state = 489, .external_lex_state = 115}, + [6928] = {.lex_state = 489, .external_lex_state = 115}, + [6929] = {.lex_state = 515}, + [6930] = {.lex_state = 101, .external_lex_state = 119}, + [6931] = {.lex_state = 471, .external_lex_state = 122}, + [6932] = {.lex_state = 471, .external_lex_state = 122}, + [6933] = {.lex_state = 471, .external_lex_state = 122}, + [6934] = {.lex_state = 588, .external_lex_state = 121}, + [6935] = {.lex_state = 101, .external_lex_state = 119}, + [6936] = {.lex_state = 101, .external_lex_state = 119}, + [6937] = {.lex_state = 588, .external_lex_state = 121}, + [6938] = {.lex_state = 101, .external_lex_state = 119}, + [6939] = {.lex_state = 588, .external_lex_state = 121}, + [6940] = {.lex_state = 588, .external_lex_state = 121}, + [6941] = {.lex_state = 588, .external_lex_state = 121}, + [6942] = {.lex_state = 471, .external_lex_state = 122}, + [6943] = {.lex_state = 518, .external_lex_state = 124}, + [6944] = {.lex_state = 471, .external_lex_state = 123}, + [6945] = {.lex_state = 488}, + [6946] = {.lex_state = 463, .external_lex_state = 125}, + [6947] = {.lex_state = 489, .external_lex_state = 115}, + [6948] = {.lex_state = 518, .external_lex_state = 124}, + [6949] = {.lex_state = 489, .external_lex_state = 115}, + [6950] = {.lex_state = 489, .external_lex_state = 115}, + [6951] = {.lex_state = 518, .external_lex_state = 124}, + [6952] = {.lex_state = 506, .external_lex_state = 114}, + [6953] = {.lex_state = 518, .external_lex_state = 124}, + [6954] = {.lex_state = 518, .external_lex_state = 124}, + [6955] = {.lex_state = 518, .external_lex_state = 124}, + [6956] = {.lex_state = 463, .external_lex_state = 125}, + [6957] = {.lex_state = 471, .external_lex_state = 124}, + [6958] = {.lex_state = 471, .external_lex_state = 122}, + [6959] = {.lex_state = 463, .external_lex_state = 125}, + [6960] = {.lex_state = 518, .external_lex_state = 124}, + [6961] = {.lex_state = 518, .external_lex_state = 124}, + [6962] = {.lex_state = 518, .external_lex_state = 124}, + [6963] = {.lex_state = 518, .external_lex_state = 124}, + [6964] = {.lex_state = 489, .external_lex_state = 115}, + [6965] = {.lex_state = 506, .external_lex_state = 114}, + [6966] = {.lex_state = 489, .external_lex_state = 115}, + [6967] = {.lex_state = 489, .external_lex_state = 115}, + [6968] = {.lex_state = 489, .external_lex_state = 115}, + [6969] = {.lex_state = 96, .external_lex_state = 119}, + [6970] = {.lex_state = 518, .external_lex_state = 124}, + [6971] = {.lex_state = 96, .external_lex_state = 119}, + [6972] = {.lex_state = 471, .external_lex_state = 122}, + [6973] = {.lex_state = 506, .external_lex_state = 114}, + [6974] = {.lex_state = 489, .external_lex_state = 115}, + [6975] = {.lex_state = 489, .external_lex_state = 115}, + [6976] = {.lex_state = 471, .external_lex_state = 122}, + [6977] = {.lex_state = 489, .external_lex_state = 115}, + [6978] = {.lex_state = 518, .external_lex_state = 124}, + [6979] = {.lex_state = 471, .external_lex_state = 122}, + [6980] = {.lex_state = 488}, + [6981] = {.lex_state = 463, .external_lex_state = 125}, + [6982] = {.lex_state = 463, .external_lex_state = 125}, + [6983] = {.lex_state = 489, .external_lex_state = 115}, + [6984] = {.lex_state = 471, .external_lex_state = 122}, + [6985] = {.lex_state = 463, .external_lex_state = 125}, + [6986] = {.lex_state = 518, .external_lex_state = 124}, + [6987] = {.lex_state = 471, .external_lex_state = 122}, + [6988] = {.lex_state = 463, .external_lex_state = 125}, + [6989] = {.lex_state = 489, .external_lex_state = 115}, + [6990] = {.lex_state = 471, .external_lex_state = 122}, + [6991] = {.lex_state = 489, .external_lex_state = 115}, + [6992] = {.lex_state = 471, .external_lex_state = 122}, + [6993] = {.lex_state = 489, .external_lex_state = 115}, + [6994] = {.lex_state = 506, .external_lex_state = 114}, + [6995] = {.lex_state = 463, .external_lex_state = 125}, + [6996] = {.lex_state = 489, .external_lex_state = 115}, + [6997] = {.lex_state = 463, .external_lex_state = 125}, + [6998] = {.lex_state = 463, .external_lex_state = 125}, + [6999] = {.lex_state = 489, .external_lex_state = 115}, + [7000] = {.lex_state = 96, .external_lex_state = 119}, + [7001] = {.lex_state = 463, .external_lex_state = 125}, + [7002] = {.lex_state = 489, .external_lex_state = 115}, + [7003] = {.lex_state = 463, .external_lex_state = 125}, + [7004] = {.lex_state = 518, .external_lex_state = 124}, + [7005] = {.lex_state = 518, .external_lex_state = 124}, + [7006] = {.lex_state = 489, .external_lex_state = 115}, + [7007] = {.lex_state = 489, .external_lex_state = 115}, + [7008] = {.lex_state = 465}, + [7009] = {.lex_state = 518}, + [7010] = {.lex_state = 506, .external_lex_state = 114}, + [7011] = {.lex_state = 465}, + [7012] = {.lex_state = 463}, + [7013] = {.lex_state = 588}, + [7014] = {.lex_state = 463}, + [7015] = {.lex_state = 465}, + [7016] = {.lex_state = 465}, + [7017] = {.lex_state = 518}, + [7018] = {.lex_state = 588}, + [7019] = {.lex_state = 504, .external_lex_state = 115}, + [7020] = {.lex_state = 504, .external_lex_state = 115}, + [7021] = {.lex_state = 463}, + [7022] = {.lex_state = 448}, + [7023] = {.lex_state = 465}, + [7024] = {.lex_state = 465}, + [7025] = {.lex_state = 465}, + [7026] = {.lex_state = 465}, + [7027] = {.lex_state = 465}, + [7028] = {.lex_state = 465}, + [7029] = {.lex_state = 448}, + [7030] = {.lex_state = 588}, + [7031] = {.lex_state = 465}, + [7032] = {.lex_state = 465}, + [7033] = {.lex_state = 463}, + [7034] = {.lex_state = 465}, + [7035] = {.lex_state = 518}, + [7036] = {.lex_state = 448, .external_lex_state = 126}, + [7037] = {.lex_state = 465}, + [7038] = {.lex_state = 465}, + [7039] = {.lex_state = 448, .external_lex_state = 126}, + [7040] = {.lex_state = 465}, + [7041] = {.lex_state = 518}, + [7042] = {.lex_state = 465}, + [7043] = {.lex_state = 448, .external_lex_state = 126}, + [7044] = {.lex_state = 448, .external_lex_state = 126}, + [7045] = {.lex_state = 465}, + [7046] = {.lex_state = 506, .external_lex_state = 116}, + [7047] = {.lex_state = 448, .external_lex_state = 126}, + [7048] = {.lex_state = 448}, + [7049] = {.lex_state = 465}, + [7050] = {.lex_state = 465}, + [7051] = {.lex_state = 448, .external_lex_state = 126}, + [7052] = {.lex_state = 465}, + [7053] = {.lex_state = 465}, + [7054] = {.lex_state = 588}, + [7055] = {.lex_state = 465}, + [7056] = {.lex_state = 448}, + [7057] = {.lex_state = 588}, + [7058] = {.lex_state = 448}, + [7059] = {.lex_state = 465}, + [7060] = {.lex_state = 465}, + [7061] = {.lex_state = 465}, + [7062] = {.lex_state = 588}, + [7063] = {.lex_state = 465}, + [7064] = {.lex_state = 465}, + [7065] = {.lex_state = 465}, + [7066] = {.lex_state = 465}, + [7067] = {.lex_state = 588}, + [7068] = {.lex_state = 448}, + [7069] = {.lex_state = 518}, + [7070] = {.lex_state = 448, .external_lex_state = 126}, + [7071] = {.lex_state = 448, .external_lex_state = 126}, + [7072] = {.lex_state = 448, .external_lex_state = 126}, + [7073] = {.lex_state = 448}, + [7074] = {.lex_state = 465}, + [7075] = {.lex_state = 465}, + [7076] = {.lex_state = 465}, + [7077] = {.lex_state = 465}, + [7078] = {.lex_state = 465}, + [7079] = {.lex_state = 588}, + [7080] = {.lex_state = 465}, + [7081] = {.lex_state = 518}, + [7082] = {.lex_state = 465}, + [7083] = {.lex_state = 465}, + [7084] = {.lex_state = 518}, + [7085] = {.lex_state = 448}, + [7086] = {.lex_state = 448}, + [7087] = {.lex_state = 465}, + [7088] = {.lex_state = 465}, + [7089] = {.lex_state = 448}, + [7090] = {.lex_state = 465}, + [7091] = {.lex_state = 588}, + [7092] = {.lex_state = 518}, + [7093] = {.lex_state = 448}, + [7094] = {.lex_state = 518}, + [7095] = {.lex_state = 518}, + [7096] = {.lex_state = 448}, + [7097] = {.lex_state = 465}, + [7098] = {.lex_state = 448}, + [7099] = {.lex_state = 465}, + [7100] = {.lex_state = 463}, + [7101] = {.lex_state = 465}, + [7102] = {.lex_state = 448}, + [7103] = {.lex_state = 465}, + [7104] = {.lex_state = 518}, + [7105] = {.lex_state = 588}, + [7106] = {.lex_state = 518}, + [7107] = {.lex_state = 518}, + [7108] = {.lex_state = 506, .external_lex_state = 116}, + [7109] = {.lex_state = 465}, + [7110] = {.lex_state = 465}, + [7111] = {.lex_state = 435, .external_lex_state = 115}, + [7112] = {.lex_state = 465}, + [7113] = {.lex_state = 506, .external_lex_state = 114}, + [7114] = {.lex_state = 448}, + [7115] = {.lex_state = 465}, + [7116] = {.lex_state = 465}, + [7117] = {.lex_state = 463}, + [7118] = {.lex_state = 465}, + [7119] = {.lex_state = 465}, + [7120] = {.lex_state = 465}, + [7121] = {.lex_state = 465}, + [7122] = {.lex_state = 518}, + [7123] = {.lex_state = 465}, + [7124] = {.lex_state = 465}, + [7125] = {.lex_state = 518}, + [7126] = {.lex_state = 465}, + [7127] = {.lex_state = 465}, + [7128] = {.lex_state = 448}, + [7129] = {.lex_state = 465}, + [7130] = {.lex_state = 448}, + [7131] = {.lex_state = 588}, + [7132] = {.lex_state = 465}, + [7133] = {.lex_state = 448}, + [7134] = {.lex_state = 588}, + [7135] = {.lex_state = 448}, + [7136] = {.lex_state = 448}, + [7137] = {.lex_state = 465}, + [7138] = {.lex_state = 518}, + [7139] = {.lex_state = 465}, + [7140] = {.lex_state = 465}, + [7141] = {.lex_state = 465}, + [7142] = {.lex_state = 465}, + [7143] = {.lex_state = 518}, + [7144] = {.lex_state = 588}, + [7145] = {.lex_state = 588}, + [7146] = {.lex_state = 465}, + [7147] = {.lex_state = 465}, + [7148] = {.lex_state = 518}, + [7149] = {.lex_state = 465}, + [7150] = {.lex_state = 518}, + [7151] = {.lex_state = 588}, + [7152] = {.lex_state = 448}, + [7153] = {.lex_state = 588}, + [7154] = {.lex_state = 588}, + [7155] = {.lex_state = 588}, + [7156] = {.lex_state = 518}, + [7157] = {.lex_state = 518}, + [7158] = {.lex_state = 518}, + [7159] = {.lex_state = 588}, + [7160] = {.lex_state = 518}, + [7161] = {.lex_state = 465}, + [7162] = {.lex_state = 465}, + [7163] = {.lex_state = 518}, + [7164] = {.lex_state = 504, .external_lex_state = 115}, + [7165] = {.lex_state = 506, .external_lex_state = 114}, + [7166] = {.lex_state = 465}, + [7167] = {.lex_state = 465}, + [7168] = {.lex_state = 465}, + [7169] = {.lex_state = 465}, + [7170] = {.lex_state = 518}, + [7171] = {.lex_state = 465}, + [7172] = {.lex_state = 465}, + [7173] = {.lex_state = 465}, + [7174] = {.lex_state = 465}, + [7175] = {.lex_state = 465}, + [7176] = {.lex_state = 588}, + [7177] = {.lex_state = 463}, + [7178] = {.lex_state = 465}, + [7179] = {.lex_state = 465}, + [7180] = {.lex_state = 465}, + [7181] = {.lex_state = 465}, + [7182] = {.lex_state = 465}, + [7183] = {.lex_state = 506, .external_lex_state = 116}, + [7184] = {.lex_state = 465}, + [7185] = {.lex_state = 465}, + [7186] = {.lex_state = 506, .external_lex_state = 116}, + [7187] = {.lex_state = 465}, + [7188] = {.lex_state = 518}, + [7189] = {.lex_state = 504, .external_lex_state = 115}, + [7190] = {.lex_state = 465}, + [7191] = {.lex_state = 465}, + [7192] = {.lex_state = 465}, + [7193] = {.lex_state = 488}, + [7194] = {.lex_state = 465}, + [7195] = {.lex_state = 588}, + [7196] = {.lex_state = 465}, + [7197] = {.lex_state = 471, .external_lex_state = 114}, + [7198] = {.lex_state = 504}, + [7199] = {.lex_state = 504}, + [7200] = {.lex_state = 506, .external_lex_state = 114}, + [7201] = {.lex_state = 504}, + [7202] = {.lex_state = 504}, + [7203] = {.lex_state = 504}, + [7204] = {.lex_state = 504}, + [7205] = {.lex_state = 506, .external_lex_state = 114}, + [7206] = {.lex_state = 504}, + [7207] = {.lex_state = 504}, + [7208] = {.lex_state = 504}, + [7209] = {.lex_state = 465}, + [7210] = {.lex_state = 504}, + [7211] = {.lex_state = 504}, + [7212] = {.lex_state = 504}, + [7213] = {.lex_state = 504}, + [7214] = {.lex_state = 504}, + [7215] = {.lex_state = 504}, + [7216] = {.lex_state = 504}, + [7217] = {.lex_state = 504}, + [7218] = {.lex_state = 450, .external_lex_state = 127}, + [7219] = {.lex_state = 450, .external_lex_state = 127}, + [7220] = {.lex_state = 516}, + [7221] = {.lex_state = 506, .external_lex_state = 114}, + [7222] = {.lex_state = 506, .external_lex_state = 114}, + [7223] = {.lex_state = 450, .external_lex_state = 127}, + [7224] = {.lex_state = 516}, + [7225] = {.lex_state = 504}, + [7226] = {.lex_state = 506, .external_lex_state = 114}, + [7227] = {.lex_state = 504}, + [7228] = {.lex_state = 516}, + [7229] = {.lex_state = 506, .external_lex_state = 114}, + [7230] = {.lex_state = 504}, + [7231] = {.lex_state = 463}, + [7232] = {.lex_state = 450, .external_lex_state = 127}, + [7233] = {.lex_state = 450, .external_lex_state = 127}, + [7234] = {.lex_state = 463}, + [7235] = {.lex_state = 463}, + [7236] = {.lex_state = 450, .external_lex_state = 127}, + [7237] = {.lex_state = 471, .external_lex_state = 118}, + [7238] = {.lex_state = 465}, + [7239] = {.lex_state = 450, .external_lex_state = 127}, + [7240] = {.lex_state = 516}, + [7241] = {.lex_state = 465}, + [7242] = {.lex_state = 504}, + [7243] = {.lex_state = 516}, + [7244] = {.lex_state = 465}, + [7245] = {.lex_state = 504}, + [7246] = {.lex_state = 448}, + [7247] = {.lex_state = 504}, + [7248] = {.lex_state = 448}, + [7249] = {.lex_state = 504}, + [7250] = {.lex_state = 471, .external_lex_state = 114}, + [7251] = {.lex_state = 516}, + [7252] = {.lex_state = 506, .external_lex_state = 114}, + [7253] = {.lex_state = 506, .external_lex_state = 114}, + [7254] = {.lex_state = 506, .external_lex_state = 114}, + [7255] = {.lex_state = 516}, + [7256] = {.lex_state = 506, .external_lex_state = 114}, + [7257] = {.lex_state = 506, .external_lex_state = 114}, + [7258] = {.lex_state = 504}, + [7259] = {.lex_state = 504}, + [7260] = {.lex_state = 465}, + [7261] = {.lex_state = 504}, + [7262] = {.lex_state = 450, .external_lex_state = 127}, + [7263] = {.lex_state = 450, .external_lex_state = 127}, + [7264] = {.lex_state = 506, .external_lex_state = 114}, + [7265] = {.lex_state = 506, .external_lex_state = 114}, + [7266] = {.lex_state = 450, .external_lex_state = 127}, + [7267] = {.lex_state = 506, .external_lex_state = 114}, + [7268] = {.lex_state = 504}, + [7269] = {.lex_state = 504}, + [7270] = {.lex_state = 465}, + [7271] = {.lex_state = 504}, + [7272] = {.lex_state = 506, .external_lex_state = 114}, + [7273] = {.lex_state = 506, .external_lex_state = 114}, + [7274] = {.lex_state = 465}, + [7275] = {.lex_state = 516}, + [7276] = {.lex_state = 588}, + [7277] = {.lex_state = 466}, + [7278] = {.lex_state = 588}, + [7279] = {.lex_state = 588}, + [7280] = {.lex_state = 588}, + [7281] = {.lex_state = 471, .external_lex_state = 114}, + [7282] = {.lex_state = 463}, + [7283] = {.lex_state = 463}, + [7284] = {.lex_state = 466}, + [7285] = {.lex_state = 471, .external_lex_state = 114}, + [7286] = {.lex_state = 466}, + [7287] = {.lex_state = 471, .external_lex_state = 114}, + [7288] = {.lex_state = 588}, + [7289] = {.lex_state = 466}, + [7290] = {.lex_state = 588}, + [7291] = {.lex_state = 588}, + [7292] = {.lex_state = 463}, + [7293] = {.lex_state = 588}, + [7294] = {.lex_state = 588}, + [7295] = {.lex_state = 471, .external_lex_state = 114}, + [7296] = {.lex_state = 471, .external_lex_state = 114}, + [7297] = {.lex_state = 588}, + [7298] = {.lex_state = 471, .external_lex_state = 114}, + [7299] = {.lex_state = 471, .external_lex_state = 114}, + [7300] = {.lex_state = 466}, + [7301] = {.lex_state = 463}, + [7302] = {.lex_state = 471, .external_lex_state = 114}, + [7303] = {.lex_state = 588}, + [7304] = {.lex_state = 471, .external_lex_state = 114}, + [7305] = {.lex_state = 588}, + [7306] = {.lex_state = 471, .external_lex_state = 114}, + [7307] = {.lex_state = 471, .external_lex_state = 114}, + [7308] = {.lex_state = 471, .external_lex_state = 114}, + [7309] = {.lex_state = 466}, + [7310] = {.lex_state = 463}, + [7311] = {.lex_state = 450, .external_lex_state = 128}, + [7312] = {.lex_state = 588}, + [7313] = {.lex_state = 471, .external_lex_state = 114}, + [7314] = {.lex_state = 471, .external_lex_state = 114}, + [7315] = {.lex_state = 471, .external_lex_state = 114}, + [7316] = {.lex_state = 471, .external_lex_state = 114}, + [7317] = {.lex_state = 471, .external_lex_state = 114}, + [7318] = {.lex_state = 471, .external_lex_state = 114}, + [7319] = {.lex_state = 463}, + [7320] = {.lex_state = 588}, + [7321] = {.lex_state = 471, .external_lex_state = 114}, + [7322] = {.lex_state = 466}, + [7323] = {.lex_state = 471, .external_lex_state = 114}, + [7324] = {.lex_state = 471, .external_lex_state = 114}, + [7325] = {.lex_state = 471, .external_lex_state = 114}, + [7326] = {.lex_state = 471, .external_lex_state = 114}, + [7327] = {.lex_state = 466}, + [7328] = {.lex_state = 463}, + [7329] = {.lex_state = 588}, + [7330] = {.lex_state = 588}, + [7331] = {.lex_state = 471, .external_lex_state = 114}, + [7332] = {.lex_state = 471, .external_lex_state = 114}, + [7333] = {.lex_state = 471, .external_lex_state = 114}, + [7334] = {.lex_state = 439}, + [7335] = {.lex_state = 588}, + [7336] = {.lex_state = 466}, + [7337] = {.lex_state = 463}, + [7338] = {.lex_state = 588}, + [7339] = {.lex_state = 588}, + [7340] = {.lex_state = 471, .external_lex_state = 114}, + [7341] = {.lex_state = 588}, + [7342] = {.lex_state = 471, .external_lex_state = 114}, + [7343] = {.lex_state = 588}, + [7344] = {.lex_state = 588}, + [7345] = {.lex_state = 471, .external_lex_state = 114}, + [7346] = {.lex_state = 463}, + [7347] = {.lex_state = 588}, + [7348] = {.lex_state = 588}, + [7349] = {.lex_state = 450, .external_lex_state = 128}, + [7350] = {.lex_state = 588}, + [7351] = {.lex_state = 466}, + [7352] = {.lex_state = 588}, + [7353] = {.lex_state = 588}, + [7354] = {.lex_state = 588}, + [7355] = {.lex_state = 463}, + [7356] = {.lex_state = 588}, + [7357] = {.lex_state = 471, .external_lex_state = 114}, + [7358] = {.lex_state = 588}, + [7359] = {.lex_state = 471, .external_lex_state = 114}, + [7360] = {.lex_state = 588}, + [7361] = {.lex_state = 471, .external_lex_state = 114}, + [7362] = {.lex_state = 471, .external_lex_state = 114}, + [7363] = {.lex_state = 471, .external_lex_state = 114}, + [7364] = {.lex_state = 463}, + [7365] = {.lex_state = 588}, + [7366] = {.lex_state = 588}, + [7367] = {.lex_state = 588}, + [7368] = {.lex_state = 588}, + [7369] = {.lex_state = 588}, + [7370] = {.lex_state = 588}, + [7371] = {.lex_state = 463}, + [7372] = {.lex_state = 466}, + [7373] = {.lex_state = 466}, + [7374] = {.lex_state = 588}, + [7375] = {.lex_state = 466}, + [7376] = {.lex_state = 588}, + [7377] = {.lex_state = 588}, + [7378] = {.lex_state = 463}, + [7379] = {.lex_state = 588}, + [7380] = {.lex_state = 588}, + [7381] = {.lex_state = 588}, + [7382] = {.lex_state = 471, .external_lex_state = 114}, + [7383] = {.lex_state = 471, .external_lex_state = 114}, + [7384] = {.lex_state = 588}, + [7385] = {.lex_state = 463}, + [7386] = {.lex_state = 588}, + [7387] = {.lex_state = 588}, + [7388] = {.lex_state = 588}, + [7389] = {.lex_state = 450}, + [7390] = {.lex_state = 588}, + [7391] = {.lex_state = 588}, + [7392] = {.lex_state = 463}, + [7393] = {.lex_state = 463, .external_lex_state = 125}, + [7394] = {.lex_state = 588}, + [7395] = {.lex_state = 471, .external_lex_state = 114}, + [7396] = {.lex_state = 471, .external_lex_state = 114}, + [7397] = {.lex_state = 471, .external_lex_state = 114}, + [7398] = {.lex_state = 588}, + [7399] = {.lex_state = 463}, + [7400] = {.lex_state = 466}, + [7401] = {.lex_state = 471, .external_lex_state = 114}, + [7402] = {.lex_state = 471, .external_lex_state = 114}, + [7403] = {.lex_state = 588}, + [7404] = {.lex_state = 471, .external_lex_state = 114}, + [7405] = {.lex_state = 588}, + [7406] = {.lex_state = 463}, + [7407] = {.lex_state = 588}, + [7408] = {.lex_state = 588}, + [7409] = {.lex_state = 588}, + [7410] = {.lex_state = 471, .external_lex_state = 114}, + [7411] = {.lex_state = 588}, + [7412] = {.lex_state = 466}, + [7413] = {.lex_state = 463}, + [7414] = {.lex_state = 588}, + [7415] = {.lex_state = 471, .external_lex_state = 114}, + [7416] = {.lex_state = 588}, + [7417] = {.lex_state = 471, .external_lex_state = 114}, + [7418] = {.lex_state = 471, .external_lex_state = 114}, + [7419] = {.lex_state = 471, .external_lex_state = 114}, + [7420] = {.lex_state = 463}, + [7421] = {.lex_state = 471, .external_lex_state = 114}, + [7422] = {.lex_state = 471, .external_lex_state = 114}, + [7423] = {.lex_state = 588}, + [7424] = {.lex_state = 588}, + [7425] = {.lex_state = 466}, + [7426] = {.lex_state = 471, .external_lex_state = 114}, + [7427] = {.lex_state = 463}, + [7428] = {.lex_state = 471, .external_lex_state = 114}, + [7429] = {.lex_state = 588}, + [7430] = {.lex_state = 588}, + [7431] = {.lex_state = 471, .external_lex_state = 114}, + [7432] = {.lex_state = 588}, + [7433] = {.lex_state = 588}, + [7434] = {.lex_state = 463}, + [7435] = {.lex_state = 471, .external_lex_state = 114}, + [7436] = {.lex_state = 588}, + [7437] = {.lex_state = 588}, + [7438] = {.lex_state = 463, .external_lex_state = 125}, + [7439] = {.lex_state = 588}, + [7440] = {.lex_state = 588}, + [7441] = {.lex_state = 463}, + [7442] = {.lex_state = 471, .external_lex_state = 114}, + [7443] = {.lex_state = 588}, + [7444] = {.lex_state = 471, .external_lex_state = 114}, + [7445] = {.lex_state = 588}, + [7446] = {.lex_state = 588}, + [7447] = {.lex_state = 471, .external_lex_state = 114}, + [7448] = {.lex_state = 463}, + [7449] = {.lex_state = 588}, + [7450] = {.lex_state = 471, .external_lex_state = 114}, + [7451] = {.lex_state = 588}, + [7452] = {.lex_state = 471, .external_lex_state = 114}, + [7453] = {.lex_state = 588}, + [7454] = {.lex_state = 588}, + [7455] = {.lex_state = 463}, + [7456] = {.lex_state = 588}, + [7457] = {.lex_state = 588}, + [7458] = {.lex_state = 471, .external_lex_state = 114}, + [7459] = {.lex_state = 588}, + [7460] = {.lex_state = 588}, + [7461] = {.lex_state = 588}, + [7462] = {.lex_state = 463}, + [7463] = {.lex_state = 439}, + [7464] = {.lex_state = 588}, + [7465] = {.lex_state = 588}, + [7466] = {.lex_state = 466}, + [7467] = {.lex_state = 466}, + [7468] = {.lex_state = 471, .external_lex_state = 114}, + [7469] = {.lex_state = 463}, + [7470] = {.lex_state = 516}, + [7471] = {.lex_state = 471, .external_lex_state = 114}, + [7472] = {.lex_state = 466}, + [7473] = {.lex_state = 516}, + [7474] = {.lex_state = 471, .external_lex_state = 114}, + [7475] = {.lex_state = 588}, + [7476] = {.lex_state = 463}, + [7477] = {.lex_state = 463}, + [7478] = {.lex_state = 588}, + [7479] = {.lex_state = 588}, + [7480] = {.lex_state = 471, .external_lex_state = 114}, + [7481] = {.lex_state = 588}, + [7482] = {.lex_state = 588}, + [7483] = {.lex_state = 463}, + [7484] = {.lex_state = 471, .external_lex_state = 114}, + [7485] = {.lex_state = 471, .external_lex_state = 114}, + [7486] = {.lex_state = 471, .external_lex_state = 114}, + [7487] = {.lex_state = 588}, + [7488] = {.lex_state = 588, .external_lex_state = 129}, + [7489] = {.lex_state = 463, .external_lex_state = 125}, + [7490] = {.lex_state = 463}, + [7491] = {.lex_state = 588}, + [7492] = {.lex_state = 471, .external_lex_state = 114}, + [7493] = {.lex_state = 588}, + [7494] = {.lex_state = 588}, + [7495] = {.lex_state = 471, .external_lex_state = 114}, + [7496] = {.lex_state = 588}, + [7497] = {.lex_state = 463}, + [7498] = {.lex_state = 588}, + [7499] = {.lex_state = 588}, + [7500] = {.lex_state = 159, .external_lex_state = 119}, + [7501] = {.lex_state = 588}, + [7502] = {.lex_state = 588}, + [7503] = {.lex_state = 159, .external_lex_state = 119}, + [7504] = {.lex_state = 463}, + [7505] = {.lex_state = 588}, + [7506] = {.lex_state = 463, .external_lex_state = 125}, + [7507] = {.lex_state = 588}, + [7508] = {.lex_state = 466}, + [7509] = {.lex_state = 588}, + [7510] = {.lex_state = 471, .external_lex_state = 114}, + [7511] = {.lex_state = 463}, + [7512] = {.lex_state = 588}, + [7513] = {.lex_state = 588}, + [7514] = {.lex_state = 588}, + [7515] = {.lex_state = 588}, + [7516] = {.lex_state = 588}, + [7517] = {.lex_state = 471, .external_lex_state = 114}, + [7518] = {.lex_state = 463}, + [7519] = {.lex_state = 466}, + [7520] = {.lex_state = 588}, + [7521] = {.lex_state = 450, .external_lex_state = 128}, + [7522] = {.lex_state = 450, .external_lex_state = 128}, + [7523] = {.lex_state = 466}, + [7524] = {.lex_state = 588}, + [7525] = {.lex_state = 463}, + [7526] = {.lex_state = 471, .external_lex_state = 114}, + [7527] = {.lex_state = 588}, + [7528] = {.lex_state = 588}, + [7529] = {.lex_state = 471, .external_lex_state = 114}, + [7530] = {.lex_state = 588}, + [7531] = {.lex_state = 588}, + [7532] = {.lex_state = 463}, + [7533] = {.lex_state = 588}, + [7534] = {.lex_state = 588}, + [7535] = {.lex_state = 588}, + [7536] = {.lex_state = 588}, + [7537] = {.lex_state = 588}, + [7538] = {.lex_state = 471, .external_lex_state = 114}, + [7539] = {.lex_state = 463}, + [7540] = {.lex_state = 588}, + [7541] = {.lex_state = 588}, + [7542] = {.lex_state = 588}, + [7543] = {.lex_state = 588}, + [7544] = {.lex_state = 588}, + [7545] = {.lex_state = 588}, + [7546] = {.lex_state = 463}, + [7547] = {.lex_state = 466}, + [7548] = {.lex_state = 588}, + [7549] = {.lex_state = 588}, + [7550] = {.lex_state = 588}, + [7551] = {.lex_state = 471, .external_lex_state = 114}, + [7552] = {.lex_state = 588}, + [7553] = {.lex_state = 463}, + [7554] = {.lex_state = 471, .external_lex_state = 114}, + [7555] = {.lex_state = 471, .external_lex_state = 114}, + [7556] = {.lex_state = 471, .external_lex_state = 114}, + [7557] = {.lex_state = 588}, + [7558] = {.lex_state = 516}, + [7559] = {.lex_state = 516}, + [7560] = {.lex_state = 463}, + [7561] = {.lex_state = 466}, + [7562] = {.lex_state = 471, .external_lex_state = 114}, + [7563] = {.lex_state = 588}, + [7564] = {.lex_state = 516}, + [7565] = {.lex_state = 588}, + [7566] = {.lex_state = 463, .external_lex_state = 125}, + [7567] = {.lex_state = 463}, + [7568] = {.lex_state = 588}, + [7569] = {.lex_state = 471, .external_lex_state = 114}, + [7570] = {.lex_state = 463, .external_lex_state = 125}, + [7571] = {.lex_state = 588}, + [7572] = {.lex_state = 588}, + [7573] = {.lex_state = 588}, + [7574] = {.lex_state = 463}, + [7575] = {.lex_state = 463, .external_lex_state = 125}, + [7576] = {.lex_state = 588}, + [7577] = {.lex_state = 471, .external_lex_state = 114}, + [7578] = {.lex_state = 588}, + [7579] = {.lex_state = 588}, + [7580] = {.lex_state = 588}, + [7581] = {.lex_state = 463}, + [7582] = {.lex_state = 471, .external_lex_state = 114}, + [7583] = {.lex_state = 466}, + [7584] = {.lex_state = 588}, + [7585] = {.lex_state = 588}, + [7586] = {.lex_state = 588}, + [7587] = {.lex_state = 463, .external_lex_state = 125}, + [7588] = {.lex_state = 463}, + [7589] = {.lex_state = 588}, + [7590] = {.lex_state = 466}, + [7591] = {.lex_state = 466}, + [7592] = {.lex_state = 466}, + [7593] = {.lex_state = 588}, + [7594] = {.lex_state = 471, .external_lex_state = 114}, + [7595] = {.lex_state = 463}, + [7596] = {.lex_state = 463, .external_lex_state = 125}, + [7597] = {.lex_state = 588}, + [7598] = {.lex_state = 463}, + [7599] = {.lex_state = 463, .external_lex_state = 125}, + [7600] = {.lex_state = 588}, + [7601] = {.lex_state = 588}, + [7602] = {.lex_state = 463}, + [7603] = {.lex_state = 463}, + [7604] = {.lex_state = 588}, + [7605] = {.lex_state = 450}, + [7606] = {.lex_state = 471, .external_lex_state = 114}, + [7607] = {.lex_state = 463}, + [7608] = {.lex_state = 463}, + [7609] = {.lex_state = 463}, + [7610] = {.lex_state = 466}, + [7611] = {.lex_state = 588}, + [7612] = {.lex_state = 588}, + [7613] = {.lex_state = 471, .external_lex_state = 114}, + [7614] = {.lex_state = 588, .external_lex_state = 130}, + [7615] = {.lex_state = 439}, + [7616] = {.lex_state = 463}, + [7617] = {.lex_state = 588}, + [7618] = {.lex_state = 588, .external_lex_state = 130}, + [7619] = {.lex_state = 471, .external_lex_state = 114}, + [7620] = {.lex_state = 588}, + [7621] = {.lex_state = 471, .external_lex_state = 114}, + [7622] = {.lex_state = 588}, + [7623] = {.lex_state = 463}, + [7624] = {.lex_state = 588}, + [7625] = {.lex_state = 588}, + [7626] = {.lex_state = 588}, + [7627] = {.lex_state = 588}, + [7628] = {.lex_state = 588}, + [7629] = {.lex_state = 516}, + [7630] = {.lex_state = 463}, + [7631] = {.lex_state = 588}, + [7632] = {.lex_state = 159, .external_lex_state = 119}, + [7633] = {.lex_state = 159, .external_lex_state = 119}, + [7634] = {.lex_state = 588}, + [7635] = {.lex_state = 588}, + [7636] = {.lex_state = 466}, + [7637] = {.lex_state = 463}, + [7638] = {.lex_state = 463, .external_lex_state = 125}, + [7639] = {.lex_state = 463, .external_lex_state = 125}, + [7640] = {.lex_state = 588}, + [7641] = {.lex_state = 159, .external_lex_state = 119}, + [7642] = {.lex_state = 159, .external_lex_state = 119}, + [7643] = {.lex_state = 463, .external_lex_state = 125}, + [7644] = {.lex_state = 463}, + [7645] = {.lex_state = 588}, + [7646] = {.lex_state = 471, .external_lex_state = 114}, + [7647] = {.lex_state = 159, .external_lex_state = 119}, + [7648] = {.lex_state = 588}, + [7649] = {.lex_state = 588}, + [7650] = {.lex_state = 159, .external_lex_state = 119}, + [7651] = {.lex_state = 463}, + [7652] = {.lex_state = 588}, + [7653] = {.lex_state = 588}, + [7654] = {.lex_state = 588}, + [7655] = {.lex_state = 588}, + [7656] = {.lex_state = 588, .external_lex_state = 130}, + [7657] = {.lex_state = 466}, + [7658] = {.lex_state = 463}, + [7659] = {.lex_state = 588, .external_lex_state = 130}, + [7660] = {.lex_state = 471, .external_lex_state = 114}, + [7661] = {.lex_state = 588}, + [7662] = {.lex_state = 588}, + [7663] = {.lex_state = 516}, + [7664] = {.lex_state = 463, .external_lex_state = 125}, + [7665] = {.lex_state = 463}, + [7666] = {.lex_state = 588}, + [7667] = {.lex_state = 463, .external_lex_state = 125}, + [7668] = {.lex_state = 471, .external_lex_state = 114}, + [7669] = {.lex_state = 588}, + [7670] = {.lex_state = 466}, + [7671] = {.lex_state = 588}, + [7672] = {.lex_state = 463}, + [7673] = {.lex_state = 588}, + [7674] = {.lex_state = 588}, + [7675] = {.lex_state = 588}, + [7676] = {.lex_state = 471, .external_lex_state = 114}, + [7677] = {.lex_state = 588}, + [7678] = {.lex_state = 588}, + [7679] = {.lex_state = 463}, + [7680] = {.lex_state = 463, .external_lex_state = 125}, + [7681] = {.lex_state = 463, .external_lex_state = 125}, + [7682] = {.lex_state = 466}, + [7683] = {.lex_state = 588}, + [7684] = {.lex_state = 471, .external_lex_state = 114}, + [7685] = {.lex_state = 588}, + [7686] = {.lex_state = 463}, + [7687] = {.lex_state = 588}, + [7688] = {.lex_state = 588}, + [7689] = {.lex_state = 588}, + [7690] = {.lex_state = 588}, + [7691] = {.lex_state = 588}, + [7692] = {.lex_state = 450, .external_lex_state = 128}, + [7693] = {.lex_state = 463}, + [7694] = {.lex_state = 450, .external_lex_state = 128}, + [7695] = {.lex_state = 466}, + [7696] = {.lex_state = 588}, + [7697] = {.lex_state = 516}, + [7698] = {.lex_state = 463, .external_lex_state = 125}, + [7699] = {.lex_state = 471, .external_lex_state = 114}, + [7700] = {.lex_state = 463}, + [7701] = {.lex_state = 463, .external_lex_state = 125}, + [7702] = {.lex_state = 588}, + [7703] = {.lex_state = 588}, + [7704] = {.lex_state = 588}, + [7705] = {.lex_state = 471}, + [7706] = {.lex_state = 463}, + [7707] = {.lex_state = 463}, + [7708] = {.lex_state = 466}, + [7709] = {.lex_state = 588}, + [7710] = {.lex_state = 588}, + [7711] = {.lex_state = 471, .external_lex_state = 114}, + [7712] = {.lex_state = 588}, + [7713] = {.lex_state = 466}, + [7714] = {.lex_state = 588}, + [7715] = {.lex_state = 588}, + [7716] = {.lex_state = 588}, + [7717] = {.lex_state = 471, .external_lex_state = 114}, + [7718] = {.lex_state = 588}, + [7719] = {.lex_state = 588}, + [7720] = {.lex_state = 588}, + [7721] = {.lex_state = 471, .external_lex_state = 114}, + [7722] = {.lex_state = 516}, + [7723] = {.lex_state = 588}, + [7724] = {.lex_state = 588}, + [7725] = {.lex_state = 588}, + [7726] = {.lex_state = 588}, + [7727] = {.lex_state = 466}, + [7728] = {.lex_state = 588}, + [7729] = {.lex_state = 588}, + [7730] = {.lex_state = 588}, + [7731] = {.lex_state = 466}, + [7732] = {.lex_state = 588}, + [7733] = {.lex_state = 466}, + [7734] = {.lex_state = 588}, + [7735] = {.lex_state = 471, .external_lex_state = 114}, + [7736] = {.lex_state = 466}, + [7737] = {.lex_state = 516}, + [7738] = {.lex_state = 471, .external_lex_state = 114}, + [7739] = {.lex_state = 588}, + [7740] = {.lex_state = 439}, + [7741] = {.lex_state = 471, .external_lex_state = 114}, + [7742] = {.lex_state = 588}, + [7743] = {.lex_state = 463, .external_lex_state = 125}, + [7744] = {.lex_state = 463, .external_lex_state = 125}, + [7745] = {.lex_state = 466}, + [7746] = {.lex_state = 471, .external_lex_state = 114}, + [7747] = {.lex_state = 588}, + [7748] = {.lex_state = 588}, + [7749] = {.lex_state = 439}, + [7750] = {.lex_state = 588}, + [7751] = {.lex_state = 471, .external_lex_state = 114}, + [7752] = {.lex_state = 588}, + [7753] = {.lex_state = 516}, + [7754] = {.lex_state = 588}, + [7755] = {.lex_state = 450, .external_lex_state = 128}, + [7756] = {.lex_state = 465}, + [7757] = {.lex_state = 471, .external_lex_state = 114}, + [7758] = {.lex_state = 588}, + [7759] = {.lex_state = 516}, + [7760] = {.lex_state = 463}, + [7761] = {.lex_state = 471, .external_lex_state = 114}, + [7762] = {.lex_state = 588}, + [7763] = {.lex_state = 588}, + [7764] = {.lex_state = 588, .external_lex_state = 129}, + [7765] = {.lex_state = 588}, + [7766] = {.lex_state = 588}, + [7767] = {.lex_state = 471, .external_lex_state = 114}, + [7768] = {.lex_state = 471, .external_lex_state = 114}, + [7769] = {.lex_state = 588, .external_lex_state = 129}, + [7770] = {.lex_state = 588}, + [7771] = {.lex_state = 471, .external_lex_state = 114}, + [7772] = {.lex_state = 588}, + [7773] = {.lex_state = 588}, + [7774] = {.lex_state = 588}, + [7775] = {.lex_state = 466}, + [7776] = {.lex_state = 471, .external_lex_state = 114}, + [7777] = {.lex_state = 463}, + [7778] = {.lex_state = 588}, + [7779] = {.lex_state = 450}, + [7780] = {.lex_state = 588}, + [7781] = {.lex_state = 463}, + [7782] = {.lex_state = 463}, + [7783] = {.lex_state = 588}, + [7784] = {.lex_state = 588}, + [7785] = {.lex_state = 588}, + [7786] = {.lex_state = 466}, + [7787] = {.lex_state = 588}, + [7788] = {.lex_state = 463}, + [7789] = {.lex_state = 588}, + [7790] = {.lex_state = 588}, + [7791] = {.lex_state = 466}, + [7792] = {.lex_state = 159, .external_lex_state = 119}, + [7793] = {.lex_state = 159, .external_lex_state = 119}, + [7794] = {.lex_state = 588}, + [7795] = {.lex_state = 588}, + [7796] = {.lex_state = 588}, + [7797] = {.lex_state = 588}, + [7798] = {.lex_state = 588}, + [7799] = {.lex_state = 159, .external_lex_state = 119}, + [7800] = {.lex_state = 463, .external_lex_state = 125}, + [7801] = {.lex_state = 588}, + [7802] = {.lex_state = 471, .external_lex_state = 114}, + [7803] = {.lex_state = 159, .external_lex_state = 119}, + [7804] = {.lex_state = 463}, + [7805] = {.lex_state = 466}, + [7806] = {.lex_state = 159, .external_lex_state = 119}, + [7807] = {.lex_state = 466}, + [7808] = {.lex_state = 463, .external_lex_state = 125}, + [7809] = {.lex_state = 463, .external_lex_state = 125}, + [7810] = {.lex_state = 588}, + [7811] = {.lex_state = 588}, + [7812] = {.lex_state = 465}, + [7813] = {.lex_state = 471, .external_lex_state = 114}, + [7814] = {.lex_state = 463, .external_lex_state = 125}, + [7815] = {.lex_state = 588}, + [7816] = {.lex_state = 588}, + [7817] = {.lex_state = 516}, + [7818] = {.lex_state = 471, .external_lex_state = 114}, + [7819] = {.lex_state = 588}, + [7820] = {.lex_state = 588}, + [7821] = {.lex_state = 588}, + [7822] = {.lex_state = 159, .external_lex_state = 119}, + [7823] = {.lex_state = 471, .external_lex_state = 114}, + [7824] = {.lex_state = 471, .external_lex_state = 114}, + [7825] = {.lex_state = 588}, + [7826] = {.lex_state = 439}, + [7827] = {.lex_state = 588}, + [7828] = {.lex_state = 588}, + [7829] = {.lex_state = 588}, + [7830] = {.lex_state = 588}, + [7831] = {.lex_state = 588}, + [7832] = {.lex_state = 471, .external_lex_state = 114}, + [7833] = {.lex_state = 466}, + [7834] = {.lex_state = 466}, + [7835] = {.lex_state = 471, .external_lex_state = 114}, + [7836] = {.lex_state = 471, .external_lex_state = 114}, + [7837] = {.lex_state = 463}, + [7838] = {.lex_state = 588}, + [7839] = {.lex_state = 463, .external_lex_state = 125}, + [7840] = {.lex_state = 471, .external_lex_state = 114}, + [7841] = {.lex_state = 471, .external_lex_state = 114}, + [7842] = {.lex_state = 463, .external_lex_state = 125}, + [7843] = {.lex_state = 588, .external_lex_state = 130}, + [7844] = {.lex_state = 588}, + [7845] = {.lex_state = 463, .external_lex_state = 125}, + [7846] = {.lex_state = 463}, + [7847] = {.lex_state = 588, .external_lex_state = 130}, + [7848] = {.lex_state = 588}, + [7849] = {.lex_state = 588}, + [7850] = {.lex_state = 471, .external_lex_state = 114}, + [7851] = {.lex_state = 588}, + [7852] = {.lex_state = 471, .external_lex_state = 114}, + [7853] = {.lex_state = 588}, + [7854] = {.lex_state = 439}, + [7855] = {.lex_state = 588}, + [7856] = {.lex_state = 588}, + [7857] = {.lex_state = 588}, + [7858] = {.lex_state = 588}, + [7859] = {.lex_state = 588}, + [7860] = {.lex_state = 463}, + [7861] = {.lex_state = 471, .external_lex_state = 114}, + [7862] = {.lex_state = 588}, + [7863] = {.lex_state = 466}, + [7864] = {.lex_state = 471, .external_lex_state = 114}, + [7865] = {.lex_state = 588}, + [7866] = {.lex_state = 471, .external_lex_state = 114}, + [7867] = {.lex_state = 588}, + [7868] = {.lex_state = 471, .external_lex_state = 114}, + [7869] = {.lex_state = 588}, + [7870] = {.lex_state = 588}, + [7871] = {.lex_state = 588}, + [7872] = {.lex_state = 588}, + [7873] = {.lex_state = 588}, + [7874] = {.lex_state = 588}, + [7875] = {.lex_state = 588}, + [7876] = {.lex_state = 588}, + [7877] = {.lex_state = 516}, + [7878] = {.lex_state = 466}, + [7879] = {.lex_state = 588}, + [7880] = {.lex_state = 588}, + [7881] = {.lex_state = 471, .external_lex_state = 114}, + [7882] = {.lex_state = 466}, + [7883] = {.lex_state = 466}, + [7884] = {.lex_state = 466}, + [7885] = {.lex_state = 463, .external_lex_state = 125}, + [7886] = {.lex_state = 516}, + [7887] = {.lex_state = 588, .external_lex_state = 129}, + [7888] = {.lex_state = 471, .external_lex_state = 114}, + [7889] = {.lex_state = 471, .external_lex_state = 114}, + [7890] = {.lex_state = 588}, + [7891] = {.lex_state = 463, .external_lex_state = 125}, + [7892] = {.lex_state = 588}, + [7893] = {.lex_state = 450, .external_lex_state = 128}, + [7894] = {.lex_state = 471, .external_lex_state = 114}, + [7895] = {.lex_state = 471, .external_lex_state = 114}, + [7896] = {.lex_state = 466}, + [7897] = {.lex_state = 465}, + [7898] = {.lex_state = 471, .external_lex_state = 114}, + [7899] = {.lex_state = 588}, + [7900] = {.lex_state = 516}, + [7901] = {.lex_state = 463}, + [7902] = {.lex_state = 471, .external_lex_state = 114}, + [7903] = {.lex_state = 588}, + [7904] = {.lex_state = 588}, + [7905] = {.lex_state = 588, .external_lex_state = 129}, + [7906] = {.lex_state = 466}, + [7907] = {.lex_state = 588}, + [7908] = {.lex_state = 463, .external_lex_state = 125}, + [7909] = {.lex_state = 588, .external_lex_state = 129}, + [7910] = {.lex_state = 588}, + [7911] = {.lex_state = 588}, + [7912] = {.lex_state = 588}, + [7913] = {.lex_state = 588}, + [7914] = {.lex_state = 588}, + [7915] = {.lex_state = 588}, + [7916] = {.lex_state = 588}, + [7917] = {.lex_state = 466}, + [7918] = {.lex_state = 588, .external_lex_state = 130}, + [7919] = {.lex_state = 588, .external_lex_state = 130}, + [7920] = {.lex_state = 466}, + [7921] = {.lex_state = 159, .external_lex_state = 119}, + [7922] = {.lex_state = 588}, + [7923] = {.lex_state = 588}, + [7924] = {.lex_state = 463}, + [7925] = {.lex_state = 450}, + [7926] = {.lex_state = 463}, + [7927] = {.lex_state = 463}, + [7928] = {.lex_state = 588}, + [7929] = {.lex_state = 588}, + [7930] = {.lex_state = 471, .external_lex_state = 114}, + [7931] = {.lex_state = 588}, + [7932] = {.lex_state = 466}, + [7933] = {.lex_state = 450, .external_lex_state = 128}, + [7934] = {.lex_state = 450, .external_lex_state = 128}, + [7935] = {.lex_state = 463}, + [7936] = {.lex_state = 471, .external_lex_state = 114}, + [7937] = {.lex_state = 463}, + [7938] = {.lex_state = 588}, + [7939] = {.lex_state = 471, .external_lex_state = 114}, + [7940] = {.lex_state = 471, .external_lex_state = 114}, + [7941] = {.lex_state = 159, .external_lex_state = 119}, + [7942] = {.lex_state = 159, .external_lex_state = 119}, + [7943] = {.lex_state = 588}, + [7944] = {.lex_state = 588}, + [7945] = {.lex_state = 588}, + [7946] = {.lex_state = 588}, + [7947] = {.lex_state = 588}, + [7948] = {.lex_state = 588}, + [7949] = {.lex_state = 159, .external_lex_state = 119}, + [7950] = {.lex_state = 588}, + [7951] = {.lex_state = 588}, + [7952] = {.lex_state = 588}, + [7953] = {.lex_state = 159, .external_lex_state = 119}, + [7954] = {.lex_state = 439}, + [7955] = {.lex_state = 466}, + [7956] = {.lex_state = 588}, + [7957] = {.lex_state = 159, .external_lex_state = 119}, + [7958] = {.lex_state = 588}, + [7959] = {.lex_state = 588}, + [7960] = {.lex_state = 159, .external_lex_state = 119}, + [7961] = {.lex_state = 466}, + [7962] = {.lex_state = 450, .external_lex_state = 128}, + [7963] = {.lex_state = 471, .external_lex_state = 114}, + [7964] = {.lex_state = 450, .external_lex_state = 128}, + [7965] = {.lex_state = 471, .external_lex_state = 114}, + [7966] = {.lex_state = 466}, + [7967] = {.lex_state = 588}, + [7968] = {.lex_state = 471, .external_lex_state = 114}, + [7969] = {.lex_state = 466}, + [7970] = {.lex_state = 588}, + [7971] = {.lex_state = 588}, + [7972] = {.lex_state = 471, .external_lex_state = 114}, + [7973] = {.lex_state = 471, .external_lex_state = 114}, + [7974] = {.lex_state = 588}, + [7975] = {.lex_state = 588}, + [7976] = {.lex_state = 588}, + [7977] = {.lex_state = 471, .external_lex_state = 114}, + [7978] = {.lex_state = 588}, + [7979] = {.lex_state = 588}, + [7980] = {.lex_state = 588}, + [7981] = {.lex_state = 588}, + [7982] = {.lex_state = 471, .external_lex_state = 114}, + [7983] = {.lex_state = 588}, + [7984] = {.lex_state = 588}, + [7985] = {.lex_state = 588}, + [7986] = {.lex_state = 466}, + [7987] = {.lex_state = 471, .external_lex_state = 114}, + [7988] = {.lex_state = 588}, + [7989] = {.lex_state = 588, .external_lex_state = 130}, + [7990] = {.lex_state = 588}, + [7991] = {.lex_state = 588}, + [7992] = {.lex_state = 588}, + [7993] = {.lex_state = 471, .external_lex_state = 114}, + [7994] = {.lex_state = 588}, + [7995] = {.lex_state = 588}, + [7996] = {.lex_state = 588}, + [7997] = {.lex_state = 471, .external_lex_state = 114}, + [7998] = {.lex_state = 439}, + [7999] = {.lex_state = 465}, + [8000] = {.lex_state = 466}, + [8001] = {.lex_state = 471, .external_lex_state = 114}, + [8002] = {.lex_state = 516}, + [8003] = {.lex_state = 463}, + [8004] = {.lex_state = 471, .external_lex_state = 114}, + [8005] = {.lex_state = 588}, + [8006] = {.lex_state = 588}, + [8007] = {.lex_state = 588, .external_lex_state = 129}, + [8008] = {.lex_state = 466}, + [8009] = {.lex_state = 588}, + [8010] = {.lex_state = 588}, + [8011] = {.lex_state = 588, .external_lex_state = 129}, + [8012] = {.lex_state = 463}, + [8013] = {.lex_state = 471, .external_lex_state = 114}, + [8014] = {.lex_state = 471, .external_lex_state = 114}, + [8015] = {.lex_state = 588}, + [8016] = {.lex_state = 588}, + [8017] = {.lex_state = 588}, + [8018] = {.lex_state = 588}, + [8019] = {.lex_state = 588}, + [8020] = {.lex_state = 588}, + [8021] = {.lex_state = 516}, + [8022] = {.lex_state = 466}, + [8023] = {.lex_state = 159, .external_lex_state = 119}, + [8024] = {.lex_state = 588}, + [8025] = {.lex_state = 159, .external_lex_state = 119}, + [8026] = {.lex_state = 588}, + [8027] = {.lex_state = 588}, + [8028] = {.lex_state = 588}, + [8029] = {.lex_state = 516}, + [8030] = {.lex_state = 463}, + [8031] = {.lex_state = 588}, + [8032] = {.lex_state = 588, .external_lex_state = 129}, + [8033] = {.lex_state = 159, .external_lex_state = 119}, + [8034] = {.lex_state = 159, .external_lex_state = 119}, + [8035] = {.lex_state = 588, .external_lex_state = 129}, + [8036] = {.lex_state = 588}, + [8037] = {.lex_state = 471, .external_lex_state = 114}, + [8038] = {.lex_state = 159, .external_lex_state = 119}, + [8039] = {.lex_state = 471, .external_lex_state = 114}, + [8040] = {.lex_state = 588}, + [8041] = {.lex_state = 588, .external_lex_state = 130}, + [8042] = {.lex_state = 588}, + [8043] = {.lex_state = 588}, + [8044] = {.lex_state = 588}, + [8045] = {.lex_state = 159, .external_lex_state = 119}, + [8046] = {.lex_state = 463}, + [8047] = {.lex_state = 466}, + [8048] = {.lex_state = 471, .external_lex_state = 114}, + [8049] = {.lex_state = 588}, + [8050] = {.lex_state = 466}, + [8051] = {.lex_state = 588}, + [8052] = {.lex_state = 588}, + [8053] = {.lex_state = 516}, + [8054] = {.lex_state = 463}, + [8055] = {.lex_state = 588}, + [8056] = {.lex_state = 466}, + [8057] = {.lex_state = 588}, + [8058] = {.lex_state = 588}, + [8059] = {.lex_state = 463}, + [8060] = {.lex_state = 463}, + [8061] = {.lex_state = 463}, + [8062] = {.lex_state = 463}, + [8063] = {.lex_state = 463}, + [8064] = {.lex_state = 463}, + [8065] = {.lex_state = 463}, + [8066] = {.lex_state = 463}, + [8067] = {.lex_state = 463}, + [8068] = {.lex_state = 463}, + [8069] = {.lex_state = 463}, + [8070] = {.lex_state = 463}, + [8071] = {.lex_state = 463}, + [8072] = {.lex_state = 463}, + [8073] = {.lex_state = 463}, + [8074] = {.lex_state = 463}, + [8075] = {.lex_state = 463}, + [8076] = {.lex_state = 463}, + [8077] = {.lex_state = 463}, + [8078] = {.lex_state = 463}, + [8079] = {.lex_state = 463}, + [8080] = {.lex_state = 463}, + [8081] = {.lex_state = 463}, + [8082] = {.lex_state = 463}, + [8083] = {.lex_state = 463}, + [8084] = {.lex_state = 463}, + [8085] = {.lex_state = 463}, + [8086] = {.lex_state = 463}, + [8087] = {.lex_state = 463}, + [8088] = {.lex_state = 463}, + [8089] = {.lex_state = 463}, + [8090] = {.lex_state = 463}, + [8091] = {.lex_state = 463}, + [8092] = {.lex_state = 463}, + [8093] = {.lex_state = 463}, + [8094] = {.lex_state = 463}, + [8095] = {.lex_state = 463}, + [8096] = {.lex_state = 463}, + [8097] = {.lex_state = 463}, + [8098] = {.lex_state = 463}, + [8099] = {.lex_state = 463}, + [8100] = {.lex_state = 463}, + [8101] = {.lex_state = 463}, + [8102] = {.lex_state = 463}, + [8103] = {.lex_state = 463}, + [8104] = {.lex_state = 463}, + [8105] = {.lex_state = 463}, + [8106] = {.lex_state = 463}, + [8107] = {.lex_state = 463}, + [8108] = {.lex_state = 463}, + [8109] = {.lex_state = 463}, + [8110] = {.lex_state = 463}, + [8111] = {.lex_state = 463}, + [8112] = {.lex_state = 463}, + [8113] = {.lex_state = 463}, + [8114] = {.lex_state = 463}, + [8115] = {.lex_state = 463}, + [8116] = {.lex_state = 463}, + [8117] = {.lex_state = 463}, + [8118] = {.lex_state = 463}, + [8119] = {.lex_state = 463}, + [8120] = {.lex_state = 463}, + [8121] = {.lex_state = 463}, + [8122] = {.lex_state = 463}, + [8123] = {.lex_state = 463}, + [8124] = {.lex_state = 463}, + [8125] = {.lex_state = 466}, + [8126] = {.lex_state = 466}, + [8127] = {.lex_state = 463, .external_lex_state = 125}, + [8128] = {.lex_state = 471, .external_lex_state = 114}, + [8129] = {.lex_state = 588}, + [8130] = {.lex_state = 588}, + [8131] = {.lex_state = 588}, + [8132] = {.lex_state = 588}, + [8133] = {.lex_state = 463}, + [8134] = {.lex_state = 588}, + [8135] = {.lex_state = 516}, + [8136] = {.lex_state = 159, .external_lex_state = 119}, + [8137] = {.lex_state = 159, .external_lex_state = 119}, + [8138] = {.lex_state = 588}, + [8139] = {.lex_state = 588}, + [8140] = {.lex_state = 463}, + [8141] = {.lex_state = 463}, + [8142] = {.lex_state = 463}, + [8143] = {.lex_state = 463}, + [8144] = {.lex_state = 463}, + [8145] = {.lex_state = 463}, + [8146] = {.lex_state = 463}, + [8147] = {.lex_state = 463}, + [8148] = {.lex_state = 463}, + [8149] = {.lex_state = 463}, + [8150] = {.lex_state = 463}, + [8151] = {.lex_state = 463}, + [8152] = {.lex_state = 463}, + [8153] = {.lex_state = 463}, + [8154] = {.lex_state = 463}, + [8155] = {.lex_state = 463}, + [8156] = {.lex_state = 463}, + [8157] = {.lex_state = 463}, + [8158] = {.lex_state = 463}, + [8159] = {.lex_state = 463}, + [8160] = {.lex_state = 463}, + [8161] = {.lex_state = 463}, + [8162] = {.lex_state = 463}, + [8163] = {.lex_state = 463}, + [8164] = {.lex_state = 463}, + [8165] = {.lex_state = 463}, + [8166] = {.lex_state = 463}, + [8167] = {.lex_state = 463}, + [8168] = {.lex_state = 463}, + [8169] = {.lex_state = 463}, + [8170] = {.lex_state = 463}, + [8171] = {.lex_state = 463}, + [8172] = {.lex_state = 463}, + [8173] = {.lex_state = 463}, + [8174] = {.lex_state = 463}, + [8175] = {.lex_state = 463}, + [8176] = {.lex_state = 463}, + [8177] = {.lex_state = 463}, + [8178] = {.lex_state = 463}, + [8179] = {.lex_state = 463}, + [8180] = {.lex_state = 463}, + [8181] = {.lex_state = 463}, + [8182] = {.lex_state = 463}, + [8183] = {.lex_state = 463}, + [8184] = {.lex_state = 463}, + [8185] = {.lex_state = 463}, + [8186] = {.lex_state = 463}, + [8187] = {.lex_state = 463}, + [8188] = {.lex_state = 463}, + [8189] = {.lex_state = 463}, + [8190] = {.lex_state = 463}, + [8191] = {.lex_state = 463}, + [8192] = {.lex_state = 463}, + [8193] = {.lex_state = 463}, + [8194] = {.lex_state = 463}, + [8195] = {.lex_state = 463}, + [8196] = {.lex_state = 463}, + [8197] = {.lex_state = 463}, + [8198] = {.lex_state = 463}, + [8199] = {.lex_state = 463}, + [8200] = {.lex_state = 463}, + [8201] = {.lex_state = 463}, + [8202] = {.lex_state = 463}, + [8203] = {.lex_state = 463}, + [8204] = {.lex_state = 463}, + [8205] = {.lex_state = 463}, + [8206] = {.lex_state = 463}, + [8207] = {.lex_state = 463}, + [8208] = {.lex_state = 159, .external_lex_state = 119}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -28841,45 +30899,45 @@ 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(7507), + [sym__statements] = STATE(7620), + [sym__statement_not_pipeline] = STATE(7155), + [sym_redirected_statement] = STATE(5140), + [sym_for_statement] = STATE(5140), + [sym_c_style_for_statement] = STATE(5140), + [sym_while_statement] = STATE(4741), + [sym_if_statement] = STATE(4741), + [sym_case_statement] = STATE(5140), + [sym_function_definition] = STATE(5140), + [sym_compound_statement] = STATE(5140), + [sym_subshell] = STATE(5140), + [sym_pipeline] = STATE(5486), + [sym_list] = STATE(5140), + [sym_negated_command] = STATE(5140), + [sym_test_command] = STATE(5140), + [sym_declaration_command] = STATE(5140), + [sym_unset_command] = STATE(5140), + [sym_command] = STATE(5140), + [sym_command_name] = STATE(558), + [sym_variable_assignment] = STATE(1009), + [sym_variable_assignments] = STATE(5140), + [sym_subscript] = STATE(7249), + [sym_file_redirect] = STATE(2463), + [sym_herestring_redirect] = STATE(2495), + [sym_arithmetic_expansion] = STATE(950), + [sym_brace_expression] = STATE(950), + [sym_concatenation] = STATE(1602), + [sym_string] = STATE(950), + [sym_translated_string] = STATE(950), + [sym_number] = STATE(950), + [sym_simple_expansion] = STATE(950), + [sym_expansion] = STATE(950), + [sym_command_substitution] = STATE(950), + [sym_process_substitution] = STATE(950), + [aux_sym__statements_repeat1] = STATE(452), + [aux_sym_redirected_statement_repeat2] = STATE(4846), + [aux_sym_command_repeat1] = STATE(1036), + [aux_sym__literal_repeat1] = STATE(1321), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -28935,50 +30993,50 @@ 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(8139), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym__expression] = STATE(3314), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(498), + [sym_brace_expression] = STATE(498), + [sym_concatenation] = STATE(523), + [sym_string] = STATE(498), + [sym_translated_string] = STATE(498), + [sym_number] = STATE(498), + [sym_simple_expansion] = STATE(498), + [sym_expansion] = STATE(498), + [sym_command_substitution] = STATE(498), + [sym_process_substitution] = STATE(498), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(520), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29038,50 +31096,50 @@ 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(8024), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym__expression] = STATE(3273), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(498), + [sym_brace_expression] = STATE(498), + [sym_concatenation] = STATE(523), + [sym_string] = STATE(498), + [sym_translated_string] = STATE(498), + [sym_number] = STATE(498), + [sym_simple_expansion] = STATE(498), + [sym_expansion] = STATE(498), + [sym_command_substitution] = STATE(498), + [sym_process_substitution] = STATE(498), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(520), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29141,50 +31199,50 @@ 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(7685), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym__expression] = STATE(3314), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(498), + [sym_brace_expression] = STATE(498), + [sym_concatenation] = STATE(523), + [sym_string] = STATE(498), + [sym_translated_string] = STATE(498), + [sym_number] = STATE(498), + [sym_simple_expansion] = STATE(498), + [sym_expansion] = STATE(498), + [sym_command_substitution] = STATE(498), + [sym_process_substitution] = STATE(498), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(520), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29244,48 +31302,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5636), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3313), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29346,48 +31404,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5678), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3296), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29448,48 +31506,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5745), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3300), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29550,48 +31608,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5747), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3168), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29652,48 +31710,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5689), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3289), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29754,48 +31812,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5717), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3357), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29856,48 +31914,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5626), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3195), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -29958,48 +32016,48 @@ 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_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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [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__literal_repeat1] = STATE(517), + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5658), + [sym_for_statement] = STATE(5880), + [sym_c_style_for_statement] = STATE(5880), + [sym_while_statement] = STATE(5610), + [sym_if_statement] = STATE(5610), + [sym_case_statement] = STATE(5880), + [sym_function_definition] = STATE(5880), + [sym_compound_statement] = STATE(5880), + [sym_subshell] = STATE(5880), + [sym_pipeline] = STATE(6001), + [sym_list] = STATE(5880), + [sym_negated_command] = STATE(5880), + [sym_test_command] = STATE(5880), + [sym_declaration_command] = STATE(5880), + [sym_unset_command] = STATE(5880), + [sym_command] = STATE(5880), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2022), + [sym_variable_assignments] = STATE(5880), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3076), + [sym_herestring_redirect] = STATE(3077), + [sym__expression] = STATE(3334), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_redirected_statement_repeat2] = STATE(5534), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), [sym_word] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), [anon_sym_select] = ACTIONS(145), @@ -30060,24 +32118,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(3337), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(2708), + [sym_brace_expression] = STATE(2708), + [sym_concatenation] = STATE(2784), + [sym_string] = STATE(2708), + [sym_translated_string] = STATE(2708), + [sym_number] = STATE(2708), + [sym_simple_expansion] = STATE(2708), + [sym_expansion] = STATE(2708), + [sym_command_substitution] = STATE(2708), + [sym_process_substitution] = STATE(2708), + [aux_sym__literal_repeat1] = STATE(2654), + [aux_sym_concatenation_repeat1] = STATE(497), [sym_word] = ACTIONS(235), [anon_sym_SEMI] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(239), @@ -30159,46 +32217,46 @@ 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(16), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6723), + [sym_else_clause] = STATE(8135), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6723), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30256,46 +32314,46 @@ 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(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6765), + [sym_else_clause] = STATE(7629), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6765), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30353,46 +32411,46 @@ 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(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6792), + [sym_else_clause] = STATE(7558), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6792), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30450,46 +32508,46 @@ 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(18), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6758), + [sym_else_clause] = STATE(7473), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6758), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30547,46 +32605,46 @@ 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(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6711), + [sym_else_clause] = STATE(7753), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6711), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30644,46 +32702,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(340), }, [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), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6797), + [sym_else_clause] = STATE(7817), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6797), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30741,46 +32799,46 @@ 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(15), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6752), + [sym_else_clause] = STATE(7564), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6752), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30838,46 +32896,46 @@ 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(19), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_elif_clause] = STATE(6739), + [sym_else_clause] = STATE(7877), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_if_statement_repeat1] = STATE(6739), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -30935,25 +32993,1081 @@ 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(7001), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(378), + [anon_sym_SEMI_AMP] = ACTIONS(380), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(380), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(23)] = { + [sym__statements] = STATE(6997), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(434), + [anon_sym_SEMI_SEMI] = ACTIONS(436), + [anon_sym_SEMI_AMP] = ACTIONS(438), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(440), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(24)] = { + [sym__statements] = STATE(6988), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(442), + [anon_sym_SEMI_SEMI] = ACTIONS(444), + [anon_sym_SEMI_AMP] = ACTIONS(446), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(446), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(25)] = { + [sym__statements] = STATE(7003), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(448), + [anon_sym_SEMI_SEMI] = ACTIONS(450), + [anon_sym_SEMI_AMP] = ACTIONS(452), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(452), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(26)] = { + [sym__statements] = STATE(6959), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(454), + [anon_sym_SEMI_SEMI] = ACTIONS(456), + [anon_sym_SEMI_AMP] = ACTIONS(458), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(460), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(27)] = { + [sym__statements] = STATE(6985), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(454), + [anon_sym_SEMI_SEMI] = ACTIONS(462), + [anon_sym_SEMI_AMP] = ACTIONS(464), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(466), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(28)] = { + [sym__statements] = STATE(6956), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(434), + [anon_sym_SEMI_SEMI] = ACTIONS(468), + [anon_sym_SEMI_AMP] = ACTIONS(470), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(472), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(29)] = { + [sym__statements] = STATE(6982), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(474), + [anon_sym_SEMI_SEMI] = ACTIONS(476), + [anon_sym_SEMI_AMP] = ACTIONS(478), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(480), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(30)] = { + [sym__statements] = STATE(6995), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(482), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_SEMI_AMP] = ACTIONS(486), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(488), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(31)] = { + [sym__statements] = STATE(6981), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), [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(482), + [anon_sym_SEMI_SEMI] = ACTIONS(490), + [anon_sym_SEMI_AMP] = ACTIONS(492), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(494), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(32)] = { + [sym__statements] = STATE(6946), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(474), + [anon_sym_SEMI_SEMI] = ACTIONS(496), + [anon_sym_SEMI_AMP] = ACTIONS(498), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(500), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(33)] = { + [sym__expression] = STATE(3272), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(2719), + [sym_brace_expression] = STATE(2719), + [sym_concatenation] = STATE(3317), + [sym_string] = STATE(2719), + [sym_translated_string] = STATE(2719), + [sym_number] = STATE(2719), + [sym_simple_expansion] = STATE(2719), + [sym_expansion] = STATE(2719), + [sym_command_substitution] = STATE(2719), + [sym_process_substitution] = STATE(2719), + [aux_sym__literal_repeat1] = STATE(2814), + [aux_sym_concatenation_repeat1] = STATE(526), + [sym_word] = ACTIONS(502), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -30963,13 +34077,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_AMP_AMP] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(241), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -30977,8 +34091,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(241), [anon_sym_GT_GT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(239), @@ -30987,10 +34101,10 @@ 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_LPAREN] = ACTIONS(509), [anon_sym_PIPE_AMP] = ACTIONS(276), - [anon_sym_BANG] = ACTIONS(365), - [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(504), [anon_sym_EQ_TILDE] = ACTIONS(241), [anon_sym_AMP_GT] = ACTIONS(237), [anon_sym_AMP_GT_GT] = ACTIONS(276), @@ -31007,1316 +34121,260 @@ 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), - [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_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(521), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(525), + [sym_ansi_c_string] = ACTIONS(525), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(276), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(395), + [sym__concat] = ACTIONS(517), + [sym_test_operator] = ACTIONS(541), [sym__bare_dollar] = ACTIONS(276), - [sym__brace_start] = ACTIONS(397), - }, - [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), - [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(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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(591), - [sym_variable_name] = ACTIONS(594), - [sym_test_operator] = ACTIONS(597), - [sym__brace_start] = ACTIONS(600), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), - }, - [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_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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym__brace_start] = ACTIONS(543), }, [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_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), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(545), + [anon_sym_for] = ACTIONS(548), + [anon_sym_select] = ACTIONS(551), + [anon_sym_LPAREN_LPAREN] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_while] = ACTIONS(566), + [anon_sym_until] = ACTIONS(566), + [anon_sym_do] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_then] = ACTIONS(569), + [anon_sym_fi] = ACTIONS(569), + [anon_sym_elif] = ACTIONS(569), + [anon_sym_else] = ACTIONS(569), + [anon_sym_case] = ACTIONS(574), + [anon_sym_function] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(589), + [anon_sym_declare] = ACTIONS(592), + [anon_sym_typeset] = ACTIONS(592), + [anon_sym_export] = ACTIONS(592), + [anon_sym_readonly] = ACTIONS(592), + [anon_sym_local] = ACTIONS(592), + [anon_sym_unset] = ACTIONS(595), + [anon_sym_unsetenv] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(557), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(557), + [anon_sym_GT_AMP] = ACTIONS(557), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(598), + [anon_sym_GT_AMP_DASH] = ACTIONS(598), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(604), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(610), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(616), + [sym_raw_string] = ACTIONS(619), + [sym_ansi_c_string] = ACTIONS(619), + [aux_sym_number_token1] = ACTIONS(622), + [aux_sym_number_token2] = ACTIONS(625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(634), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(637), + [anon_sym_LT_LPAREN] = ACTIONS(640), + [anon_sym_GT_LPAREN] = ACTIONS(640), [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(643), + [sym_variable_name] = ACTIONS(646), + [sym_test_operator] = ACTIONS(649), + [sym__brace_start] = ACTIONS(652), }, [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), + [sym__statements] = STATE(6998), + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4724), + [sym_for_statement] = STATE(4724), + [sym_c_style_for_statement] = STATE(4724), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4724), + [sym_function_definition] = STATE(4724), + [sym_compound_statement] = STATE(4724), + [sym_subshell] = STATE(4724), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4724), + [sym_negated_command] = STATE(4724), + [sym_test_command] = STATE(4724), + [sym_declaration_command] = STATE(4724), + [sym_unset_command] = STATE(4724), + [sym_command] = STATE(4724), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(871), + [sym_variable_assignments] = STATE(4724), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(455), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(655), + [anon_sym_SEMI_SEMI] = ACTIONS(657), + [anon_sym_SEMI_AMP] = ACTIONS(659), [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), + [anon_sym_function] = ACTIONS(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), [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(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), }, [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_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__statements] = STATE(7062), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32330,8 +34388,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(458), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(460), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32374,44 +34432,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7054), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32425,8 +34483,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(470), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(472), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32469,44 +34527,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7030), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32520,8 +34578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(464), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(466), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32564,44 +34622,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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__statements] = STATE(7176), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32615,8 +34673,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI_AMP] = ACTIONS(659), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(659), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32659,44 +34717,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7153), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32710,8 +34768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(741), - [anon_sym_SEMI_AMP] = ACTIONS(627), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(627), + [anon_sym_SEMI_AMP] = ACTIONS(446), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(446), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32754,44 +34812,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7159), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32805,8 +34863,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_SEMI_AMP] = ACTIONS(607), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(607), + [anon_sym_SEMI_AMP] = ACTIONS(380), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(380), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32849,44 +34907,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7145), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32900,8 +34958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(745), - [anon_sym_SEMI_AMP] = ACTIONS(639), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(641), + [anon_sym_SEMI_AMP] = ACTIONS(438), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(440), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -32944,44 +35002,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7067), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -32995,8 +35053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_SEMI_AMP] = ACTIONS(645), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(647), + [anon_sym_SEMI_AMP] = ACTIONS(452), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(452), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33039,44 +35097,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7144), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33090,8 +35148,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_SEMI_AMP] = ACTIONS(651), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(653), + [anon_sym_SEMI_AMP] = ACTIONS(478), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(480), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33134,44 +35192,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7013), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33185,8 +35243,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_SEMI_AMP] = ACTIONS(657), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(659), + [anon_sym_SEMI_AMP] = ACTIONS(486), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(488), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33229,44 +35287,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7105), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33280,8 +35338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_SEMI_AMP] = ACTIONS(489), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(491), + [anon_sym_SEMI_AMP] = ACTIONS(492), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(494), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33324,44 +35382,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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_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__statements] = STATE(7195), + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4911), + [sym_for_statement] = STATE(4911), + [sym_c_style_for_statement] = STATE(4911), + [sym_while_statement] = STATE(4617), + [sym_if_statement] = STATE(4617), + [sym_case_statement] = STATE(4911), + [sym_function_definition] = STATE(4911), + [sym_compound_statement] = STATE(4911), + [sym_subshell] = STATE(4911), + [sym_pipeline] = STATE(5354), + [sym_list] = STATE(4911), + [sym_negated_command] = STATE(4911), + [sym_test_command] = STATE(4911), + [sym_declaration_command] = STATE(4911), + [sym_unset_command] = STATE(4911), + [sym_command] = STATE(4911), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(939), + [sym_variable_assignments] = STATE(4911), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -33375,8 +35433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(677), [anon_sym_case] = ACTIONS(679), [anon_sym_SEMI_SEMI] = ACTIONS(755), - [anon_sym_SEMI_AMP] = ACTIONS(423), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(425), + [anon_sym_SEMI_AMP] = ACTIONS(498), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(500), [anon_sym_function] = ACTIONS(683), [anon_sym_LBRACE] = ACTIONS(685), [anon_sym_BANG] = ACTIONS(687), @@ -33419,43 +35477,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(733), }, [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(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33514,42 +35572,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33607,44 +35665,137 @@ 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__statements] = STATE(8028), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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_RPAREN] = ACTIONS(763), + [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(51)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_do_group] = STATE(5988), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33655,7 +35806,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(761), + [anon_sym_do] = ACTIONS(773), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -33699,45 +35850,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(52)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_do_group] = STATE(5157), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33748,7 +35899,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(775), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -33792,46 +35943,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(53)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_do_group] = STATE(5272), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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(777), + [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(54)] = { + [sym__statements] = STATE(8028), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -33839,14 +36083,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(767), + [anon_sym_RPAREN] = ACTIONS(779), [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), @@ -33867,10 +36111,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), @@ -33882,48 +36126,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(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), + [STATE(55)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_do_group] = STATE(4905), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -33934,7 +36178,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(777), + [anon_sym_do] = ACTIONS(781), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -33978,46 +36222,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(56)] = { + [sym__statements] = STATE(7611), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34025,14 +36269,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(779), + [anon_sym_RPAREN] = ACTIONS(783), [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), @@ -34053,10 +36297,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), @@ -34068,49 +36312,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(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), + [STATE(57)] = { + [sym__statements] = STATE(7724), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34118,14 +36362,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(781), + [anon_sym_RPAREN] = ACTIONS(785), [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), @@ -34146,10 +36390,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 +36405,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(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), + [STATE(58)] = { + [sym__statements] = STATE(7967), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34211,14 +36455,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(783), + [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), @@ -34239,10 +36483,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 +36498,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(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), + [STATE(59)] = { + [sym__statements] = STATE(8028), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34304,14 +36548,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(785), + [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), @@ -34332,10 +36576,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 +36591,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(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), + [STATE(60)] = { + [sym__statements] = STATE(8028), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34490,14 +36641,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(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), @@ -34518,10 +36669,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 +36684,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(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(61)] = { + [sym__statements] = STATE(8028), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34583,14 +36734,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(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), @@ -34611,10 +36762,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 +36777,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(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(62)] = { + [sym__statements] = STATE(8028), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34676,14 +36827,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(795), [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 +36855,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,141 +36870,141 @@ 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(63)] = { + [aux_sym__terminated_statement] = STATE(102), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5152), + [sym_for_statement] = STATE(5152), + [sym_c_style_for_statement] = STATE(5152), + [sym_while_statement] = STATE(4700), + [sym_if_statement] = STATE(4700), + [sym_case_statement] = STATE(5152), + [sym_function_definition] = STATE(5152), + [sym_compound_statement] = STATE(5152), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5493), + [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(560), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(5152), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), [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(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), [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(803), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(805), + [anon_sym_BANG] = ACTIONS(807), [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), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(133), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(340), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), }, - [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(64)] = { + [sym__statements] = STATE(7690), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -34867,7 +37018,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), @@ -34888,10 +37039,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), @@ -34903,139 +37054,139 @@ 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(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), - [sym_word] = ACTIONS(284), + [STATE(65)] = { + [aux_sym__terminated_statement] = STATE(67), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5016), + [sym_for_statement] = STATE(5016), + [sym_c_style_for_statement] = STATE(5016), + [sym_while_statement] = STATE(4633), + [sym_if_statement] = STATE(4633), + [sym_case_statement] = STATE(5016), + [sym_function_definition] = STATE(5016), + [sym_compound_statement] = STATE(5016), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5487), + [sym_list] = STATE(5016), + [sym_negated_command] = STATE(5016), + [sym_test_command] = STATE(5016), + [sym_declaration_command] = STATE(5016), + [sym_unset_command] = STATE(5016), + [sym_command] = STATE(5016), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1024), + [sym_variable_assignments] = STATE(5016), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), [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(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), [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(803), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(807), [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(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), [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(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), }, - [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(66)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35047,7 +37198,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(797), + [anon_sym_then] = ACTIONS(853), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -35090,320 +37241,412 @@ 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), - [sym_word] = ACTIONS(284), + [STATE(67)] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5093), + [sym_for_statement] = STATE(5093), + [sym_c_style_for_statement] = STATE(5093), + [sym_while_statement] = STATE(4696), + [sym_if_statement] = STATE(4696), + [sym_case_statement] = STATE(5093), + [sym_function_definition] = STATE(5093), + [sym_compound_statement] = STATE(5093), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5430), + [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(560), + [sym_variable_assignment] = STATE(1061), + [sym_variable_assignments] = STATE(5093), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), [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(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), [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(803), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(807), [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(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), [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(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), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), }, [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__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5278), + [sym_for_statement] = STATE(5278), + [sym_c_style_for_statement] = STATE(5278), + [sym_while_statement] = STATE(4927), + [sym_if_statement] = STATE(4927), + [sym_case_statement] = STATE(5278), + [sym_function_definition] = STATE(5278), + [sym_compound_statement] = STATE(5278), + [sym_subshell] = STATE(5278), + [sym_pipeline] = STATE(5565), + [sym_list] = STATE(5278), + [sym_negated_command] = STATE(5278), + [sym_test_command] = STATE(5278), + [sym_declaration_command] = STATE(5278), + [sym_unset_command] = STATE(5278), + [sym_command] = STATE(5278), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1104), + [sym_variable_assignments] = STATE(5278), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(545), + [anon_sym_for] = ACTIONS(548), + [anon_sym_select] = ACTIONS(551), + [anon_sym_LPAREN_LPAREN] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_while] = ACTIONS(566), + [anon_sym_until] = ACTIONS(566), + [anon_sym_if] = ACTIONS(571), + [anon_sym_case] = ACTIONS(574), + [anon_sym_function] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(589), + [anon_sym_declare] = ACTIONS(592), + [anon_sym_typeset] = ACTIONS(592), + [anon_sym_export] = ACTIONS(592), + [anon_sym_readonly] = ACTIONS(592), + [anon_sym_local] = ACTIONS(592), + [anon_sym_unset] = ACTIONS(595), + [anon_sym_unsetenv] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(557), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(557), + [anon_sym_GT_AMP] = ACTIONS(557), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(598), + [anon_sym_GT_AMP_DASH] = ACTIONS(598), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(604), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(610), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(616), + [sym_raw_string] = ACTIONS(619), + [sym_ansi_c_string] = ACTIONS(619), + [aux_sym_number_token1] = ACTIONS(622), + [aux_sym_number_token2] = ACTIONS(625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(634), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(637), + [anon_sym_LT_LPAREN] = ACTIONS(640), + [anon_sym_GT_LPAREN] = ACTIONS(640), [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(643), + [sym_variable_name] = ACTIONS(646), + [sym_test_operator] = ACTIONS(649), + [sym__brace_start] = ACTIONS(652), }, [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), + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(545), + [anon_sym_for] = ACTIONS(548), + [anon_sym_select] = ACTIONS(551), + [anon_sym_LPAREN_LPAREN] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(563), + [anon_sym_while] = ACTIONS(566), + [anon_sym_until] = ACTIONS(566), + [anon_sym_done] = ACTIONS(569), + [anon_sym_if] = ACTIONS(571), + [anon_sym_case] = ACTIONS(574), + [anon_sym_function] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_LBRACK_LBRACK] = ACTIONS(589), + [anon_sym_declare] = ACTIONS(592), + [anon_sym_typeset] = ACTIONS(592), + [anon_sym_export] = ACTIONS(592), + [anon_sym_readonly] = ACTIONS(592), + [anon_sym_local] = ACTIONS(592), + [anon_sym_unset] = ACTIONS(595), + [anon_sym_unsetenv] = ACTIONS(595), + [anon_sym_AMP_GT] = ACTIONS(557), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(557), + [anon_sym_GT_AMP] = ACTIONS(557), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(598), + [anon_sym_GT_AMP_DASH] = ACTIONS(598), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(604), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(610), + [sym__special_character] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(616), + [sym_raw_string] = ACTIONS(619), + [sym_ansi_c_string] = ACTIONS(619), + [aux_sym_number_token1] = ACTIONS(622), + [aux_sym_number_token2] = ACTIONS(625), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(631), + [anon_sym_BQUOTE] = ACTIONS(634), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(637), + [anon_sym_LT_LPAREN] = ACTIONS(640), + [anon_sym_GT_LPAREN] = ACTIONS(640), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(643), + [sym_variable_name] = ACTIONS(646), + [sym_test_operator] = ACTIONS(649), + [sym__brace_start] = ACTIONS(652), + }, + [STATE(70)] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5147), + [sym_for_statement] = STATE(5147), + [sym_c_style_for_statement] = STATE(5147), + [sym_while_statement] = STATE(4705), + [sym_if_statement] = STATE(4705), + [sym_case_statement] = STATE(5147), + [sym_function_definition] = STATE(5147), + [sym_compound_statement] = STATE(5147), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5490), + [sym_list] = STATE(5147), + [sym_negated_command] = STATE(5147), + [sym_test_command] = STATE(5147), + [sym_declaration_command] = STATE(5147), + [sym_unset_command] = STATE(5147), + [sym_command] = STATE(5147), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1003), + [sym_variable_assignments] = STATE(5147), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(71)] = { + [aux_sym__terminated_statement] = STATE(82), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35414,11 +37657,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(803), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35458,44 +37701,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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(72)] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5171), + [sym_for_statement] = STATE(5171), + [sym_c_style_for_statement] = STATE(5171), + [sym_while_statement] = STATE(4712), + [sym_if_statement] = STATE(4712), + [sym_case_statement] = STATE(5171), + [sym_function_definition] = STATE(5171), + [sym_compound_statement] = STATE(5171), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5506), + [sym_list] = STATE(5171), + [sym_negated_command] = STATE(5171), + [sym_test_command] = STATE(5171), + [sym_declaration_command] = STATE(5171), + [sym_unset_command] = STATE(5171), + [sym_command] = STATE(5171), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1005), + [sym_variable_assignments] = STATE(5171), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(73)] = { + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35506,7 +37841,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(805), + [anon_sym_done] = ACTIONS(865), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -35550,44 +37885,44 @@ 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), + [STATE(74)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35598,11 +37933,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(867), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -35642,136 +37977,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), - [sym_word] = ACTIONS(284), + [STATE(75)] = { + [aux_sym__terminated_statement] = STATE(76), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5002), + [sym_for_statement] = STATE(5002), + [sym_c_style_for_statement] = STATE(5002), + [sym_while_statement] = STATE(4761), + [sym_if_statement] = STATE(4761), + [sym_case_statement] = STATE(5002), + [sym_function_definition] = STATE(5002), + [sym_compound_statement] = STATE(5002), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5509), + [sym_list] = STATE(5002), + [sym_negated_command] = STATE(5002), + [sym_test_command] = STATE(5002), + [sym_declaration_command] = STATE(5002), + [sym_unset_command] = STATE(5002), + [sym_command] = STATE(5002), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1014), + [sym_variable_assignments] = STATE(5002), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), [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(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), [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_function] = ACTIONS(803), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_BANG] = ACTIONS(807), [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(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), [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(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), }, - [STATE(73)] = { + [STATE(76)] = { [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__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4764), + [sym_if_statement] = STATE(4764), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5454), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1017), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(77)] = { + [aux_sym__terminated_statement] = STATE(78), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35782,7 +38209,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(811), + [anon_sym_done] = ACTIONS(873), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -35826,44 +38253,44 @@ 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(78)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35874,11 +38301,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(875), [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,44 +38345,136 @@ 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), + [STATE(79)] = { + [aux_sym__terminated_statement] = STATE(442), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5038), + [sym_for_statement] = STATE(5038), + [sym_c_style_for_statement] = STATE(5038), + [sym_while_statement] = STATE(4627), + [sym_if_statement] = STATE(4627), + [sym_case_statement] = STATE(5038), + [sym_function_definition] = STATE(5038), + [sym_compound_statement] = STATE(5038), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5455), + [sym_list] = STATE(5038), + [sym_negated_command] = STATE(5038), + [sym_test_command] = STATE(5038), + [sym_declaration_command] = STATE(5038), + [sym_unset_command] = STATE(5038), + [sym_command] = STATE(5038), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1019), + [sym_variable_assignments] = STATE(5038), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(80)] = { + [aux_sym__terminated_statement] = STATE(81), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -35966,11 +38485,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(879), [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), @@ -36010,44 +38529,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [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(81)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36058,7 +38577,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(881), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -36102,44 +38621,44 @@ 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), + [STATE(82)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36150,7 +38669,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(819), + [anon_sym_done] = ACTIONS(883), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -36194,44 +38713,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [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(83)] = { + [aux_sym__terminated_statement] = STATE(84), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5085), + [sym_for_statement] = STATE(5085), + [sym_c_style_for_statement] = STATE(5085), + [sym_while_statement] = STATE(4659), + [sym_if_statement] = STATE(4659), + [sym_case_statement] = STATE(5085), + [sym_function_definition] = STATE(5085), + [sym_compound_statement] = STATE(5085), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5522), + [sym_list] = STATE(5085), + [sym_negated_command] = STATE(5085), + [sym_test_command] = STATE(5085), + [sym_declaration_command] = STATE(5085), + [sym_unset_command] = STATE(5085), + [sym_command] = STATE(5085), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1023), + [sym_variable_assignments] = STATE(5085), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(84)] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5096), + [sym_for_statement] = STATE(5096), + [sym_c_style_for_statement] = STATE(5096), + [sym_while_statement] = STATE(4663), + [sym_if_statement] = STATE(4663), + [sym_case_statement] = STATE(5096), + [sym_function_definition] = STATE(5096), + [sym_compound_statement] = STATE(5096), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5431), + [sym_list] = STATE(5096), + [sym_negated_command] = STATE(5096), + [sym_test_command] = STATE(5096), + [sym_declaration_command] = STATE(5096), + [sym_unset_command] = STATE(5096), + [sym_command] = STATE(5096), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(5096), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(85)] = { + [aux_sym__terminated_statement] = STATE(86), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36242,11 +38945,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(889), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(821), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36286,44 +38989,44 @@ 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(86)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36334,11 +39037,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(891), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(823), [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), @@ -36378,44 +39081,136 @@ 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(87)] = { + [aux_sym__terminated_statement] = STATE(89), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5106), + [sym_for_statement] = STATE(5106), + [sym_c_style_for_statement] = STATE(5106), + [sym_while_statement] = STATE(4668), + [sym_if_statement] = STATE(4668), + [sym_case_statement] = STATE(5106), + [sym_function_definition] = STATE(5106), + [sym_compound_statement] = STATE(5106), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5439), + [sym_list] = STATE(5106), + [sym_negated_command] = STATE(5106), + [sym_test_command] = STATE(5106), + [sym_declaration_command] = STATE(5106), + [sym_unset_command] = STATE(5106), + [sym_command] = STATE(5106), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1026), + [sym_variable_assignments] = STATE(5106), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(88)] = { + [aux_sym__terminated_statement] = STATE(439), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36426,8 +39221,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(825), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(895), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -36470,44 +39265,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [STATE(81)] = { + [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), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_c_style_for_statement] = STATE(5113), + [sym_while_statement] = STATE(4680), + [sym_if_statement] = STATE(4680), + [sym_case_statement] = STATE(5113), + [sym_function_definition] = STATE(5113), + [sym_compound_statement] = STATE(5113), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5451), + [sym_list] = STATE(5113), + [sym_negated_command] = STATE(5113), + [sym_test_command] = STATE(5113), + [sym_declaration_command] = STATE(5113), + [sym_unset_command] = STATE(5113), + [sym_command] = STATE(5113), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1027), + [sym_variable_assignments] = STATE(5113), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(90)] = { + [aux_sym__terminated_statement] = STATE(91), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36518,7 +39405,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(899), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -36562,44 +39449,44 @@ 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(91)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36610,11 +39497,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(901), [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,84 +39541,176 @@ 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), - [sym_word] = ACTIONS(284), + [STATE(92)] = { + [aux_sym__terminated_statement] = STATE(94), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5120), + [sym_for_statement] = STATE(5120), + [sym_c_style_for_statement] = STATE(5120), + [sym_while_statement] = STATE(4688), + [sym_if_statement] = STATE(4688), + [sym_case_statement] = STATE(5120), + [sym_function_definition] = STATE(5120), + [sym_compound_statement] = STATE(5120), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5461), + [sym_list] = STATE(5120), + [sym_negated_command] = STATE(5120), + [sym_test_command] = STATE(5120), + [sym_declaration_command] = STATE(5120), + [sym_unset_command] = STATE(5120), + [sym_command] = STATE(5120), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1029), + [sym_variable_assignments] = STATE(5120), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), [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(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), [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_function] = ACTIONS(803), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(807), [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(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(93)] = { + [sym__statements] = STATE(7645), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2218), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(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), @@ -36741,49 +39720,141 @@ 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(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(94)] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5124), + [sym_for_statement] = STATE(5124), + [sym_c_style_for_statement] = STATE(5124), + [sym_while_statement] = STATE(4690), + [sym_if_statement] = STATE(4690), + [sym_case_statement] = STATE(5124), + [sym_function_definition] = STATE(5124), + [sym_compound_statement] = STATE(5124), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5465), + [sym_list] = STATE(5124), + [sym_negated_command] = STATE(5124), + [sym_test_command] = STATE(5124), + [sym_declaration_command] = STATE(5124), + [sym_unset_command] = STATE(5124), + [sym_command] = STATE(5124), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1030), + [sym_variable_assignments] = STATE(5124), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(95)] = { + [aux_sym__terminated_statement] = STATE(96), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36794,11 +39865,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(907), [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 +39909,44 @@ 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(96)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36886,7 +39957,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(835), + [anon_sym_done] = ACTIONS(909), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), @@ -36930,44 +40001,228 @@ 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(97)] = { + [aux_sym__terminated_statement] = STATE(98), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5136), + [sym_for_statement] = STATE(5136), + [sym_c_style_for_statement] = STATE(5136), + [sym_while_statement] = STATE(4692), + [sym_if_statement] = STATE(4692), + [sym_case_statement] = STATE(5136), + [sym_function_definition] = STATE(5136), + [sym_compound_statement] = STATE(5136), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5477), + [sym_list] = STATE(5136), + [sym_negated_command] = STATE(5136), + [sym_test_command] = STATE(5136), + [sym_declaration_command] = STATE(5136), + [sym_unset_command] = STATE(5136), + [sym_command] = STATE(5136), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1031), + [sym_variable_assignments] = STATE(5136), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(98)] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5146), + [sym_for_statement] = STATE(5146), + [sym_c_style_for_statement] = STATE(5146), + [sym_while_statement] = STATE(4698), + [sym_if_statement] = STATE(4698), + [sym_case_statement] = STATE(5146), + [sym_function_definition] = STATE(5146), + [sym_compound_statement] = STATE(5146), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5485), + [sym_list] = STATE(5146), + [sym_negated_command] = STATE(5146), + [sym_test_command] = STATE(5146), + [sym_declaration_command] = STATE(5146), + [sym_unset_command] = STATE(5146), + [sym_command] = STATE(5146), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(5146), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(99)] = { + [aux_sym__terminated_statement] = STATE(100), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -36978,11 +40233,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(915), [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 +40277,44 @@ 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(100)] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5391), + [sym_for_statement] = STATE(5391), + [sym_c_style_for_statement] = STATE(5391), + [sym_while_statement] = STATE(4814), + [sym_if_statement] = STATE(4814), + [sym_case_statement] = STATE(5391), + [sym_function_definition] = STATE(5391), + [sym_compound_statement] = STATE(5391), + [sym_subshell] = STATE(5391), + [sym_pipeline] = STATE(5549), + [sym_list] = STATE(5391), + [sym_negated_command] = STATE(5391), + [sym_test_command] = STATE(5391), + [sym_declaration_command] = STATE(5391), + [sym_unset_command] = STATE(5391), + [sym_command] = STATE(5391), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1178), + [sym_variable_assignments] = STATE(5391), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37070,11 +40325,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(917), [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,84 +40369,84 @@ 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), - [sym_word] = ACTIONS(284), + [STATE(101)] = { + [sym__statements] = STATE(7685), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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_done] = ACTIONS(841), [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), @@ -37201,181 +40456,181 @@ 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(89)] = { + [STATE(102)] = { [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__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5153), + [sym_for_statement] = STATE(5153), + [sym_c_style_for_statement] = STATE(5153), + [sym_while_statement] = STATE(4701), + [sym_if_statement] = STATE(4701), + [sym_case_statement] = STATE(5153), + [sym_function_definition] = STATE(5153), + [sym_compound_statement] = STATE(5153), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5494), + [sym_list] = STATE(5153), + [sym_negated_command] = STATE(5153), + [sym_test_command] = STATE(5153), + [sym_declaration_command] = STATE(5153), + [sym_unset_command] = STATE(5153), + [sym_command] = STATE(5153), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1035), + [sym_variable_assignments] = STATE(5153), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), [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(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), [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_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(803), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(807), [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(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), [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(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), }, - [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), - [sym_word] = ACTIONS(284), + [STATE(103)] = { + [sym__statements] = STATE(8024), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(845), - [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), @@ -37385,89 +40640,89 @@ 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(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), - [sym_word] = ACTIONS(284), + [STATE(104)] = { + [sym__statements] = STATE(7811), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2303), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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_fi] = ACTIONS(847), [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), @@ -37477,50 +40732,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(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), - [sym_word] = ACTIONS(284), + [STATE(105)] = { + [sym__statements] = STATE(7928), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -37532,19 +40788,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -37574,45 +40829,46 @@ 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), - [sym_word] = ACTIONS(284), + [STATE(106)] = { + [sym__statements] = STATE(8132), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -37622,21 +40878,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(851), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -37666,84 +40921,84 @@ 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), - [sym_word] = ACTIONS(284), + [STATE(107)] = { + [sym__statements] = STATE(7437), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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_done] = ACTIONS(853), [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), @@ -37753,49 +41008,49 @@ 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(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(108)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -37807,10 +41062,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(931), [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), @@ -37850,46 +41105,46 @@ 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(109)] = { + [sym__statements] = STATE(8028), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -37903,7 +41158,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), @@ -37924,10 +41179,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), @@ -37939,87 +41194,87 @@ 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(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), - [sym_word] = ACTIONS(284), + [STATE(110)] = { + [sym__statements] = STATE(7369), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2330), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(857), - [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), @@ -38029,50 +41284,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(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), - [sym_word] = ACTIONS(284), + [STATE(111)] = { + [sym__statements] = STATE(7376), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38082,21 +41338,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(859), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38126,45 +41381,46 @@ 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), - [sym_word] = ACTIONS(284), + [STATE(112)] = { + [sym__statements] = STATE(7379), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38174,21 +41430,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(861), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38218,84 +41473,84 @@ 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(113)] = { + [sym__statements] = STATE(7380), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(863), - [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), @@ -38305,49 +41560,49 @@ 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(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), + [STATE(114)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38359,10 +41614,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(933), [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), @@ -38402,46 +41657,46 @@ 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), + [STATE(115)] = { + [sym__statements] = STATE(7611), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38455,7 +41710,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), @@ -38476,10 +41731,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), @@ -38491,49 +41746,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(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(116)] = { + [sym__statements] = STATE(7430), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2335), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38547,7 +41802,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 +41823,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 +41838,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(117)] = { + [sym__statements] = STATE(7631), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38637,18 +41892,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38678,46 +41933,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(118)] = { + [sym__statements] = STATE(7674), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38729,18 +41984,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -38770,46 +42025,46 @@ 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), + [STATE(119)] = { + [sym__statements] = STATE(7691), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -38823,7 +42078,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), @@ -38844,10 +42099,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), @@ -38859,47 +42114,47 @@ 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(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(120)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -38911,7 +42166,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(877), + [anon_sym_then] = ACTIONS(935), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -38954,46 +42209,46 @@ 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(121)] = { + [sym__statements] = STATE(7568), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39007,7 +42262,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 +42283,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 +42298,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(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(122)] = { + [sym__statements] = STATE(7849), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2338), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39099,7 +42354,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 +42375,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 +42390,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(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(123)] = { + [sym__statements] = STATE(7851), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39189,18 +42444,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39230,46 +42485,46 @@ 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(124)] = { + [sym__statements] = STATE(7865), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39281,18 +42536,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39322,46 +42577,46 @@ 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(125)] = { + [sym__statements] = STATE(7879), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39375,7 +42630,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 +42651,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,141 +42666,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__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), - [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(879), - [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_test_operator] = ACTIONS(771), [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(126)] = { + [sym__statements] = STATE(7838), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39559,7 +42722,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 +42743,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 +42758,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(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(127)] = { + [sym__statements] = STATE(7648), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2341), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39651,7 +42814,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 +42835,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 +42850,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(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(128)] = { + [sym__statements] = STATE(7653), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39741,18 +42904,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39782,46 +42945,46 @@ 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(129)] = { + [sym__statements] = STATE(7654), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39833,18 +42996,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -39874,46 +43037,46 @@ 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(130)] = { + [sym__statements] = STATE(7655), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -39927,7 +43090,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 +43111,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,141 +43126,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(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), - [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(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(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(131)] = { + [sym__statements] = STATE(7724), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40111,7 +43182,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 +43203,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 +43218,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(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(132)] = { + [sym__statements] = STATE(7752), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2348), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40203,7 +43274,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 +43295,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 +43310,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(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(133)] = { + [sym__statements] = STATE(7772), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40293,18 +43364,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40334,46 +43405,46 @@ 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(134)] = { + [sym__statements] = STATE(7778), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40385,18 +43456,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40426,46 +43497,46 @@ 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(135)] = { + [sym__statements] = STATE(7780), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40479,7 +43550,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 +43571,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 +43586,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(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), + [STATE(136)] = { + [sym__statements] = STATE(7967), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40571,7 +43642,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 +43663,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 +43678,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(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), + [STATE(137)] = { + [sym__statements] = STATE(7869), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2352), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40663,7 +43734,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 +43755,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 +43770,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(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), + [STATE(138)] = { + [sym__statements] = STATE(7871), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40753,18 +43824,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40794,46 +43865,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(139)] = { + [sym__statements] = STATE(7872), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40845,18 +43916,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -40886,46 +43957,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(140)] = { + [sym__statements] = STATE(7873), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -40939,7 +44010,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 +44031,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 +44046,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(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), + [STATE(141)] = { + [sym__statements] = STATE(7988), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2355), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41031,7 +44102,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 +44123,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,87 +44138,87 @@ 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), + [STATE(142)] = { + [sym__statements] = STATE(7991), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [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), @@ -41157,51 +44228,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(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), + [STATE(143)] = { + [sym__statements] = STATE(8005), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41213,18 +44284,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41254,84 +44325,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(144)] = { + [sym__statements] = STATE(8016), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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), @@ -41341,51 +44412,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(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), + [STATE(145)] = { + [sym__statements] = STATE(7573), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2356), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41399,7 +44470,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 +44491,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,233 +44506,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(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), - [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(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), - [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(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), + [STATE(146)] = { + [sym__statements] = STATE(7666), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41673,18 +44560,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41714,46 +44601,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(147)] = { + [sym__statements] = STATE(7739), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41765,18 +44652,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -41806,46 +44693,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(148)] = { + [sym__statements] = STATE(7829), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41859,7 +44746,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 +44767,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 +44782,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(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), + [STATE(149)] = { + [sym__statements] = STATE(7297), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2357), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -41951,7 +44838,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 +44859,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 +44874,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(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), + [STATE(150)] = { + [sym__statements] = STATE(7303), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42041,18 +44928,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42082,46 +44969,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(151)] = { + [sym__statements] = STATE(7305), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42133,18 +45020,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42174,46 +45061,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(152)] = { + [sym__statements] = STATE(7312), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42227,7 +45114,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 +45135,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 +45150,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(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), + [STATE(153)] = { + [sym__statements] = STATE(7360), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2358), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42319,7 +45206,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 +45227,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 +45242,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(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), + [STATE(154)] = { + [sym__statements] = STATE(7365), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42409,18 +45296,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42450,46 +45337,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(155)] = { + [sym__statements] = STATE(7366), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42501,18 +45388,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42542,46 +45429,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(156)] = { + [sym__statements] = STATE(7367), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42595,7 +45482,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 +45503,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 +45518,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(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), + [STATE(157)] = { + [sym__statements] = STATE(7403), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2359), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42687,7 +45574,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 +45595,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 +45610,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(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), + [STATE(158)] = { + [sym__statements] = STATE(7408), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42777,18 +45664,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42818,46 +45705,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(159)] = { + [sym__statements] = STATE(7409), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42869,18 +45756,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -42910,46 +45797,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(160)] = { + [sym__statements] = STATE(7411), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -42963,7 +45850,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 +45871,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 +45886,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(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), + [STATE(161)] = { + [sym__statements] = STATE(7449), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2360), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43055,7 +45942,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 +45963,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 +45978,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(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), + [STATE(162)] = { + [sym__statements] = STATE(7456), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43145,18 +46032,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43186,46 +46073,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(163)] = { + [sym__statements] = STATE(7459), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43237,18 +46124,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43278,46 +46165,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(164)] = { + [sym__statements] = STATE(7461), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43331,7 +46218,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 +46239,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 +46254,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(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), + [STATE(165)] = { + [sym__statements] = STATE(7493), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2361), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43423,7 +46310,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 +46331,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 +46346,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(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), + [STATE(166)] = { + [sym__statements] = STATE(7496), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43513,18 +46400,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43554,46 +46441,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(167)] = { + [sym__statements] = STATE(7498), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43605,18 +46492,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43646,46 +46533,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(168)] = { + [sym__statements] = STATE(7499), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43699,7 +46586,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 +46607,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 +46622,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(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), + [STATE(169)] = { + [sym__statements] = STATE(7530), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2362), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43791,7 +46678,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 +46699,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 +46714,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(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), + [STATE(170)] = { + [sym__statements] = STATE(7537), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43881,18 +46768,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -43922,46 +46809,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(171)] = { + [sym__statements] = STATE(7540), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -43973,18 +46860,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44014,46 +46901,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(172)] = { + [sym__statements] = STATE(7541), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44067,7 +46954,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 +46975,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 +46990,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(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), + [STATE(173)] = { + [sym__statements] = STATE(7580), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2363), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44159,7 +47046,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 +47067,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 +47082,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(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), + [STATE(174)] = { + [sym__statements] = STATE(7584), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44249,18 +47136,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44290,46 +47177,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(175)] = { + [sym__statements] = STATE(7585), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44341,18 +47228,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44382,46 +47269,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(176)] = { + [sym__statements] = STATE(7586), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44435,7 +47322,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 +47343,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 +47358,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(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), + [STATE(177)] = { + [sym__statements] = STATE(7622), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2364), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44527,7 +47414,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 +47435,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 +47450,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(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), + [STATE(178)] = { + [sym__statements] = STATE(7626), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44617,18 +47504,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44658,46 +47545,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(179)] = { + [sym__statements] = STATE(7627), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44709,18 +47596,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -44750,46 +47637,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(180)] = { + [sym__statements] = STATE(7628), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44803,7 +47690,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 +47711,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 +47726,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(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), + [STATE(181)] = { + [sym__statements] = STATE(7671), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2365), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44895,7 +47782,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 +47803,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 +47818,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(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), + [STATE(182)] = { + [sym__statements] = STATE(7675), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -44985,18 +47872,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45026,46 +47913,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(183)] = { + [sym__statements] = STATE(7677), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45077,18 +47964,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45118,46 +48005,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(184)] = { + [sym__statements] = STATE(7678), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45171,7 +48058,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 +48079,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 +48094,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(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), + [STATE(185)] = { + [sym__statements] = STATE(7719), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2366), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45263,7 +48150,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 +48171,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 +48186,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(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), + [STATE(186)] = { + [sym__statements] = STATE(7725), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45353,18 +48240,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45394,46 +48281,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(187)] = { + [sym__statements] = STATE(7726), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45445,18 +48332,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45486,46 +48373,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(188)] = { + [sym__statements] = STATE(7728), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45539,7 +48426,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 +48447,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 +48462,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(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), + [STATE(189)] = { + [sym__statements] = STATE(7758), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2367), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45631,7 +48518,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 +48539,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 +48554,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(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), + [STATE(190)] = { + [sym__statements] = STATE(7762), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45721,18 +48608,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45762,46 +48649,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(191)] = { + [sym__statements] = STATE(7276), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45813,18 +48700,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -45854,46 +48741,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(192)] = { + [sym__statements] = STATE(7766), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45907,7 +48794,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 +48815,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 +48830,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(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), + [STATE(193)] = { + [sym__statements] = STATE(7820), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2368), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -45999,7 +48886,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 +48907,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 +48922,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(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), + [STATE(194)] = { + [sym__statements] = STATE(7827), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46089,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46130,46 +49017,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(195)] = { + [sym__statements] = STATE(7830), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46181,18 +49068,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46222,46 +49109,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(196)] = { + [sym__statements] = STATE(7831), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46275,7 +49162,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 +49183,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 +49198,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(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), + [STATE(197)] = { + [sym__statements] = STATE(7853), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2369), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46367,7 +49254,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 +49275,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 +49290,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(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), + [STATE(198)] = { + [sym__statements] = STATE(7857), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46457,18 +49344,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46498,46 +49385,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(199)] = { + [sym__statements] = STATE(7858), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46549,18 +49436,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46590,46 +49477,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(200)] = { + [sym__statements] = STATE(7859), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46643,7 +49530,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 +49551,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 +49566,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(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), + [STATE(201)] = { + [sym__statements] = STATE(7903), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2370), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46735,7 +49622,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 +49643,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 +49658,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(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), + [STATE(202)] = { + [sym__statements] = STATE(7907), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46825,18 +49712,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46866,46 +49753,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(203)] = { + [sym__statements] = STATE(7910), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -46917,18 +49804,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -46958,46 +49845,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(204)] = { + [sym__statements] = STATE(7912), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47011,7 +49898,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 +49919,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 +49934,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(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), + [STATE(205)] = { + [sym__statements] = STATE(7944), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2371), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47103,7 +49990,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 +50011,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 +50026,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(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), + [STATE(206)] = { + [sym__statements] = STATE(7950), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47193,18 +50080,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47234,46 +50121,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(207)] = { + [sym__statements] = STATE(7951), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47285,18 +50172,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47326,46 +50213,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(208)] = { + [sym__statements] = STATE(7952), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47379,7 +50266,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 +50287,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 +50302,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(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), + [STATE(209)] = { + [sym__statements] = STATE(7974), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2372), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47471,7 +50358,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 +50379,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 +50394,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(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), + [STATE(210)] = { + [sym__statements] = STATE(7978), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47561,18 +50448,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47602,46 +50489,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(211)] = { + [sym__statements] = STATE(7979), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47653,18 +50540,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47694,46 +50581,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(212)] = { + [sym__statements] = STATE(7981), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47747,7 +50634,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 +50655,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 +50670,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(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), + [STATE(213)] = { + [sym__statements] = STATE(8015), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2373), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47839,7 +50726,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 +50747,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 +50762,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(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), + [STATE(214)] = { + [sym__statements] = STATE(8017), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -47929,18 +50816,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -47970,46 +50857,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(215)] = { + [sym__statements] = STATE(8018), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48021,18 +50908,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48062,46 +50949,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(216)] = { + [sym__statements] = STATE(8019), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48115,7 +51002,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 +51023,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 +51038,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(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), + [STATE(217)] = { + [sym__statements] = STATE(8040), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2374), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48207,7 +51094,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 +51115,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 +51130,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(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), + [STATE(218)] = { + [sym__statements] = STATE(8042), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48297,18 +51184,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48338,46 +51225,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(219)] = { + [sym__statements] = STATE(8043), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48389,18 +51276,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48430,46 +51317,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(220)] = { + [sym__statements] = STATE(8044), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48483,7 +51370,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 +51391,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 +51406,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(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), + [STATE(221)] = { + [sym__statements] = STATE(8129), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2375), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48575,7 +51462,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 +51483,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 +51498,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(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), + [STATE(222)] = { + [sym__statements] = STATE(8134), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48665,18 +51552,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48706,46 +51593,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(223)] = { + [sym__statements] = STATE(7624), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48757,18 +51644,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -48798,46 +51685,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(224)] = { + [sym__statements] = STATE(7765), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48851,7 +51738,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 +51759,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 +51774,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(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), + [STATE(225)] = { + [sym__statements] = STATE(7416), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2376), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -48943,7 +51830,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 +51851,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 +51866,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(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), + [STATE(226)] = { + [sym__statements] = STATE(7720), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49033,18 +51920,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49074,46 +51961,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(227)] = { + [sym__statements] = STATE(7734), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49125,18 +52012,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49166,46 +52053,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(228)] = { + [sym__statements] = STATE(7798), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49219,7 +52106,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 +52127,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 +52142,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(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), + [STATE(229)] = { + [sym__statements] = STATE(7890), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2377), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49311,7 +52198,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 +52219,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 +52234,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(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), + [STATE(230)] = { + [sym__statements] = STATE(7913), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49401,18 +52288,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49442,46 +52329,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(231)] = { + [sym__statements] = STATE(7929), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49493,18 +52380,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49534,46 +52421,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(232)] = { + [sym__statements] = STATE(7959), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49587,7 +52474,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 +52495,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 +52510,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(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), + [STATE(233)] = { + [sym__statements] = STATE(7604), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2378), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49679,7 +52566,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 +52587,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 +52602,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(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), + [STATE(234)] = { + [sym__statements] = STATE(7662), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49769,18 +52656,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49810,46 +52697,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(235)] = { + [sym__statements] = STATE(7669), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49861,18 +52748,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -49902,46 +52789,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(236)] = { + [sym__statements] = STATE(7673), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -49955,7 +52842,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 +52863,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 +52878,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(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), + [STATE(237)] = { + [sym__statements] = STATE(7563), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2379), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50047,7 +52934,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 +52955,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 +52970,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(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), + [STATE(238)] = { + [sym__statements] = STATE(7536), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50137,18 +53024,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50178,46 +53065,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(239)] = { + [sym__statements] = STATE(7794), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50229,18 +53116,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50270,46 +53157,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(240)] = { + [sym__statements] = STATE(7825), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50323,7 +53210,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 +53231,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 +53246,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(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), + [STATE(241)] = { + [sym__statements] = STATE(7481), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2380), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50415,7 +53302,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 +53323,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 +53338,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(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), + [STATE(242)] = { + [sym__statements] = STATE(7571), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50505,18 +53392,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50546,46 +53433,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(243)] = { + [sym__statements] = STATE(7589), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50597,18 +53484,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50638,46 +53525,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(244)] = { + [sym__statements] = STATE(7593), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50691,7 +53578,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 +53599,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 +53614,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(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), + [STATE(245)] = { + [sym__statements] = STATE(7742), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2381), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50783,7 +53670,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 +53691,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 +53706,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(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), + [STATE(246)] = { + [sym__statements] = STATE(7747), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50873,18 +53760,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -50914,46 +53801,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(247)] = { + [sym__statements] = STATE(7754), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -50965,18 +53852,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51006,46 +53893,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(248)] = { + [sym__statements] = STATE(7790), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51059,7 +53946,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 +53967,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 +53982,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(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), + [STATE(249)] = { + [sym__statements] = STATE(7996), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2382), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51151,7 +54038,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 +54059,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 +54074,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(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), + [STATE(250)] = { + [sym__statements] = STATE(8058), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51241,18 +54128,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51282,46 +54169,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(251)] = { + [sym__statements] = STATE(8130), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51333,18 +54220,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51374,46 +54261,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(252)] = { + [sym__statements] = STATE(8131), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51427,7 +54314,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 +54335,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 +54350,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(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), + [STATE(253)] = { + [sym__statements] = STATE(7356), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2383), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51519,7 +54406,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 +54427,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 +54442,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(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), + [STATE(254)] = { + [sym__statements] = STATE(7374), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51609,18 +54496,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51650,46 +54537,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(255)] = { + [sym__statements] = STATE(7377), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51701,18 +54588,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -51742,46 +54629,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(256)] = { + [sym__statements] = STATE(7381), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51795,7 +54682,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 +54703,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 +54718,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(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), + [STATE(257)] = { + [sym__statements] = STATE(7502), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2384), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51887,7 +54774,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 +54795,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 +54810,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(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), + [STATE(258)] = { + [sym__statements] = STATE(7524), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -51977,18 +54864,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52018,46 +54905,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(259)] = { + [sym__statements] = STATE(7549), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52069,18 +54956,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52110,46 +54997,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(260)] = { + [sym__statements] = STATE(7557), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52163,7 +55050,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 +55071,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 +55086,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(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), + [STATE(261)] = { + [sym__statements] = STATE(7683), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2385), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52255,7 +55142,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 +55163,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 +55178,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(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), + [STATE(262)] = { + [sym__statements] = STATE(7704), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52345,18 +55232,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52386,46 +55273,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(263)] = { + [sym__statements] = STATE(7709), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52437,18 +55324,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52478,46 +55365,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(264)] = { + [sym__statements] = STATE(7710), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52531,7 +55418,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 +55439,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 +55454,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(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), + [STATE(265)] = { + [sym__statements] = STATE(7810), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2386), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52623,7 +55510,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 +55531,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 +55546,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(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), + [STATE(266)] = { + [sym__statements] = STATE(7816), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52713,18 +55600,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52754,46 +55641,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(267)] = { + [sym__statements] = STATE(7844), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52805,18 +55692,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -52846,46 +55733,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(268)] = { + [sym__statements] = STATE(7848), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52899,7 +55786,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 +55807,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 +55822,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(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), + [STATE(269)] = { + [sym__statements] = STATE(7970), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2387), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -52991,7 +55878,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 +55899,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 +55914,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(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), + [STATE(270)] = { + [sym__statements] = STATE(7976), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53081,18 +55968,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53122,46 +56009,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(271)] = { + [sym__statements] = STATE(7980), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53173,18 +56060,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53214,46 +56101,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(272)] = { + [sym__statements] = STATE(7984), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53267,7 +56154,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 +56175,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 +56190,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(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), + [STATE(273)] = { + [sym__statements] = STATE(7534), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2388), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53359,7 +56246,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 +56267,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 +56282,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(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), + [STATE(274)] = { + [sym__statements] = STATE(7748), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53449,18 +56336,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53490,46 +56377,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(275)] = { + [sym__statements] = STATE(7750), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53541,18 +56428,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53582,46 +56469,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(276)] = { + [sym__statements] = STATE(7789), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53635,7 +56522,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 +56543,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 +56558,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(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), + [STATE(277)] = { + [sym__statements] = STATE(7338), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2389), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53727,7 +56614,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 +56635,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 +56650,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(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), + [STATE(278)] = { + [sym__statements] = STATE(7350), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53817,18 +56704,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53858,46 +56745,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(279)] = { + [sym__statements] = STATE(7352), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -53909,18 +56796,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -53950,46 +56837,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(280)] = { + [sym__statements] = STATE(7353), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54003,7 +56890,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 +56911,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 +56926,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(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), + [STATE(281)] = { + [sym__statements] = STATE(7423), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2390), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54095,7 +56982,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 +57003,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 +57018,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(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), + [STATE(282)] = { + [sym__statements] = STATE(7436), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54185,18 +57072,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54226,46 +57113,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(283)] = { + [sym__statements] = STATE(7439), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54277,18 +57164,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54318,46 +57205,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(284)] = { + [sym__statements] = STATE(7440), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54371,7 +57258,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 +57279,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 +57294,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(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), + [STATE(285)] = { + [sym__statements] = STATE(7520), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2391), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54463,7 +57350,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 +57371,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 +57386,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(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), + [STATE(286)] = { + [sym__statements] = STATE(7528), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54553,18 +57440,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54594,46 +57481,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(287)] = { + [sym__statements] = STATE(7535), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54645,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54686,46 +57573,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(288)] = { + [sym__statements] = STATE(7543), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54739,7 +57626,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 +57647,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 +57662,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(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), + [STATE(289)] = { + [sym__statements] = STATE(7617), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2392), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54831,7 +57718,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 +57739,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 +57754,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(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), + [STATE(290)] = { + [sym__statements] = STATE(7649), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -54921,18 +57808,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -54962,46 +57849,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(291)] = { + [sym__statements] = STATE(7652), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55013,18 +57900,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55054,46 +57941,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(292)] = { + [sym__statements] = STATE(7661), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55107,7 +57994,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 +58015,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 +58030,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(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), + [STATE(293)] = { + [sym__statements] = STATE(7712), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2393), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55199,7 +58086,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 +58107,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 +58122,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(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), + [STATE(294)] = { + [sym__statements] = STATE(7715), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55289,18 +58176,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55330,46 +58217,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(295)] = { + [sym__statements] = STATE(7716), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55381,18 +58268,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55422,46 +58309,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(296)] = { + [sym__statements] = STATE(7718), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55475,7 +58362,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 +58383,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 +58398,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(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), + [STATE(297)] = { + [sym__statements] = STATE(7787), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2394), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55567,7 +58454,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 +58475,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 +58490,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(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), + [STATE(298)] = { + [sym__statements] = STATE(7795), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55657,18 +58544,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55698,46 +58585,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(299)] = { + [sym__statements] = STATE(7796), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55749,18 +58636,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -55790,46 +58677,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(300)] = { + [sym__statements] = STATE(7797), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55843,7 +58730,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 +58751,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 +58766,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(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), + [STATE(301)] = { + [sym__statements] = STATE(7855), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2395), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -55935,7 +58822,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 +58843,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 +58858,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(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), + [STATE(302)] = { + [sym__statements] = STATE(7875), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56025,18 +58912,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56066,46 +58953,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(303)] = { + [sym__statements] = STATE(7876), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56117,18 +59004,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56158,46 +59045,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(304)] = { + [sym__statements] = STATE(7880), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56211,7 +59098,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 +59119,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 +59134,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(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), + [STATE(305)] = { + [sym__statements] = STATE(7931), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2396), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56303,7 +59190,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 +59211,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 +59226,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(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), + [STATE(306)] = { + [sym__statements] = STATE(7938), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56393,18 +59280,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56434,46 +59321,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(307)] = { + [sym__statements] = STATE(7946), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56485,18 +59372,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56526,46 +59413,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(308)] = { + [sym__statements] = STATE(7958), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56579,7 +59466,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 +59487,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 +59502,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(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), + [STATE(309)] = { + [sym__statements] = STATE(8020), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2397), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56671,7 +59558,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 +59579,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 +59594,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(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), + [STATE(310)] = { + [sym__statements] = STATE(8026), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56761,18 +59648,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56802,46 +59689,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(311)] = { + [sym__statements] = STATE(8027), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56853,18 +59740,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -56894,46 +59781,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(312)] = { + [sym__statements] = STATE(8036), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -56947,7 +59834,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 +59855,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 +59870,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(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), + [STATE(313)] = { + [sym__statements] = STATE(7354), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2398), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57039,7 +59926,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 +59947,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 +59962,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(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), + [STATE(314)] = { + [sym__statements] = STATE(7414), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57129,18 +60016,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57170,46 +60057,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(315)] = { + [sym__statements] = STATE(7424), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57221,18 +60108,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57262,46 +60149,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(316)] = { + [sym__statements] = STATE(7482), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57315,7 +60202,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 +60223,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 +60238,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(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), + [STATE(317)] = { + [sym__statements] = STATE(8138), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2399), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57407,7 +60294,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 +60315,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 +60330,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(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), + [STATE(318)] = { + [sym__statements] = STATE(7278), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57497,18 +60384,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57538,46 +60425,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(319)] = { + [sym__statements] = STATE(7279), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57589,18 +60476,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57630,46 +60517,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(320)] = { + [sym__statements] = STATE(7280), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57683,7 +60570,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 +60591,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 +60606,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(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), + [STATE(321)] = { + [sym__statements] = STATE(7335), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2400), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57775,7 +60662,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 +60683,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 +60698,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(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), + [STATE(322)] = { + [sym__statements] = STATE(7339), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57865,18 +60752,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57906,46 +60793,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(323)] = { + [sym__statements] = STATE(7341), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -57957,18 +60844,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -57998,46 +60885,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(324)] = { + [sym__statements] = STATE(7344), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58051,7 +60938,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 +60959,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 +60974,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(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), + [STATE(325)] = { + [sym__statements] = STATE(7386), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2401), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58143,7 +61030,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 +61051,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 +61066,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(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), + [STATE(326)] = { + [sym__statements] = STATE(7390), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58233,18 +61120,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58274,46 +61161,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(327)] = { + [sym__statements] = STATE(7391), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58325,18 +61212,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58366,46 +61253,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(328)] = { + [sym__statements] = STATE(7394), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58419,7 +61306,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 +61327,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 +61342,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(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), + [STATE(329)] = { + [sym__statements] = STATE(7451), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2402), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58511,7 +61398,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 +61419,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 +61434,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(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), + [STATE(330)] = { + [sym__statements] = STATE(7453), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58601,18 +61488,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58642,46 +61529,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(331)] = { + [sym__statements] = STATE(7454), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58693,18 +61580,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -58734,46 +61621,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(332)] = { + [sym__statements] = STATE(7457), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58787,7 +61674,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 +61695,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 +61710,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(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), + [STATE(333)] = { + [sym__statements] = STATE(7501), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2403), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58879,7 +61766,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 +61787,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 +61802,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(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), + [STATE(334)] = { + [sym__statements] = STATE(7505), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -58969,18 +61856,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59010,46 +61897,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(335)] = { + [sym__statements] = STATE(7509), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59061,18 +61948,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59102,46 +61989,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(336)] = { + [sym__statements] = STATE(7513), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59155,7 +62042,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 +62063,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 +62078,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(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), + [STATE(337)] = { + [sym__statements] = STATE(7565), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2404), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59247,7 +62134,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 +62155,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 +62170,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(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), + [STATE(338)] = { + [sym__statements] = STATE(7576), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59337,18 +62224,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59378,46 +62265,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(339)] = { + [sym__statements] = STATE(7578), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59429,18 +62316,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59470,46 +62357,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(340)] = { + [sym__statements] = STATE(7579), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59523,7 +62410,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 +62431,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 +62446,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(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), + [STATE(341)] = { + [sym__statements] = STATE(7625), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2405), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59615,7 +62502,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 +62523,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 +62538,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(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), + [STATE(342)] = { + [sym__statements] = STATE(7634), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59705,18 +62592,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59746,46 +62633,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(343)] = { + [sym__statements] = STATE(7635), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59797,18 +62684,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -59838,46 +62725,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(344)] = { + [sym__statements] = STATE(7640), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59891,7 +62778,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 +62799,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 +62814,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(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), + [STATE(345)] = { + [sym__statements] = STATE(7687), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2406), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -59983,7 +62870,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 +62891,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 +62906,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(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), + [STATE(346)] = { + [sym__statements] = STATE(7696), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60073,18 +62960,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60114,46 +63001,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(347)] = { + [sym__statements] = STATE(7702), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60165,18 +63052,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60206,46 +63093,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(348)] = { + [sym__statements] = STATE(7703), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60259,7 +63146,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 +63167,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 +63182,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(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), + [STATE(349)] = { + [sym__statements] = STATE(7723), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2407), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60351,7 +63238,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 +63259,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 +63274,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(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), + [STATE(350)] = { + [sym__statements] = STATE(7729), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60441,18 +63328,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60482,46 +63369,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(351)] = { + [sym__statements] = STATE(7730), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60533,18 +63420,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60574,46 +63461,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(352)] = { + [sym__statements] = STATE(7732), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60627,7 +63514,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 +63535,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 +63550,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(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), + [STATE(353)] = { + [sym__statements] = STATE(7770), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2408), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60719,7 +63606,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 +63627,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 +63642,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(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), + [STATE(354)] = { + [sym__statements] = STATE(7783), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60809,18 +63696,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60850,46 +63737,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(355)] = { + [sym__statements] = STATE(7784), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60901,18 +63788,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -60942,46 +63829,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(356)] = { + [sym__statements] = STATE(7785), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -60995,7 +63882,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 +63903,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 +63918,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(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), + [STATE(357)] = { + [sym__statements] = STATE(7815), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2409), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61087,7 +63974,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 +63995,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 +64010,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(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), + [STATE(358)] = { + [sym__statements] = STATE(7819), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61177,18 +64064,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61218,46 +64105,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(359)] = { + [sym__statements] = STATE(7821), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61269,18 +64156,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61310,46 +64197,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(360)] = { + [sym__statements] = STATE(7828), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61363,7 +64250,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 +64271,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 +64286,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(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), + [STATE(361)] = { + [sym__statements] = STATE(7862), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2410), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61455,7 +64342,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 +64363,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 +64378,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(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), + [STATE(362)] = { + [sym__statements] = STATE(7867), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61545,18 +64432,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61586,46 +64473,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(363)] = { + [sym__statements] = STATE(7870), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61637,18 +64524,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61678,46 +64565,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(364)] = { + [sym__statements] = STATE(7874), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61731,7 +64618,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 +64639,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 +64654,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(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), + [STATE(365)] = { + [sym__statements] = STATE(7911), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2411), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61823,7 +64710,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 +64731,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 +64746,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(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), + [STATE(366)] = { + [sym__statements] = STATE(7914), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -61913,18 +64800,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -61954,46 +64841,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(367)] = { + [sym__statements] = STATE(7915), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62005,18 +64892,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62046,46 +64933,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(368)] = { + [sym__statements] = STATE(7916), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62099,7 +64986,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 +65007,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 +65022,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(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), + [STATE(369)] = { + [sym__statements] = STATE(7945), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2412), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62191,7 +65078,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 +65099,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 +65114,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(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), + [STATE(370)] = { + [sym__statements] = STATE(7947), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62281,18 +65168,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62322,46 +65209,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(371)] = { + [sym__statements] = STATE(7948), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62373,18 +65260,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62414,46 +65301,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(372)] = { + [sym__statements] = STATE(7956), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62467,7 +65354,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 +65375,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 +65390,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(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), + [STATE(373)] = { + [sym__statements] = STATE(7983), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2413), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62559,7 +65446,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 +65467,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 +65482,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(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), + [STATE(374)] = { + [sym__statements] = STATE(7985), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62649,18 +65536,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62690,46 +65577,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(375)] = { + [sym__statements] = STATE(7990), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62741,18 +65628,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62782,46 +65669,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(376)] = { + [sym__statements] = STATE(7992), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62835,7 +65722,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 +65743,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 +65758,141 @@ 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), + [STATE(377)] = { + [sym__statements] = STATE(8049), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2414), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(378)] = { + [sym__statements] = STATE(8051), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -62925,18 +65904,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -62966,46 +65945,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(379)] = { + [sym__statements] = STATE(8052), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63017,18 +65996,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63058,46 +66037,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(380)] = { + [sym__statements] = STATE(8057), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63111,7 +66090,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 +66111,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,87 +66126,87 @@ 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), + [STATE(381)] = { + [sym__statements] = STATE(7856), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2415), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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), @@ -63237,51 +66216,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(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), + [STATE(382)] = { + [sym__statements] = STATE(7994), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63293,18 +66272,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63334,138 +66313,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), - [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(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), + [STATE(383)] = { + [sym__statements] = STATE(7291), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63477,18 +66364,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63518,84 +66405,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(384)] = { + [sym__statements] = STATE(7294), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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), @@ -63605,51 +66492,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(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), + [STATE(385)] = { + [sym__statements] = STATE(7572), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2416), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63663,7 +66550,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 +66571,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 +66586,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(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), + [STATE(386)] = { + [sym__statements] = STATE(7597), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63753,18 +66640,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63794,46 +66681,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(387)] = { + [sym__statements] = STATE(7612), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63845,18 +66732,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -63886,46 +66773,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(388)] = { + [sym__statements] = STATE(7714), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -63939,7 +66826,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 +66847,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,49 +66862,141 @@ 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), + [STATE(389)] = { + [sym__statements] = STATE(7899), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2417), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(390)] = { + [sym__statements] = STATE(7943), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64029,18 +67008,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64070,46 +67049,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(391)] = { + [sym__statements] = STATE(7971), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64121,18 +67100,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64162,46 +67141,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(392)] = { + [sym__statements] = STATE(7975), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64215,7 +67194,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 +67215,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 +67230,141 @@ 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), + [STATE(393)] = { + [sym__statements] = STATE(7288), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2418), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(394)] = { + [sym__statements] = STATE(7290), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64305,18 +67376,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64346,46 +67417,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(395)] = { + [sym__statements] = STATE(7293), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64397,18 +67468,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64438,46 +67509,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(396)] = { + [sym__statements] = STATE(7320), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2419), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64491,7 +67562,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 +67583,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 +67598,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(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), + [STATE(397)] = { + [sym__statements] = STATE(7329), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64581,18 +67652,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64622,46 +67693,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(398)] = { + [sym__statements] = STATE(7330), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64673,18 +67744,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64714,46 +67785,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(399)] = { + [sym__statements] = STATE(7343), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2420), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64767,7 +67838,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 +67859,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 +67874,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(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), + [STATE(400)] = { + [sym__statements] = STATE(7347), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64857,18 +67928,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64898,46 +67969,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(401)] = { + [sym__statements] = STATE(7348), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -64949,18 +68020,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -64990,46 +68061,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(402)] = { + [sym__statements] = STATE(7358), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2421), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65043,7 +68114,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 +68135,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 +68150,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(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), + [STATE(403)] = { + [sym__statements] = STATE(7368), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65133,18 +68204,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65174,46 +68245,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(404)] = { + [sym__statements] = STATE(7370), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65225,18 +68296,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65266,46 +68337,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(405)] = { + [sym__statements] = STATE(7384), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2422), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65319,7 +68390,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 +68411,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 +68426,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(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), + [STATE(406)] = { + [sym__statements] = STATE(7387), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65409,18 +68480,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65450,46 +68521,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(407)] = { + [sym__statements] = STATE(7388), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65501,18 +68572,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65542,46 +68613,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(408)] = { + [sym__statements] = STATE(7398), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2423), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65595,7 +68666,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 +68687,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 +68702,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(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), + [STATE(409)] = { + [sym__statements] = STATE(7405), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65685,18 +68756,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65726,46 +68797,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(410)] = { + [sym__statements] = STATE(7407), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65777,18 +68848,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -65818,46 +68889,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(411)] = { + [sym__statements] = STATE(7429), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2424), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65871,7 +68942,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 +68963,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 +68978,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(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), + [STATE(412)] = { + [sym__statements] = STATE(7432), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -65961,18 +69032,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66002,46 +69073,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(413)] = { + [sym__statements] = STATE(7433), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66053,18 +69124,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66094,46 +69165,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(414)] = { + [sym__statements] = STATE(7443), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2425), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66147,7 +69218,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 +69239,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 +69254,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(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), + [STATE(415)] = { + [sym__statements] = STATE(7445), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66237,18 +69308,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66278,46 +69349,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(416)] = { + [sym__statements] = STATE(7446), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66329,18 +69400,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66370,46 +69441,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(417)] = { + [sym__statements] = STATE(7460), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2426), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66423,7 +69494,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 +69515,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 +69530,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(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), + [STATE(418)] = { + [sym__statements] = STATE(7464), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66513,18 +69584,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66554,46 +69625,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(419)] = { + [sym__statements] = STATE(7465), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66605,18 +69676,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66646,45 +69717,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), - [sym_word] = ACTIONS(284), + [STATE(420)] = { + [sym__statements] = STATE(7475), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2427), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(421)] = { + [sym__statements] = STATE(7478), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66695,20 +69859,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_then] = ACTIONS(883), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(296), + [anon_sym_function] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66738,45 +69901,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(422)] = { + [sym__statements] = STATE(7479), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66787,20 +69951,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66830,46 +69993,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(423)] = { + [sym__statements] = STATE(7487), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2428), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(424)] = { + [sym__statements] = STATE(7491), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66881,18 +70136,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -66922,46 +70177,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(425)] = { + [sym__statements] = STATE(7494), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -66973,18 +70228,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67014,45 +70269,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(426)] = { + [sym__statements] = STATE(7512), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2429), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(427)] = { + [sym__statements] = STATE(7514), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67062,21 +70410,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67106,45 +70453,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), - [sym_word] = ACTIONS(284), + [STATE(428)] = { + [sym__statements] = STATE(7515), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67156,18 +70504,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67197,136 +70545,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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), + [STATE(429)] = { + [sym__statements] = STATE(7527), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2430), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(430)] = { + [sym__statements] = STATE(7531), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), + [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(923), + [anon_sym_LBRACE] = ACTIONS(29), [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), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [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(985), - [sym_variable_name] = ACTIONS(988), - [sym_test_operator] = ACTIONS(991), - [sym__brace_start] = ACTIONS(994), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), + [sym__brace_start] = ACTIONS(340), }, - [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), - [sym_word] = ACTIONS(284), + [STATE(431)] = { + [sym__statements] = STATE(7533), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67338,18 +70780,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67379,45 +70821,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(432)] = { + [sym__statements] = STATE(7542), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2431), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(433)] = { + [sym__statements] = STATE(7544), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67429,18 +70964,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67470,45 +71005,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [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(434)] = { + [sym__statements] = STATE(7545), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), + [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(923), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [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(435)] = { + [sym__statements] = STATE(7548), + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_c_style_for_statement] = STATE(5128), + [sym_while_statement] = STATE(4703), + [sym_if_statement] = STATE(4703), + [sym_case_statement] = STATE(5128), + [sym_function_definition] = STATE(5128), + [sym_compound_statement] = STATE(5128), + [sym_subshell] = STATE(5128), + [sym_pipeline] = STATE(5473), + [sym_list] = STATE(5128), + [sym_negated_command] = STATE(5128), + [sym_test_command] = STATE(5128), + [sym_declaration_command] = STATE(5128), + [sym_unset_command] = STATE(5128), + [sym_command] = STATE(5128), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5128), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2432), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(449), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67522,7 +71150,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 +71171,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,48 +71186,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(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), - [sym_word] = ACTIONS(284), + [STATE(436)] = { + [sym__statements] = STATE(7550), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67611,18 +71240,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67652,44 +71281,136 @@ 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(437)] = { + [sym__statements] = STATE(7552), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), + [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(923), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [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(438)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -67701,6 +71422,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(937), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -67743,44 +71465,44 @@ 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(439)] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -67792,6 +71514,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_fi] = ACTIONS(939), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(296), [anon_sym_LBRACE] = ACTIONS(29), @@ -67834,45 +71557,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(440)] = { + [sym__statements] = STATE(7688), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -67884,18 +71608,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -67925,135 +71649,319 @@ 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), + [STATE(441)] = { + [sym__statements] = STATE(7689), + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4998), + [sym_for_statement] = STATE(4998), + [sym_c_style_for_statement] = STATE(4998), + [sym_while_statement] = STATE(4758), + [sym_if_statement] = STATE(4758), + [sym_case_statement] = STATE(4998), + [sym_function_definition] = STATE(4998), + [sym_compound_statement] = STATE(4998), + [sym_subshell] = STATE(4998), + [sym_pipeline] = STATE(5478), + [sym_list] = STATE(4998), + [sym_negated_command] = STATE(4998), + [sym_test_command] = STATE(4998), + [sym_declaration_command] = STATE(4998), + [sym_unset_command] = STATE(4998), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1111), + [sym_variable_assignments] = STATE(4998), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(454), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), + [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(923), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [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(471), - [sym_variable_name] = ACTIONS(473), - [sym_test_operator] = ACTIONS(475), - [sym__brace_start] = ACTIONS(477), + [sym_file_descriptor] = ACTIONS(334), + [sym_variable_name] = ACTIONS(336), + [sym_test_operator] = ACTIONS(338), + [sym__brace_start] = ACTIONS(340), }, - [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), + [STATE(442)] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5057), + [sym_for_statement] = STATE(5057), + [sym_c_style_for_statement] = STATE(5057), + [sym_while_statement] = STATE(4635), + [sym_if_statement] = STATE(4635), + [sym_case_statement] = STATE(5057), + [sym_function_definition] = STATE(5057), + [sym_compound_statement] = STATE(5057), + [sym_subshell] = STATE(5323), + [sym_pipeline] = STATE(5481), + [sym_list] = STATE(5057), + [sym_negated_command] = STATE(5057), + [sym_test_command] = STATE(5057), + [sym_declaration_command] = STATE(5057), + [sym_unset_command] = STATE(5057), + [sym_command] = STATE(5057), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1020), + [sym_variable_assignments] = STATE(5057), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(443)] = { + [aux_sym__terminated_statement] = STATE(120), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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_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(444)] = { + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4897), + [sym_for_statement] = STATE(4897), + [sym_c_style_for_statement] = STATE(4897), + [sym_while_statement] = STATE(4608), + [sym_if_statement] = STATE(4608), + [sym_case_statement] = STATE(4897), + [sym_function_definition] = STATE(4897), + [sym_compound_statement] = STATE(4897), + [sym_subshell] = STATE(4897), + [sym_pipeline] = STATE(5419), + [sym_list] = STATE(4897), + [sym_negated_command] = STATE(4897), + [sym_test_command] = STATE(4897), + [sym_declaration_command] = STATE(4897), + [sym_unset_command] = STATE(4897), + [sym_command] = STATE(4897), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(932), + [sym_variable_assignments] = STATE(4897), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym__statements_repeat1] = STATE(448), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -68107,44 +72015,681 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(731), [sym__brace_start] = ACTIONS(733), }, - [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), + [STATE(445)] = { + [aux_sym__terminated_statement] = STATE(55), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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_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(446)] = { + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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_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(447)] = { + [aux_sym__terminated_statement] = STATE(438), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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_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(448)] = { + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5337), + [sym_for_statement] = STATE(5337), + [sym_c_style_for_statement] = STATE(5337), + [sym_while_statement] = STATE(4938), + [sym_if_statement] = STATE(4938), + [sym_case_statement] = STATE(5337), + [sym_function_definition] = STATE(5337), + [sym_compound_statement] = STATE(5337), + [sym_subshell] = STATE(5337), + [sym_pipeline] = STATE(5583), + [sym_list] = STATE(5337), + [sym_negated_command] = STATE(5337), + [sym_test_command] = STATE(5337), + [sym_declaration_command] = STATE(5337), + [sym_unset_command] = STATE(5337), + [sym_command] = STATE(5337), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1127), + [sym_variable_assignments] = STATE(5337), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(448), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(943), + [anon_sym_for] = ACTIONS(946), + [anon_sym_select] = ACTIONS(949), + [anon_sym_LPAREN_LPAREN] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(955), + [anon_sym_GT] = ACTIONS(955), + [anon_sym_GT_GT] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_while] = ACTIONS(964), + [anon_sym_until] = ACTIONS(964), + [anon_sym_if] = ACTIONS(967), + [anon_sym_case] = ACTIONS(970), + [anon_sym_function] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_typeset] = ACTIONS(988), + [anon_sym_export] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_local] = ACTIONS(988), + [anon_sym_unset] = ACTIONS(991), + [anon_sym_unsetenv] = ACTIONS(991), + [anon_sym_AMP_GT] = ACTIONS(955), + [anon_sym_AMP_GT_GT] = ACTIONS(958), + [anon_sym_LT_AMP] = ACTIONS(955), + [anon_sym_GT_AMP] = ACTIONS(955), + [anon_sym_GT_PIPE] = ACTIONS(958), + [anon_sym_LT_AMP_DASH] = ACTIONS(994), + [anon_sym_GT_AMP_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(997), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1006), + [sym__special_character] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_raw_string] = ACTIONS(1015), + [sym_ansi_c_string] = ACTIONS(1015), + [aux_sym_number_token1] = ACTIONS(1018), + [aux_sym_number_token2] = ACTIONS(1021), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1027), + [anon_sym_BQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1033), + [anon_sym_LT_LPAREN] = ACTIONS(1036), + [anon_sym_GT_LPAREN] = ACTIONS(1036), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1039), + [sym_variable_name] = ACTIONS(1042), + [sym_test_operator] = ACTIONS(1045), + [sym__brace_start] = ACTIONS(1048), + }, + [STATE(449)] = { + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5027), + [sym_for_statement] = STATE(5027), + [sym_c_style_for_statement] = STATE(5027), + [sym_while_statement] = STATE(4657), + [sym_if_statement] = STATE(4657), + [sym_case_statement] = STATE(5027), + [sym_function_definition] = STATE(5027), + [sym_compound_statement] = STATE(5027), + [sym_subshell] = STATE(5027), + [sym_pipeline] = STATE(5436), + [sym_list] = STATE(5027), + [sym_negated_command] = STATE(5027), + [sym_test_command] = STATE(5027), + [sym_declaration_command] = STATE(5027), + [sym_unset_command] = STATE(5027), + [sym_command] = STATE(5027), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(961), + [sym_variable_assignments] = STATE(5027), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym__statements_repeat1] = STATE(448), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(450)] = { + [aux_sym__terminated_statement] = STATE(51), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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_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(451)] = { + [aux_sym__terminated_statement] = STATE(52), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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_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(452)] = { + [sym__statement_not_pipeline] = STATE(7155), + [sym_redirected_statement] = STATE(5134), + [sym_for_statement] = STATE(5134), + [sym_c_style_for_statement] = STATE(5134), + [sym_while_statement] = STATE(4618), + [sym_if_statement] = STATE(4618), + [sym_case_statement] = STATE(5134), + [sym_function_definition] = STATE(5134), + [sym_compound_statement] = STATE(5134), + [sym_subshell] = STATE(5134), + [sym_pipeline] = STATE(5475), + [sym_list] = STATE(5134), + [sym_negated_command] = STATE(5134), + [sym_test_command] = STATE(5134), + [sym_declaration_command] = STATE(5134), + [sym_unset_command] = STATE(5134), + [sym_command] = STATE(5134), + [sym_command_name] = STATE(558), + [sym_variable_assignment] = STATE(1028), + [sym_variable_assignments] = STATE(5134), + [sym_subscript] = STATE(7249), + [sym_file_redirect] = STATE(2463), + [sym_herestring_redirect] = STATE(2495), + [sym_arithmetic_expansion] = STATE(950), + [sym_brace_expression] = STATE(950), + [sym_concatenation] = STATE(1602), + [sym_string] = STATE(950), + [sym_translated_string] = STATE(950), + [sym_number] = STATE(950), + [sym_simple_expansion] = STATE(950), + [sym_expansion] = STATE(950), + [sym_command_substitution] = STATE(950), + [sym_process_substitution] = STATE(950), + [aux_sym__statements_repeat1] = STATE(448), + [aux_sym_redirected_statement_repeat2] = STATE(4846), + [aux_sym_command_repeat1] = STATE(1036), + [aux_sym__literal_repeat1] = STATE(1321), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68198,44 +72743,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(77), [sym__brace_start] = ACTIONS(79), }, - [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), + [STATE(453)] = { + [aux_sym__terminated_statement] = STATE(53), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68289,44 +72834,226 @@ 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(454)] = { + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(4997), + [sym_for_statement] = STATE(4997), + [sym_c_style_for_statement] = STATE(4997), + [sym_while_statement] = STATE(4729), + [sym_if_statement] = STATE(4729), + [sym_case_statement] = STATE(4997), + [sym_function_definition] = STATE(4997), + [sym_compound_statement] = STATE(4997), + [sym_subshell] = STATE(4997), + [sym_pipeline] = STATE(5479), + [sym_list] = STATE(4997), + [sym_negated_command] = STATE(4997), + [sym_test_command] = STATE(4997), + [sym_declaration_command] = STATE(4997), + [sym_unset_command] = STATE(4997), + [sym_command] = STATE(4997), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1153), + [sym_variable_assignments] = STATE(4997), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym__statements_repeat1] = STATE(448), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), + [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(923), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), + [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(455)] = { + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4753), + [sym_for_statement] = STATE(4753), + [sym_c_style_for_statement] = STATE(4753), + [sym_while_statement] = STATE(4191), + [sym_if_statement] = STATE(4191), + [sym_case_statement] = STATE(4753), + [sym_function_definition] = STATE(4753), + [sym_compound_statement] = STATE(4753), + [sym_subshell] = STATE(4753), + [sym_pipeline] = STATE(4994), + [sym_list] = STATE(4753), + [sym_negated_command] = STATE(4753), + [sym_test_command] = STATE(4753), + [sym_declaration_command] = STATE(4753), + [sym_unset_command] = STATE(4753), + [sym_command] = STATE(4753), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(854), + [sym_variable_assignments] = STATE(4753), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym__statements_repeat1] = STATE(448), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), + }, + [STATE(456)] = { + [aux_sym__terminated_statement] = STATE(108), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68380,44 +73107,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [sym__brace_start] = ACTIONS(340), }, - [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), + [STATE(457)] = { + [aux_sym__terminated_statement] = STATE(114), + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5401), + [sym_for_statement] = STATE(5401), + [sym_c_style_for_statement] = STATE(5401), + [sym_while_statement] = STATE(4844), + [sym_if_statement] = STATE(4844), + [sym_case_statement] = STATE(5401), + [sym_function_definition] = STATE(5401), + [sym_compound_statement] = STATE(5401), + [sym_subshell] = STATE(5401), + [sym_pipeline] = STATE(5599), + [sym_list] = STATE(5401), + [sym_negated_command] = STATE(5401), + [sym_test_command] = STATE(5401), + [sym_declaration_command] = STATE(5401), + [sym_unset_command] = STATE(5401), + [sym_command] = STATE(5401), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1086), + [sym_variable_assignments] = STATE(5401), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68471,82 +73198,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(338), [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_word] = ACTIONS(997), + [STATE(458)] = { + [sym__statement_not_pipeline] = STATE(7151), + [sym_redirected_statement] = STATE(5623), + [sym_for_statement] = STATE(5623), + [sym_c_style_for_statement] = STATE(5623), + [sym_while_statement] = STATE(5518), + [sym_if_statement] = STATE(5518), + [sym_case_statement] = STATE(5623), + [sym_function_definition] = STATE(5623), + [sym_compound_statement] = STATE(5623), + [sym_subshell] = STATE(5623), + [sym_pipeline] = STATE(5919), + [sym_list] = STATE(5623), + [sym_negated_command] = STATE(5623), + [sym_test_command] = STATE(5623), + [sym_declaration_command] = STATE(5623), + [sym_unset_command] = STATE(5623), + [sym_command] = STATE(5623), + [sym_command_name] = STATE(650), + [sym_variable_assignment] = STATE(1897), + [sym_variable_assignments] = STATE(5623), + [sym_subscript] = STATE(7268), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1906), + [sym_brace_expression] = STATE(1906), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1906), + [sym_translated_string] = STATE(1906), + [sym_number] = STATE(1906), + [sym_simple_expansion] = STATE(1906), + [sym_expansion] = STATE(1906), + [sym_command_substitution] = STATE(1906), + [sym_process_substitution] = STATE(1906), + [aux_sym_redirected_statement_repeat2] = STATE(5608), + [aux_sym_command_repeat1] = STATE(1070), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(1051), [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(1053), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1055), [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(1057), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1059), [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(1061), + [anon_sym_typeset] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_local] = ACTIONS(1061), + [anon_sym_unset] = ACTIONS(1063), + [anon_sym_unsetenv] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1053), + [anon_sym_AMP_GT_GT] = ACTIONS(1055), + [anon_sym_LT_AMP] = ACTIONS(1053), + [anon_sym_GT_AMP] = ACTIONS(1053), + [anon_sym_GT_PIPE] = ACTIONS(1055), + [anon_sym_LT_AMP_DASH] = ACTIONS(1065), + [anon_sym_GT_AMP_DASH] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1067), [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(1069), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), + [sym_raw_string] = ACTIONS(1071), + [sym_ansi_c_string] = ACTIONS(1071), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -68556,49 +73283,139 @@ 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(1073), + [sym_variable_name] = ACTIONS(1075), + [sym_test_operator] = ACTIONS(1077), [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), + [STATE(459)] = { + [sym__statement_not_pipeline] = STATE(7151), + [sym_redirected_statement] = STATE(5729), + [sym_for_statement] = STATE(5729), + [sym_c_style_for_statement] = STATE(5729), + [sym_while_statement] = STATE(5524), + [sym_if_statement] = STATE(5524), + [sym_case_statement] = STATE(5729), + [sym_function_definition] = STATE(5729), + [sym_compound_statement] = STATE(5729), + [sym_subshell] = STATE(5729), + [sym_pipeline] = STATE(5746), + [sym_list] = STATE(5729), + [sym_negated_command] = STATE(5729), + [sym_test_command] = STATE(5729), + [sym_declaration_command] = STATE(5729), + [sym_unset_command] = STATE(5729), + [sym_command] = STATE(5729), + [sym_command_name] = STATE(650), + [sym_variable_assignment] = STATE(1920), + [sym_variable_assignments] = STATE(5729), + [sym_subscript] = STATE(7268), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1906), + [sym_brace_expression] = STATE(1906), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1906), + [sym_translated_string] = STATE(1906), + [sym_number] = STATE(1906), + [sym_simple_expansion] = STATE(1906), + [sym_expansion] = STATE(1906), + [sym_command_substitution] = STATE(1906), + [sym_process_substitution] = STATE(1906), + [aux_sym_redirected_statement_repeat2] = STATE(5608), + [aux_sym_command_repeat1] = STATE(1070), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1055), + [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(1057), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_typeset] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_local] = ACTIONS(1061), + [anon_sym_unset] = ACTIONS(1063), + [anon_sym_unsetenv] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1053), + [anon_sym_AMP_GT_GT] = ACTIONS(1055), + [anon_sym_LT_AMP] = ACTIONS(1053), + [anon_sym_GT_AMP] = ACTIONS(1053), + [anon_sym_GT_PIPE] = ACTIONS(1055), + [anon_sym_LT_AMP_DASH] = ACTIONS(1065), + [anon_sym_GT_AMP_DASH] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(312), + [sym__special_character] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(316), + [sym_raw_string] = ACTIONS(1071), + [sym_ansi_c_string] = ACTIONS(1071), + [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(1073), + [sym_variable_name] = ACTIONS(1075), + [sym_test_operator] = ACTIONS(1077), + [sym__brace_start] = ACTIONS(340), + }, + [STATE(460)] = { + [sym__statement_not_pipeline] = STATE(4855), + [sym_redirected_statement] = STATE(4855), + [sym_for_statement] = STATE(4855), + [sym_c_style_for_statement] = STATE(4855), + [sym_while_statement] = STATE(4721), + [sym_if_statement] = STATE(4721), + [sym_case_statement] = STATE(4855), + [sym_function_definition] = STATE(4855), + [sym_compound_statement] = STATE(4855), + [sym_subshell] = STATE(4855), + [sym_pipeline] = STATE(5992), + [sym_list] = STATE(4855), + [sym_negated_command] = STATE(4855), + [sym_test_command] = STATE(4855), + [sym_declaration_command] = STATE(4855), + [sym_unset_command] = STATE(4855), + [sym_command] = STATE(4855), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1022), + [sym_variable_assignments] = STATE(4855), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(761), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -68612,7 +73429,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 +73450,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 +73465,355 @@ 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), + [STATE(461)] = { + [sym__statement_not_pipeline] = STATE(7131), + [sym_redirected_statement] = STATE(5192), + [sym_for_statement] = STATE(5192), + [sym_c_style_for_statement] = STATE(5192), + [sym_while_statement] = STATE(4713), + [sym_if_statement] = STATE(4713), + [sym_case_statement] = STATE(5192), + [sym_function_definition] = STATE(5192), + [sym_compound_statement] = STATE(5192), + [sym_subshell] = STATE(5192), + [sym_pipeline] = STATE(5193), + [sym_list] = STATE(5192), + [sym_negated_command] = STATE(5192), + [sym_test_command] = STATE(5192), + [sym_declaration_command] = STATE(5192), + [sym_unset_command] = STATE(5192), + [sym_command] = STATE(5192), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(1002), + [sym_variable_assignments] = STATE(5192), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1064), + [sym_brace_expression] = STATE(1064), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1064), + [sym_translated_string] = STATE(1064), + [sym_number] = STATE(1064), + [sym_simple_expansion] = STATE(1064), + [sym_expansion] = STATE(1064), + [sym_command_substitution] = STATE(1064), + [sym_process_substitution] = STATE(1064), + [aux_sym_redirected_statement_repeat2] = STATE(4806), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(1422), + [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(1065), - [sym_variable_name] = ACTIONS(215), - [sym_test_operator] = ACTIONS(1067), - [sym__brace_start] = ACTIONS(1069), + [sym_file_descriptor] = ACTIONS(133), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(771), + [sym__brace_start] = ACTIONS(340), }, - [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(462)] = { + [sym__statement_not_pipeline] = STATE(4855), + [sym_redirected_statement] = STATE(4855), + [sym_for_statement] = STATE(4855), + [sym_c_style_for_statement] = STATE(4855), + [sym_while_statement] = STATE(4768), + [sym_if_statement] = STATE(4768), + [sym_case_statement] = STATE(4855), + [sym_function_definition] = STATE(4855), + [sym_compound_statement] = STATE(4855), + [sym_subshell] = STATE(4855), + [sym_pipeline] = STATE(5963), + [sym_list] = STATE(4855), + [sym_negated_command] = STATE(4855), + [sym_test_command] = STATE(4855), + [sym_declaration_command] = STATE(4855), + [sym_unset_command] = STATE(4855), + [sym_command] = STATE(4855), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1060), + [sym_variable_assignments] = STATE(4855), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(463)] = { + [sym__statement_not_pipeline] = STATE(7057), + [sym_redirected_statement] = STATE(5010), + [sym_for_statement] = STATE(5010), + [sym_c_style_for_statement] = STATE(5010), + [sym_while_statement] = STATE(4765), + [sym_if_statement] = STATE(4765), + [sym_case_statement] = STATE(5010), + [sym_function_definition] = STATE(5010), + [sym_compound_statement] = STATE(5010), + [sym_subshell] = STATE(5010), + [sym_pipeline] = STATE(5011), + [sym_list] = STATE(5010), + [sym_negated_command] = STATE(5010), + [sym_test_command] = STATE(5010), + [sym_declaration_command] = STATE(5010), + [sym_unset_command] = STATE(5010), + [sym_command] = STATE(5010), + [sym_command_name] = STATE(560), + [sym_variable_assignment] = STATE(1049), + [sym_variable_assignments] = STATE(5010), + [sym_subscript] = STATE(7242), + [sym_file_redirect] = STATE(2269), + [sym_herestring_redirect] = STATE(2270), + [sym_arithmetic_expansion] = STATE(1015), + [sym_brace_expression] = STATE(1015), + [sym_concatenation] = STATE(1617), + [sym_string] = STATE(1015), + [sym_translated_string] = STATE(1015), + [sym_number] = STATE(1015), + [sym_simple_expansion] = STATE(1015), + [sym_expansion] = STATE(1015), + [sym_command_substitution] = STATE(1015), + [sym_process_substitution] = STATE(1015), + [aux_sym_redirected_statement_repeat2] = STATE(4913), + [aux_sym_command_repeat1] = STATE(1018), + [aux_sym__literal_repeat1] = STATE(1292), + [sym_word] = ACTIONS(797), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(799), + [anon_sym_GT] = ACTIONS(799), + [anon_sym_GT_GT] = ACTIONS(801), + [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(803), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(799), + [anon_sym_AMP_GT_GT] = ACTIONS(801), + [anon_sym_LT_AMP] = ACTIONS(799), + [anon_sym_GT_AMP] = ACTIONS(799), + [anon_sym_GT_PIPE] = ACTIONS(801), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym__special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(843), + [sym_variable_name] = ACTIONS(845), + [sym_test_operator] = ACTIONS(847), + [sym__brace_start] = ACTIONS(849), + }, + [STATE(464)] = { + [sym__statement_not_pipeline] = STATE(7151), + [sym_redirected_statement] = STATE(5628), + [sym_for_statement] = STATE(5628), + [sym_c_style_for_statement] = STATE(5628), + [sym_while_statement] = STATE(5445), + [sym_if_statement] = STATE(5445), + [sym_case_statement] = STATE(5628), + [sym_function_definition] = STATE(5628), + [sym_compound_statement] = STATE(5628), + [sym_subshell] = STATE(5628), + [sym_pipeline] = STATE(5913), + [sym_list] = STATE(5628), + [sym_negated_command] = STATE(5628), + [sym_test_command] = STATE(5628), + [sym_declaration_command] = STATE(5628), + [sym_unset_command] = STATE(5628), + [sym_command] = STATE(5628), + [sym_command_name] = STATE(650), + [sym_variable_assignment] = STATE(1883), + [sym_variable_assignments] = STATE(5628), + [sym_subscript] = STATE(7268), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1906), + [sym_brace_expression] = STATE(1906), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1906), + [sym_translated_string] = STATE(1906), + [sym_number] = STATE(1906), + [sym_simple_expansion] = STATE(1906), + [sym_expansion] = STATE(1906), + [sym_command_substitution] = STATE(1906), + [sym_process_substitution] = STATE(1906), + [aux_sym_redirected_statement_repeat2] = STATE(5608), + [aux_sym_command_repeat1] = STATE(1070), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(1051), [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(1053), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1055), [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(1057), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1059), [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(1061), + [anon_sym_typeset] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_local] = ACTIONS(1061), + [anon_sym_unset] = ACTIONS(1063), + [anon_sym_unsetenv] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1053), + [anon_sym_AMP_GT_GT] = ACTIONS(1055), + [anon_sym_LT_AMP] = ACTIONS(1053), + [anon_sym_GT_AMP] = ACTIONS(1053), + [anon_sym_GT_PIPE] = ACTIONS(1055), + [anon_sym_LT_AMP_DASH] = ACTIONS(1065), + [anon_sym_GT_AMP_DASH] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1067), [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(1069), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), + [sym_raw_string] = ACTIONS(1071), + [sym_ansi_c_string] = ACTIONS(1071), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -68826,63 +73823,63 @@ 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(1073), + [sym_variable_name] = ACTIONS(1075), + [sym_test_operator] = ACTIONS(1077), [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), + [STATE(465)] = { + [sym__statement_not_pipeline] = STATE(5991), + [sym_redirected_statement] = STATE(5991), + [sym_for_statement] = STATE(5991), + [sym_c_style_for_statement] = STATE(5991), + [sym_while_statement] = STATE(5589), + [sym_if_statement] = STATE(5589), + [sym_case_statement] = STATE(5991), + [sym_function_definition] = STATE(5991), + [sym_compound_statement] = STATE(5991), + [sym_subshell] = STATE(5991), + [sym_pipeline] = STATE(5971), + [sym_list] = STATE(5991), + [sym_negated_command] = STATE(5991), + [sym_test_command] = STATE(5991), + [sym_declaration_command] = STATE(5991), + [sym_unset_command] = STATE(5991), + [sym_command] = STATE(5991), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2170), + [sym_variable_assignments] = STATE(5991), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3199), + [sym_herestring_redirect] = STATE(3206), + [sym_arithmetic_expansion] = STATE(2137), + [sym_brace_expression] = STATE(2137), + [sym_concatenation] = STATE(2660), + [sym_string] = STATE(2137), + [sym_translated_string] = STATE(2137), + [sym_number] = STATE(2137), + [sym_simple_expansion] = STATE(2137), + [sym_expansion] = STATE(2137), + [sym_command_substitution] = STATE(2137), + [sym_process_substitution] = STATE(2137), + [aux_sym_redirected_statement_repeat2] = STATE(5692), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(2584), + [sym_word] = ACTIONS(1079), [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_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1085), [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_BANG] = ACTIONS(1087), [anon_sym_LBRACK] = ACTIONS(167), [anon_sym_LBRACK_LBRACK] = ACTIONS(171), [anon_sym_declare] = ACTIONS(173), @@ -68892,73 +73889,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_AMP_GT] = ACTIONS(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1083), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_GT_PIPE] = ACTIONS(1083), + [anon_sym_LT_AMP_DASH] = ACTIONS(1089), + [anon_sym_GT_AMP_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1091), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1097), + [sym__special_character] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym_raw_string] = ACTIONS(1103), + [sym_ansi_c_string] = ACTIONS(1103), + [aux_sym_number_token1] = ACTIONS(1105), + [aux_sym_number_token2] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), + [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1065), + [sym_file_descriptor] = ACTIONS(1119), [sym_variable_name] = ACTIONS(215), - [sym_test_operator] = ACTIONS(1067), - [sym__brace_start] = ACTIONS(1069), + [sym_test_operator] = ACTIONS(1121), + [sym__brace_start] = ACTIONS(1123), }, - [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(466)] = { + [sym__statement_not_pipeline] = STATE(7154), + [sym_redirected_statement] = STATE(5774), + [sym_for_statement] = STATE(5774), + [sym_c_style_for_statement] = STATE(5774), + [sym_while_statement] = STATE(5555), + [sym_if_statement] = STATE(5555), + [sym_case_statement] = STATE(5774), + [sym_function_definition] = STATE(5774), + [sym_compound_statement] = STATE(5774), + [sym_subshell] = STATE(5774), + [sym_pipeline] = STATE(5839), + [sym_list] = STATE(5774), + [sym_negated_command] = STATE(5774), + [sym_test_command] = STATE(5774), + [sym_declaration_command] = STATE(5774), + [sym_unset_command] = STATE(5774), + [sym_command] = STATE(5774), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(2157), + [sym_variable_assignments] = STATE(5774), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3199), + [sym_herestring_redirect] = STATE(3206), + [sym_arithmetic_expansion] = STATE(2137), + [sym_brace_expression] = STATE(2137), + [sym_concatenation] = STATE(2660), + [sym_string] = STATE(2137), + [sym_translated_string] = STATE(2137), + [sym_number] = STATE(2137), + [sym_simple_expansion] = STATE(2137), + [sym_expansion] = STATE(2137), + [sym_command_substitution] = STATE(2137), + [sym_process_substitution] = STATE(2137), + [aux_sym_redirected_statement_repeat2] = STATE(5692), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(2584), + [sym_word] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(143), + [anon_sym_select] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1081), + [anon_sym_GT_GT] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1085), + [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(1087), + [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(1081), + [anon_sym_AMP_GT_GT] = ACTIONS(1083), + [anon_sym_LT_AMP] = ACTIONS(1081), + [anon_sym_GT_AMP] = ACTIONS(1081), + [anon_sym_GT_PIPE] = ACTIONS(1083), + [anon_sym_LT_AMP_DASH] = ACTIONS(1089), + [anon_sym_GT_AMP_DASH] = ACTIONS(1089), + [anon_sym_LT_LT_LT] = ACTIONS(1091), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1093), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1097), + [sym__special_character] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1101), + [sym_raw_string] = ACTIONS(1103), + [sym_ansi_c_string] = ACTIONS(1103), + [aux_sym_number_token1] = ACTIONS(1105), + [aux_sym_number_token2] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1111), + [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1115), + [anon_sym_LT_LPAREN] = ACTIONS(1117), + [anon_sym_GT_LPAREN] = ACTIONS(1117), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1119), + [sym_variable_name] = ACTIONS(215), + [sym_test_operator] = ACTIONS(1121), + [sym__brace_start] = ACTIONS(1123), + }, + [STATE(467)] = { + [sym__statement_not_pipeline] = STATE(4855), + [sym_redirected_statement] = STATE(4855), + [sym_for_statement] = STATE(4855), + [sym_c_style_for_statement] = STATE(4855), + [sym_while_statement] = STATE(4643), + [sym_if_statement] = STATE(4643), + [sym_case_statement] = STATE(4855), + [sym_function_definition] = STATE(4855), + [sym_compound_statement] = STATE(4855), + [sym_subshell] = STATE(4855), + [sym_pipeline] = STATE(5975), + [sym_list] = STATE(4855), + [sym_negated_command] = STATE(4855), + [sym_test_command] = STATE(4855), + [sym_declaration_command] = STATE(4855), + [sym_unset_command] = STATE(4855), + [sym_command] = STATE(4855), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1106), + [sym_variable_assignments] = STATE(4855), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -68970,18 +74057,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -69011,44 +74098,44 @@ 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(468)] = { + [sym__statement_not_pipeline] = STATE(7091), + [sym_redirected_statement] = STATE(5061), + [sym_for_statement] = STATE(5061), + [sym_c_style_for_statement] = STATE(5061), + [sym_while_statement] = STATE(4636), + [sym_if_statement] = STATE(4636), + [sym_case_statement] = STATE(5061), + [sym_function_definition] = STATE(5061), + [sym_compound_statement] = STATE(5061), + [sym_subshell] = STATE(5061), + [sym_pipeline] = STATE(5062), + [sym_list] = STATE(5061), + [sym_negated_command] = STATE(5061), + [sym_test_command] = STATE(5061), + [sym_declaration_command] = STATE(5061), + [sym_unset_command] = STATE(5061), + [sym_command] = STATE(5061), + [sym_command_name] = STATE(575), + [sym_variable_assignment] = STATE(1136), + [sym_variable_assignments] = STATE(5061), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2604), + [sym_herestring_redirect] = STATE(2605), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(4778), + [aux_sym_command_repeat1] = STATE(1006), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(921), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), @@ -69060,18 +74147,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(923), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(925), [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(927), + [anon_sym_typeset] = ACTIONS(927), + [anon_sym_export] = ACTIONS(927), + [anon_sym_readonly] = ACTIONS(927), + [anon_sym_local] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(929), + [anon_sym_unsetenv] = ACTIONS(929), [anon_sym_AMP_GT] = ACTIONS(286), [anon_sym_AMP_GT_GT] = ACTIONS(288), [anon_sym_LT_AMP] = ACTIONS(286), @@ -69101,223 +74188,223 @@ 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), + [STATE(469)] = { + [sym__statement_not_pipeline] = STATE(4996), + [sym_redirected_statement] = STATE(4996), + [sym_for_statement] = STATE(4996), + [sym_c_style_for_statement] = STATE(4996), + [sym_while_statement] = STATE(4443), + [sym_if_statement] = STATE(4443), + [sym_case_statement] = STATE(4996), + [sym_function_definition] = STATE(4996), + [sym_compound_statement] = STATE(4996), + [sym_subshell] = STATE(4996), + [sym_pipeline] = STATE(5979), + [sym_list] = STATE(4996), + [sym_negated_command] = STATE(4996), + [sym_test_command] = STATE(4996), + [sym_declaration_command] = STATE(4996), + [sym_unset_command] = STATE(4996), + [sym_command] = STATE(4996), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(872), + [sym_variable_assignments] = STATE(4996), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), [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(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), }, - [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), + [STATE(470)] = { + [sym__statement_not_pipeline] = STATE(7018), + [sym_redirected_statement] = STATE(4630), + [sym_for_statement] = STATE(4630), + [sym_c_style_for_statement] = STATE(4630), + [sym_while_statement] = STATE(4272), + [sym_if_statement] = STATE(4272), + [sym_case_statement] = STATE(4630), + [sym_function_definition] = STATE(4630), + [sym_compound_statement] = STATE(4630), + [sym_subshell] = STATE(4630), + [sym_pipeline] = STATE(4640), + [sym_list] = STATE(4630), + [sym_negated_command] = STATE(4630), + [sym_test_command] = STATE(4630), + [sym_declaration_command] = STATE(4630), + [sym_unset_command] = STATE(4630), + [sym_command] = STATE(4630), + [sym_command_name] = STATE(554), + [sym_variable_assignment] = STATE(875), + [sym_variable_assignments] = STATE(4630), + [sym_subscript] = STATE(7211), + [sym_file_redirect] = STATE(1851), + [sym_herestring_redirect] = STATE(1857), + [sym_arithmetic_expansion] = STATE(876), + [sym_brace_expression] = STATE(876), + [sym_concatenation] = STATE(1132), + [sym_string] = STATE(876), + [sym_translated_string] = STATE(876), + [sym_number] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [aux_sym_redirected_statement_repeat2] = STATE(4610), + [aux_sym_command_repeat1] = STATE(944), + [aux_sym__literal_repeat1] = STATE(945), + [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(382), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(390), + [anon_sym_declare] = ACTIONS(392), + [anon_sym_typeset] = ACTIONS(392), + [anon_sym_export] = ACTIONS(392), + [anon_sym_readonly] = ACTIONS(392), + [anon_sym_local] = ACTIONS(392), + [anon_sym_unset] = ACTIONS(394), + [anon_sym_unsetenv] = ACTIONS(394), + [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(396), + [anon_sym_GT_AMP_DASH] = ACTIONS(396), + [anon_sym_LT_LT_LT] = ACTIONS(398), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(400), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym__special_character] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(408), + [sym_raw_string] = ACTIONS(410), + [sym_ansi_c_string] = ACTIONS(410), + [aux_sym_number_token1] = ACTIONS(412), + [aux_sym_number_token2] = ACTIONS(414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), + [anon_sym_BQUOTE] = ACTIONS(420), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(422), + [anon_sym_LT_LPAREN] = ACTIONS(424), + [anon_sym_GT_LPAREN] = ACTIONS(424), [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(426), + [sym_variable_name] = ACTIONS(428), + [sym_test_operator] = ACTIONS(430), + [sym__brace_start] = ACTIONS(432), }, - [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), + [STATE(471)] = { + [sym__statement_not_pipeline] = STATE(5213), + [sym_redirected_statement] = STATE(5213), + [sym_for_statement] = STATE(5213), + [sym_c_style_for_statement] = STATE(5213), + [sym_while_statement] = STATE(4597), + [sym_if_statement] = STATE(4597), + [sym_case_statement] = STATE(5213), + [sym_function_definition] = STATE(5213), + [sym_compound_statement] = STATE(5213), + [sym_subshell] = STATE(5213), + [sym_pipeline] = STATE(5985), + [sym_list] = STATE(5213), + [sym_negated_command] = STATE(5213), + [sym_test_command] = STATE(5213), + [sym_declaration_command] = STATE(5213), + [sym_unset_command] = STATE(5213), + [sym_command] = STATE(5213), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(900), + [sym_variable_assignments] = STATE(5213), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -69371,43 +74458,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(731), [sym__brace_start] = ACTIONS(733), }, - [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), + [STATE(472)] = { + [sym__statement_not_pipeline] = STATE(7134), + [sym_redirected_statement] = STATE(4979), + [sym_for_statement] = STATE(4979), + [sym_c_style_for_statement] = STATE(4979), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(4979), + [sym_function_definition] = STATE(4979), + [sym_compound_statement] = STATE(4979), + [sym_subshell] = STATE(4979), + [sym_pipeline] = STATE(4834), + [sym_list] = STATE(4979), + [sym_negated_command] = STATE(4979), + [sym_test_command] = STATE(4979), + [sym_declaration_command] = STATE(4979), + [sym_unset_command] = STATE(4979), + [sym_command] = STATE(4979), + [sym_command_name] = STATE(557), + [sym_variable_assignment] = STATE(910), + [sym_variable_assignments] = STATE(4979), + [sym_subscript] = STATE(7215), + [sym_file_redirect] = STATE(2027), + [sym_herestring_redirect] = STATE(2028), + [sym_arithmetic_expansion] = STATE(907), + [sym_brace_expression] = STATE(907), + [sym_concatenation] = STATE(1304), + [sym_string] = STATE(907), + [sym_translated_string] = STATE(907), + [sym_number] = STATE(907), + [sym_simple_expansion] = STATE(907), + [sym_expansion] = STATE(907), + [sym_command_substitution] = STATE(907), + [sym_process_substitution] = STATE(907), + [aux_sym_redirected_statement_repeat2] = STATE(4773), + [aux_sym_command_repeat1] = STATE(970), + [aux_sym__literal_repeat1] = STATE(1100), [sym_word] = ACTIONS(661), [anon_sym_for] = ACTIONS(663), [anon_sym_select] = ACTIONS(665), @@ -69461,43 +74548,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(731), [sym__brace_start] = ACTIONS(733), }, - [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), + [STATE(473)] = { + [sym__statement_not_pipeline] = STATE(4855), + [sym_redirected_statement] = STATE(4855), + [sym_for_statement] = STATE(4855), + [sym_c_style_for_statement] = STATE(4855), + [sym_while_statement] = STATE(4622), + [sym_if_statement] = STATE(4622), + [sym_case_statement] = STATE(4855), + [sym_function_definition] = STATE(4855), + [sym_compound_statement] = STATE(4855), + [sym_subshell] = STATE(4855), + [sym_pipeline] = STATE(5964), + [sym_list] = STATE(4855), + [sym_negated_command] = STATE(4855), + [sym_test_command] = STATE(4855), + [sym_declaration_command] = STATE(4855), + [sym_unset_command] = STATE(4855), + [sym_command] = STATE(4855), + [sym_command_name] = STATE(558), + [sym_variable_assignment] = STATE(941), + [sym_variable_assignments] = STATE(4855), + [sym_subscript] = STATE(7249), + [sym_file_redirect] = STATE(2463), + [sym_herestring_redirect] = STATE(2495), + [sym_arithmetic_expansion] = STATE(950), + [sym_brace_expression] = STATE(950), + [sym_concatenation] = STATE(1602), + [sym_string] = STATE(950), + [sym_translated_string] = STATE(950), + [sym_number] = STATE(950), + [sym_simple_expansion] = STATE(950), + [sym_expansion] = STATE(950), + [sym_command_substitution] = STATE(950), + [sym_process_substitution] = STATE(950), + [aux_sym_redirected_statement_repeat2] = STATE(4846), + [aux_sym_command_repeat1] = STATE(1036), + [aux_sym__literal_repeat1] = STATE(1321), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -69551,148 +74638,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(77), [sym__brace_start] = ACTIONS(79), }, - [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), + [STATE(474)] = { + [sym__statement_not_pipeline] = STATE(4855), + [sym_redirected_statement] = STATE(4855), + [sym_for_statement] = STATE(4855), + [sym_c_style_for_statement] = STATE(4855), + [sym_while_statement] = STATE(4872), + [sym_if_statement] = STATE(4872), + [sym_case_statement] = STATE(4855), + [sym_function_definition] = STATE(4855), + [sym_compound_statement] = STATE(4855), + [sym_subshell] = STATE(4855), + [sym_pipeline] = STATE(5978), + [sym_list] = STATE(4855), + [sym_negated_command] = STATE(4855), + [sym_test_command] = STATE(4855), + [sym_declaration_command] = STATE(4855), + [sym_unset_command] = STATE(4855), + [sym_command] = STATE(4855), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1248), + [sym_variable_assignments] = STATE(4855), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), + [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_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(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_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_BANG] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(298), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(300), @@ -69731,43 +74728,43 @@ 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(475)] = { + [sym__statement_not_pipeline] = STATE(7079), + [sym_redirected_statement] = STATE(5380), + [sym_for_statement] = STATE(5380), + [sym_c_style_for_statement] = STATE(5380), + [sym_while_statement] = STATE(4870), + [sym_if_statement] = STATE(4870), + [sym_case_statement] = STATE(5380), + [sym_function_definition] = STATE(5380), + [sym_compound_statement] = STATE(5380), + [sym_subshell] = STATE(5380), + [sym_pipeline] = STATE(5383), + [sym_list] = STATE(5380), + [sym_negated_command] = STATE(5380), + [sym_test_command] = STATE(5380), + [sym_declaration_command] = STATE(5380), + [sym_unset_command] = STATE(5380), + [sym_command] = STATE(5380), + [sym_command_name] = STATE(578), + [sym_variable_assignment] = STATE(1245), + [sym_variable_assignments] = STATE(5380), + [sym_subscript] = STATE(7258), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1236), + [sym_brace_expression] = STATE(1236), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1236), + [sym_translated_string] = STATE(1236), + [sym_number] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [aux_sym_redirected_statement_repeat2] = STATE(5069), + [aux_sym_command_repeat1] = STATE(1068), + [aux_sym__literal_repeat1] = STATE(1422), [sym_word] = ACTIONS(284), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -69821,262 +74818,172 @@ 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), - [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(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), - [sym_word] = ACTIONS(997), + [STATE(476)] = { + [sym__statement_not_pipeline] = STATE(7155), + [sym_redirected_statement] = STATE(5205), + [sym_for_statement] = STATE(5205), + [sym_c_style_for_statement] = STATE(5205), + [sym_while_statement] = STATE(4733), + [sym_if_statement] = STATE(4733), + [sym_case_statement] = STATE(5205), + [sym_function_definition] = STATE(5205), + [sym_compound_statement] = STATE(5205), + [sym_subshell] = STATE(5205), + [sym_pipeline] = STATE(4986), + [sym_list] = STATE(5205), + [sym_negated_command] = STATE(5205), + [sym_test_command] = STATE(5205), + [sym_declaration_command] = STATE(5205), + [sym_unset_command] = STATE(5205), + [sym_command] = STATE(5205), + [sym_command_name] = STATE(558), + [sym_variable_assignment] = STATE(1076), + [sym_variable_assignments] = STATE(5205), + [sym_subscript] = STATE(7249), + [sym_file_redirect] = STATE(2463), + [sym_herestring_redirect] = STATE(2495), + [sym_arithmetic_expansion] = STATE(950), + [sym_brace_expression] = STATE(950), + [sym_concatenation] = STATE(1602), + [sym_string] = STATE(950), + [sym_translated_string] = STATE(950), + [sym_number] = STATE(950), + [sym_simple_expansion] = STATE(950), + [sym_expansion] = STATE(950), + [sym_command_substitution] = STATE(950), + [sym_process_substitution] = STATE(950), + [aux_sym_redirected_statement_repeat2] = STATE(4846), + [aux_sym_command_repeat1] = STATE(1036), + [aux_sym__literal_repeat1] = STATE(1321), + [sym_word] = ACTIONS(7), [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(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(1003), + [anon_sym_function] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(31), [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), + [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(1019), - [sym_variable_name] = ACTIONS(1021), - [sym_test_operator] = ACTIONS(1023), - [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(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), + [STATE(477)] = { + [sym__statement_not_pipeline] = STATE(4855), + [sym_redirected_statement] = STATE(4855), + [sym_for_statement] = STATE(4855), + [sym_c_style_for_statement] = STATE(4855), + [sym_while_statement] = STATE(5472), + [sym_if_statement] = STATE(5472), + [sym_case_statement] = STATE(4855), + [sym_function_definition] = STATE(4855), + [sym_compound_statement] = STATE(4855), + [sym_subshell] = STATE(4855), + [sym_pipeline] = STATE(5986), + [sym_list] = STATE(4855), + [sym_negated_command] = STATE(4855), + [sym_test_command] = STATE(4855), + [sym_declaration_command] = STATE(4855), + [sym_unset_command] = STATE(4855), + [sym_command] = STATE(4855), + [sym_command_name] = STATE(650), + [sym_variable_assignment] = STATE(1924), + [sym_variable_assignments] = STATE(4855), + [sym_subscript] = STATE(7268), + [sym_file_redirect] = STATE(2487), + [sym_herestring_redirect] = STATE(2491), + [sym_arithmetic_expansion] = STATE(1906), + [sym_brace_expression] = STATE(1906), + [sym_concatenation] = STATE(1614), + [sym_string] = STATE(1906), + [sym_translated_string] = STATE(1906), + [sym_number] = STATE(1906), + [sym_simple_expansion] = STATE(1906), + [sym_expansion] = STATE(1906), + [sym_command_substitution] = STATE(1906), + [sym_process_substitution] = STATE(1906), + [aux_sym_redirected_statement_repeat2] = STATE(5608), + [aux_sym_command_repeat1] = STATE(1070), + [aux_sym__literal_repeat1] = STATE(1422), + [sym_word] = ACTIONS(1051), [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(1053), + [anon_sym_GT] = ACTIONS(1053), + [anon_sym_GT_GT] = ACTIONS(1055), [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(1057), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(1059), [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(1061), + [anon_sym_typeset] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1061), + [anon_sym_local] = ACTIONS(1061), + [anon_sym_unset] = ACTIONS(1063), + [anon_sym_unsetenv] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1053), + [anon_sym_AMP_GT_GT] = ACTIONS(1055), + [anon_sym_LT_AMP] = ACTIONS(1053), + [anon_sym_GT_AMP] = ACTIONS(1053), + [anon_sym_GT_PIPE] = ACTIONS(1055), + [anon_sym_LT_AMP_DASH] = ACTIONS(1065), + [anon_sym_GT_AMP_DASH] = ACTIONS(1065), + [anon_sym_LT_LT_LT] = ACTIONS(1067), [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(1069), [anon_sym_DQUOTE] = ACTIONS(316), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), + [sym_raw_string] = ACTIONS(1071), + [sym_ansi_c_string] = ACTIONS(1071), [aux_sym_number_token1] = ACTIONS(320), [aux_sym_number_token2] = ACTIONS(322), [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), @@ -70086,31 +74993,31 @@ 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(1073), + [sym_variable_name] = ACTIONS(1075), + [sym_test_operator] = ACTIONS(1077), [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_word] = ACTIONS(1071), + [STATE(478)] = { + [sym__expression] = STATE(2922), + [sym_binary_expression] = STATE(3078), + [sym_ternary_expression] = STATE(3078), + [sym_unary_expression] = STATE(3078), + [sym_postfix_expression] = STATE(3078), + [sym_parenthesized_expression] = STATE(3078), + [sym_arithmetic_expansion] = STATE(2747), + [sym_brace_expression] = STATE(2747), + [sym_concatenation] = STATE(3078), + [sym_string] = STATE(2747), + [sym_translated_string] = STATE(2747), + [sym_number] = STATE(2747), + [sym_simple_expansion] = STATE(2747), + [sym_expansion] = STATE(2747), + [sym_command_substitution] = STATE(2747), + [sym_process_substitution] = STATE(2747), + [aux_sym__literal_repeat1] = STATE(2661), + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym_word] = ACTIONS(1125), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70120,13 +75027,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70134,8 +75041,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70144,57 +75051,57 @@ 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(1077), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1131), [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(1133), + [anon_sym_DASH_DASH2] = ACTIONS(1133), + [anon_sym_DASH2] = ACTIONS(1135), + [anon_sym_PLUS2] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1091), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1145), + [sym_test_operator] = ACTIONS(1147), + [sym__brace_start] = ACTIONS(543), }, - [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), + [STATE(479)] = { + [sym__expression] = STATE(3272), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(2719), + [sym_brace_expression] = STATE(2719), + [sym_concatenation] = STATE(3317), + [sym_string] = STATE(2719), + [sym_translated_string] = STATE(2719), + [sym_number] = STATE(2719), + [sym_simple_expansion] = STATE(2719), + [sym_expansion] = STATE(2719), + [sym_command_substitution] = STATE(2719), + [sym_process_substitution] = STATE(2719), + [aux_sym__literal_repeat1] = STATE(2814), + [aux_sym_concatenation_repeat1] = STATE(2738), + [sym_word] = ACTIONS(502), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70204,13 +75111,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70218,8 +75125,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70228,57 +75135,57 @@ 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(509), + [anon_sym_BANG] = ACTIONS(511), + [anon_sym_RBRACK] = ACTIONS(504), [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(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(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(521), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(525), + [sym_ansi_c_string] = ACTIONS(525), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1097), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1139), + [sym_test_operator] = ACTIONS(541), + [sym__brace_start] = ACTIONS(543), }, - [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_word] = ACTIONS(1071), + [STATE(480)] = { + [sym__expression] = STATE(2922), + [sym_binary_expression] = STATE(3078), + [sym_ternary_expression] = STATE(3078), + [sym_unary_expression] = STATE(3078), + [sym_postfix_expression] = STATE(3078), + [sym_parenthesized_expression] = STATE(3078), + [sym_arithmetic_expansion] = STATE(2747), + [sym_brace_expression] = STATE(2747), + [sym_concatenation] = STATE(3078), + [sym_string] = STATE(2747), + [sym_translated_string] = STATE(2747), + [sym_number] = STATE(2747), + [sym_simple_expansion] = STATE(2747), + [sym_expansion] = STATE(2747), + [sym_command_substitution] = STATE(2747), + [sym_process_substitution] = STATE(2747), + [aux_sym__literal_repeat1] = STATE(2661), + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym_word] = ACTIONS(1125), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70288,13 +75195,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70302,8 +75209,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70312,57 +75219,57 @@ 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(1099), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1149), [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(1133), + [anon_sym_DASH_DASH2] = ACTIONS(1133), + [anon_sym_DASH2] = ACTIONS(1135), + [anon_sym_PLUS2] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1101), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1151), + [sym_test_operator] = ACTIONS(1147), + [sym__brace_start] = ACTIONS(543), }, - [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), - [sym_word] = ACTIONS(1071), + [STATE(481)] = { + [sym__expression] = STATE(3337), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(2708), + [sym_brace_expression] = STATE(2708), + [sym_concatenation] = STATE(2784), + [sym_string] = STATE(2708), + [sym_translated_string] = STATE(2708), + [sym_number] = STATE(2708), + [sym_simple_expansion] = STATE(2708), + [sym_expansion] = STATE(2708), + [sym_command_substitution] = STATE(2708), + [sym_process_substitution] = STATE(2708), + [aux_sym__literal_repeat1] = STATE(2654), + [aux_sym_concatenation_repeat1] = STATE(2716), + [sym_word] = ACTIONS(235), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70372,13 +75279,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70386,8 +75293,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70396,57 +75303,57 @@ 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(1103), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(246), [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(101), + [anon_sym_DASH_DASH2] = ACTIONS(101), + [anon_sym_DASH2] = ACTIONS(103), + [anon_sym_PLUS2] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1157), + [aux_sym_concatenation_token1] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(256), + [sym__special_character] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_raw_string] = ACTIONS(1165), + [sym_ansi_c_string] = ACTIONS(1165), + [aux_sym_number_token1] = ACTIONS(262), + [aux_sym_number_token2] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), + [anon_sym_BQUOTE] = ACTIONS(270), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1105), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1159), + [sym_test_operator] = ACTIONS(280), + [sym__brace_start] = ACTIONS(282), }, - [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), - [sym_word] = ACTIONS(1071), + [STATE(482)] = { + [sym__expression] = STATE(3246), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(2739), + [sym_brace_expression] = STATE(2739), + [sym_concatenation] = STATE(2784), + [sym_string] = STATE(2739), + [sym_translated_string] = STATE(2739), + [sym_number] = STATE(2739), + [sym_simple_expansion] = STATE(2739), + [sym_expansion] = STATE(2739), + [sym_command_substitution] = STATE(2739), + [sym_process_substitution] = STATE(2739), + [aux_sym__literal_repeat1] = STATE(2785), + [aux_sym_concatenation_repeat1] = STATE(2650), + [sym_word] = ACTIONS(1173), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70456,13 +75363,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70470,8 +75377,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70480,57 +75387,57 @@ 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(358), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_RBRACK_RBRACK] = ACTIONS(504), [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(1177), + [anon_sym_DASH_DASH2] = ACTIONS(1177), + [anon_sym_DASH2] = ACTIONS(1179), + [anon_sym_PLUS2] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1157), + [aux_sym_concatenation_token1] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(256), + [sym__special_character] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_raw_string] = ACTIONS(1185), + [sym_ansi_c_string] = ACTIONS(1185), + [aux_sym_number_token1] = ACTIONS(262), + [aux_sym_number_token2] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), + [anon_sym_BQUOTE] = ACTIONS(270), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(358), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1159), + [sym_test_operator] = ACTIONS(1187), + [sym__brace_start] = ACTIONS(282), }, - [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), - [sym_word] = ACTIONS(235), + [STATE(483)] = { + [sym__expression] = STATE(2922), + [sym_binary_expression] = STATE(3078), + [sym_ternary_expression] = STATE(3078), + [sym_unary_expression] = STATE(3078), + [sym_postfix_expression] = STATE(3078), + [sym_parenthesized_expression] = STATE(3078), + [sym_arithmetic_expansion] = STATE(2747), + [sym_brace_expression] = STATE(2747), + [sym_concatenation] = STATE(3078), + [sym_string] = STATE(2747), + [sym_translated_string] = STATE(2747), + [sym_number] = STATE(2747), + [sym_simple_expansion] = STATE(2747), + [sym_expansion] = STATE(2747), + [sym_command_substitution] = STATE(2747), + [sym_process_substitution] = STATE(2747), + [aux_sym__literal_repeat1] = STATE(2661), + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym_word] = ACTIONS(1125), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70540,13 +75447,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70554,8 +75461,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70564,57 +75471,57 @@ 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_BANG] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1189), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_PLUS_PLUS2] = ACTIONS(101), - [anon_sym_DASH_DASH2] = ACTIONS(101), - [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] = ACTIONS(256), - [sym__special_character] = ACTIONS(1115), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(1119), - [sym_ansi_c_string] = ACTIONS(1119), - [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(1133), + [anon_sym_DASH_DASH2] = ACTIONS(1133), + [anon_sym_DASH2] = ACTIONS(1135), + [anon_sym_PLUS2] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(280), - [sym__brace_start] = ACTIONS(282), + [sym__concat] = ACTIONS(1191), + [sym_test_operator] = ACTIONS(1147), + [sym__brace_start] = ACTIONS(543), }, - [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(484)] = { + [sym__expression] = STATE(2922), + [sym_binary_expression] = STATE(3078), + [sym_ternary_expression] = STATE(3078), + [sym_unary_expression] = STATE(3078), + [sym_postfix_expression] = STATE(3078), + [sym_parenthesized_expression] = STATE(3078), + [sym_arithmetic_expansion] = STATE(2747), + [sym_brace_expression] = STATE(2747), + [sym_concatenation] = STATE(3078), + [sym_string] = STATE(2747), + [sym_translated_string] = STATE(2747), + [sym_number] = STATE(2747), + [sym_simple_expansion] = STATE(2747), + [sym_expansion] = STATE(2747), + [sym_command_substitution] = STATE(2747), + [sym_process_substitution] = STATE(2747), + [aux_sym__literal_repeat1] = STATE(2661), + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym_word] = ACTIONS(1125), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70624,13 +75531,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70638,8 +75545,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70648,57 +75555,57 @@ 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(1127), [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_RBRACK_RBRACK] = ACTIONS(358), + [anon_sym_RBRACK] = ACTIONS(1193), [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(1133), + [anon_sym_DASH_DASH2] = ACTIONS(1133), + [anon_sym_DASH2] = ACTIONS(1135), + [anon_sym_PLUS2] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1141), - [sym__brace_start] = ACTIONS(282), + [sym__concat] = ACTIONS(1195), + [sym_test_operator] = ACTIONS(1147), + [sym__brace_start] = ACTIONS(543), }, - [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), - [sym_word] = ACTIONS(1071), + [STATE(485)] = { + [sym__expression] = STATE(2922), + [sym_binary_expression] = STATE(3078), + [sym_ternary_expression] = STATE(3078), + [sym_unary_expression] = STATE(3078), + [sym_postfix_expression] = STATE(3078), + [sym_parenthesized_expression] = STATE(3078), + [sym_arithmetic_expansion] = STATE(2747), + [sym_brace_expression] = STATE(2747), + [sym_concatenation] = STATE(3078), + [sym_string] = STATE(2747), + [sym_translated_string] = STATE(2747), + [sym_number] = STATE(2747), + [sym_simple_expansion] = STATE(2747), + [sym_expansion] = STATE(2747), + [sym_command_substitution] = STATE(2747), + [sym_process_substitution] = STATE(2747), + [aux_sym__literal_repeat1] = STATE(2661), + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym_word] = ACTIONS(1125), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70708,13 +75615,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70722,8 +75629,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70732,57 +75639,57 @@ 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(1143), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1197), [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(1133), + [anon_sym_DASH_DASH2] = ACTIONS(1133), + [anon_sym_DASH2] = ACTIONS(1135), + [anon_sym_PLUS2] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1145), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1199), + [sym_test_operator] = ACTIONS(1147), + [sym__brace_start] = ACTIONS(543), }, - [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(486)] = { + [sym__expression] = STATE(2922), + [sym_binary_expression] = STATE(3078), + [sym_ternary_expression] = STATE(3078), + [sym_unary_expression] = STATE(3078), + [sym_postfix_expression] = STATE(3078), + [sym_parenthesized_expression] = STATE(3078), + [sym_arithmetic_expansion] = STATE(2747), + [sym_brace_expression] = STATE(2747), + [sym_concatenation] = STATE(3078), + [sym_string] = STATE(2747), + [sym_translated_string] = STATE(2747), + [sym_number] = STATE(2747), + [sym_simple_expansion] = STATE(2747), + [sym_expansion] = STATE(2747), + [sym_command_substitution] = STATE(2747), + [sym_process_substitution] = STATE(2747), + [aux_sym__literal_repeat1] = STATE(2661), + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym_word] = ACTIONS(1125), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70792,13 +75699,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70806,8 +75713,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70816,57 +75723,57 @@ 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(1149), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(504), [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), + [anon_sym_PLUS_PLUS2] = ACTIONS(1133), + [anon_sym_DASH_DASH2] = ACTIONS(1133), + [anon_sym_DASH2] = ACTIONS(1135), + [anon_sym_PLUS2] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1161), - [sym__brace_start] = ACTIONS(282), + [sym__concat] = ACTIONS(504), + [sym_test_operator] = ACTIONS(1147), + [sym__brace_start] = ACTIONS(543), }, - [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), + [STATE(487)] = { + [sym__expression] = STATE(3181), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(2741), + [sym_brace_expression] = STATE(2741), + [sym_concatenation] = STATE(2784), + [sym_string] = STATE(2741), + [sym_translated_string] = STATE(2741), + [sym_number] = STATE(2741), + [sym_simple_expansion] = STATE(2741), + [sym_expansion] = STATE(2741), + [sym_command_substitution] = STATE(2741), + [sym_process_substitution] = STATE(2741), + [aux_sym__literal_repeat1] = STATE(2654), + [aux_sym_concatenation_repeat1] = STATE(2754), + [sym_word] = ACTIONS(1201), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70876,13 +75783,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70890,8 +75797,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70900,57 +75807,57 @@ 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(1163), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1203), [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_COLON] = ACTIONS(239), + [anon_sym_PLUS_PLUS2] = ACTIONS(1205), + [anon_sym_DASH_DASH2] = ACTIONS(1205), + [anon_sym_DASH2] = ACTIONS(1207), + [anon_sym_PLUS2] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1157), + [aux_sym_concatenation_token1] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(256), + [sym__special_character] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_raw_string] = ACTIONS(1213), + [sym_ansi_c_string] = ACTIONS(1213), + [aux_sym_number_token1] = ACTIONS(262), + [aux_sym_number_token2] = ACTIONS(264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), + [anon_sym_BQUOTE] = ACTIONS(270), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1165), - [sym_test_operator] = ACTIONS(1093), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1159), + [sym_test_operator] = ACTIONS(1215), + [sym__brace_start] = ACTIONS(282), }, - [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), + [STATE(488)] = { + [sym__expression] = STATE(2922), + [sym_binary_expression] = STATE(3078), + [sym_ternary_expression] = STATE(3078), + [sym_unary_expression] = STATE(3078), + [sym_postfix_expression] = STATE(3078), + [sym_parenthesized_expression] = STATE(3078), + [sym_arithmetic_expansion] = STATE(2747), + [sym_brace_expression] = STATE(2747), + [sym_concatenation] = STATE(3078), + [sym_string] = STATE(2747), + [sym_translated_string] = STATE(2747), + [sym_number] = STATE(2747), + [sym_simple_expansion] = STATE(2747), + [sym_expansion] = STATE(2747), + [sym_command_substitution] = STATE(2747), + [sym_process_substitution] = STATE(2747), + [aux_sym__literal_repeat1] = STATE(2661), + [aux_sym_concatenation_repeat1] = STATE(2652), + [sym_word] = ACTIONS(1125), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -70960,13 +75867,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -70974,8 +75881,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -70984,57 +75891,57 @@ 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(1127), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1217), [anon_sym_EQ_TILDE] = ACTIONS(239), [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(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_PLUS_PLUS2] = ACTIONS(1133), + [anon_sym_DASH_DASH2] = ACTIONS(1133), + [anon_sym_DASH2] = ACTIONS(1135), + [anon_sym_PLUS2] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(513), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(515), + [aux_sym_concatenation_token1] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(519), + [sym__special_character] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(523), + [sym_raw_string] = ACTIONS(1143), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(527), + [aux_sym_number_token2] = ACTIONS(529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(533), + [anon_sym_BQUOTE] = ACTIONS(535), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(537), + [anon_sym_LT_LPAREN] = ACTIONS(539), + [anon_sym_GT_LPAREN] = ACTIONS(539), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1085), - [sym_test_operator] = ACTIONS(395), - [sym__brace_start] = ACTIONS(397), + [sym__concat] = ACTIONS(1219), + [sym_test_operator] = ACTIONS(1147), + [sym__brace_start] = ACTIONS(543), }, - [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_word] = ACTIONS(1167), + [STATE(489)] = { + [sym__expression] = STATE(3616), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(2898), + [sym_brace_expression] = STATE(2898), + [sym_concatenation] = STATE(2784), + [sym_string] = STATE(2898), + [sym_translated_string] = STATE(2898), + [sym_number] = STATE(2898), + [sym_simple_expansion] = STATE(2898), + [sym_expansion] = STATE(2898), + [sym_command_substitution] = STATE(2898), + [sym_process_substitution] = STATE(2898), + [aux_sym__literal_repeat1] = STATE(2654), + [aux_sym_concatenation_repeat1] = STATE(2876), + [sym_word] = ACTIONS(1221), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), [anon_sym_DASH_DASH] = ACTIONS(239), @@ -71044,13 +75951,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_AMP_AMP] = ACTIONS(504), [anon_sym_PIPE] = ACTIONS(239), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -71058,8 +75965,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(239), [anon_sym_GT_GT] = ACTIONS(239), [anon_sym_PLUS] = ACTIONS(239), @@ -71068,2311 +75975,2311 @@ 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(1169), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1223), [anon_sym_EQ_TILDE] = ACTIONS(239), [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_PLUS_PLUS2] = ACTIONS(1171), - [anon_sym_DASH_DASH2] = ACTIONS(1171), - [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_PLUS_PLUS2] = ACTIONS(1225), + [anon_sym_DASH_DASH2] = ACTIONS(1225), + [anon_sym_DASH2] = ACTIONS(1227), + [anon_sym_PLUS2] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1155), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1157), + [aux_sym_concatenation_token1] = ACTIONS(1159), [anon_sym_DOLLAR] = ACTIONS(256), - [sym__special_character] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym_raw_string] = ACTIONS(1179), - [sym_ansi_c_string] = ACTIONS(1179), + [sym__special_character] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1163), + [sym_raw_string] = ACTIONS(1233), + [sym_ansi_c_string] = ACTIONS(1233), [aux_sym_number_token1] = ACTIONS(262), [aux_sym_number_token2] = ACTIONS(264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1167), [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(1169), + [anon_sym_LT_LPAREN] = ACTIONS(1171), + [anon_sym_GT_LPAREN] = ACTIONS(1171), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1181), + [sym__concat] = ACTIONS(1159), + [sym_test_operator] = ACTIONS(1235), [sym__brace_start] = ACTIONS(282), }, - [STATE(459)] = { - [sym_string] = STATE(470), - [sym_word] = ACTIONS(1183), - [anon_sym_SEMI] = 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(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1183), - [anon_sym_PERCENT] = ACTIONS(1183), - [anon_sym_STAR_STAR] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_PIPE_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1185), - [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), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1183), - [anon_sym_LT_LT_LT] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1183), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1183), - [anon_sym_DOLLAR] = ACTIONS(1185), - [sym__special_character] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1187), - [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(1185), - [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(1189), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1189), - [anon_sym_AT2] = ACTIONS(1185), - [anon_sym__] = ACTIONS(1185), - [sym_file_descriptor] = ACTIONS(1191), - [sym_variable_name] = ACTIONS(1193), - [sym_test_operator] = ACTIONS(1191), - [sym__bare_dollar] = ACTIONS(1191), - [sym__brace_start] = ACTIONS(1191), - }, - [STATE(460)] = { - [sym_string] = STATE(470), - [sym_word] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_EQ] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_EQ] = ACTIONS(1195), - [anon_sym_DASH_EQ] = ACTIONS(1195), - [anon_sym_STAR_EQ] = ACTIONS(1195), - [anon_sym_SLASH_EQ] = ACTIONS(1195), - [anon_sym_PERCENT_EQ] = ACTIONS(1195), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1195), - [anon_sym_LT_LT_EQ] = ACTIONS(1195), - [anon_sym_GT_GT_EQ] = ACTIONS(1195), - [anon_sym_AMP_EQ] = ACTIONS(1195), - [anon_sym_CARET_EQ] = ACTIONS(1195), - [anon_sym_PIPE_EQ] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1195), - [anon_sym_GT] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1195), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_PERCENT] = ACTIONS(1195), - [anon_sym_STAR_STAR] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_RPAREN] = ACTIONS(1195), - [anon_sym_SEMI_SEMI] = ACTIONS(1195), - [anon_sym_PIPE_AMP] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_GT] = ACTIONS(1195), - [anon_sym_AMP_GT_GT] = ACTIONS(1195), - [anon_sym_LT_AMP] = ACTIONS(1195), - [anon_sym_GT_AMP] = ACTIONS(1195), - [anon_sym_GT_PIPE] = ACTIONS(1195), - [anon_sym_LT_AMP_DASH] = ACTIONS(1195), - [anon_sym_GT_AMP_DASH] = ACTIONS(1195), - [anon_sym_LT_LT_DASH] = ACTIONS(1195), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1195), - [anon_sym_LT_LT_LT] = ACTIONS(1195), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1195), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1185), - [sym__special_character] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1187), - [sym_raw_string] = ACTIONS(1195), - [sym_ansi_c_string] = ACTIONS(1195), - [aux_sym_number_token1] = ACTIONS(1195), - [aux_sym_number_token2] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1185), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1195), - [anon_sym_BQUOTE] = ACTIONS(1195), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1195), - [anon_sym_LT_LPAREN] = ACTIONS(1195), - [anon_sym_GT_LPAREN] = ACTIONS(1195), - [sym_comment] = ACTIONS(3), - [aux_sym__simple_variable_name_token1] = ACTIONS(1189), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1189), - [anon_sym_AT2] = ACTIONS(1185), - [anon_sym__] = ACTIONS(1185), - [sym_file_descriptor] = ACTIONS(1197), - [sym_variable_name] = ACTIONS(1193), - [sym_test_operator] = ACTIONS(1197), - [sym__bare_dollar] = ACTIONS(1197), - [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_word] = ACTIONS(1195), - [anon_sym_EQ] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_EQ] = ACTIONS(1195), - [anon_sym_DASH_EQ] = ACTIONS(1195), - [anon_sym_STAR_EQ] = ACTIONS(1195), - [anon_sym_SLASH_EQ] = ACTIONS(1195), - [anon_sym_PERCENT_EQ] = ACTIONS(1195), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1195), - [anon_sym_LT_LT_EQ] = ACTIONS(1195), - [anon_sym_GT_GT_EQ] = ACTIONS(1195), - [anon_sym_AMP_EQ] = ACTIONS(1195), - [anon_sym_CARET_EQ] = ACTIONS(1195), - [anon_sym_PIPE_EQ] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1195), - [anon_sym_GT] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1195), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_PERCENT] = ACTIONS(1195), - [anon_sym_STAR_STAR] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1195), - [anon_sym_PIPE_AMP] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_GT] = ACTIONS(1195), - [anon_sym_AMP_GT_GT] = ACTIONS(1195), - [anon_sym_LT_AMP] = ACTIONS(1195), - [anon_sym_GT_AMP] = ACTIONS(1195), - [anon_sym_GT_PIPE] = ACTIONS(1195), - [anon_sym_LT_AMP_DASH] = ACTIONS(1195), - [anon_sym_GT_AMP_DASH] = ACTIONS(1195), - [anon_sym_LT_LT_DASH] = ACTIONS(1195), - [anon_sym_LT_LT_LT] = ACTIONS(1195), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1195), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1195), - [anon_sym_DOLLAR] = ACTIONS(1199), - [sym__special_character] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_raw_string] = ACTIONS(1195), - [sym_ansi_c_string] = ACTIONS(1195), - [aux_sym_number_token1] = ACTIONS(1195), - [aux_sym_number_token2] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1199), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1195), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1195), - [anon_sym_BQUOTE] = ACTIONS(1195), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1195), - [anon_sym_LT_LPAREN] = ACTIONS(1195), - [anon_sym_GT_LPAREN] = ACTIONS(1195), - [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(1197), - [sym_variable_name] = ACTIONS(1205), - [sym_test_operator] = ACTIONS(1197), - [sym__bare_dollar] = ACTIONS(1197), - [sym__brace_start] = ACTIONS(1197), - }, - [STATE(463)] = { - [aux_sym_concatenation_repeat1] = STATE(464), - [sym_word] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_EQ] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(1207), - [anon_sym_DASH_EQ] = ACTIONS(1207), - [anon_sym_STAR_EQ] = ACTIONS(1207), - [anon_sym_SLASH_EQ] = ACTIONS(1207), - [anon_sym_PERCENT_EQ] = ACTIONS(1207), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1207), - [anon_sym_LT_LT_EQ] = ACTIONS(1207), - [anon_sym_GT_GT_EQ] = ACTIONS(1207), - [anon_sym_AMP_EQ] = ACTIONS(1207), - [anon_sym_CARET_EQ] = ACTIONS(1207), - [anon_sym_PIPE_EQ] = ACTIONS(1207), - [anon_sym_PIPE_PIPE] = ACTIONS(1207), - [anon_sym_AMP_AMP] = ACTIONS(1207), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_EQ_EQ] = ACTIONS(1207), - [anon_sym_BANG_EQ] = ACTIONS(1207), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1207), - [anon_sym_GT_EQ] = ACTIONS(1207), - [anon_sym_LT_LT] = ACTIONS(1207), - [anon_sym_GT_GT] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1207), - [anon_sym_RPAREN] = ACTIONS(1207), - [anon_sym_SEMI_SEMI] = ACTIONS(1207), - [anon_sym_PIPE_AMP] = ACTIONS(1207), - [anon_sym_EQ_TILDE] = ACTIONS(1207), - [anon_sym_AMP_GT] = ACTIONS(1207), - [anon_sym_AMP_GT_GT] = ACTIONS(1207), - [anon_sym_LT_AMP] = ACTIONS(1207), - [anon_sym_GT_AMP] = ACTIONS(1207), - [anon_sym_GT_PIPE] = ACTIONS(1207), - [anon_sym_LT_AMP_DASH] = ACTIONS(1207), - [anon_sym_GT_AMP_DASH] = ACTIONS(1207), - [anon_sym_LT_LT_DASH] = ACTIONS(1207), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1209), - [anon_sym_LT_LT_LT] = ACTIONS(1207), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1207), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1207), - [aux_sym_concatenation_token1] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(1207), - [sym__special_character] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_raw_string] = ACTIONS(1207), - [sym_ansi_c_string] = ACTIONS(1207), - [aux_sym_number_token1] = ACTIONS(1207), - [aux_sym_number_token2] = ACTIONS(1207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1207), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1207), - [anon_sym_LT_LPAREN] = ACTIONS(1207), - [anon_sym_GT_LPAREN] = ACTIONS(1207), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1209), - [sym__concat] = ACTIONS(1211), - [sym_test_operator] = ACTIONS(1209), - [sym__bare_dollar] = ACTIONS(1209), - [sym__brace_start] = ACTIONS(1209), - }, - [STATE(464)] = { - [aux_sym_concatenation_repeat1] = STATE(464), - [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(1217), - [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(1220), - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [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(1223), - [anon_sym_GT_EQ] = ACTIONS(1223), - [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_RPAREN] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), - [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), - [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), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1225), - [sym__concat] = ACTIONS(278), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), - }, - [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_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), - [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), - }, - [STATE(467)] = { - [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), + [STATE(490)] = { + [sym_string] = STATE(518), + [sym_word] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_EQ] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [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(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), [anon_sym_PIPE_PIPE] = ACTIONS(1237), [anon_sym_AMP_AMP] = ACTIONS(1237), [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1237), [anon_sym_AMP] = ACTIONS(1237), [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1237), [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_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), [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_PLUS] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1233), - [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_SEMI_SEMI] = ACTIONS(1237), + [anon_sym_PIPE_AMP] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1239), [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), - [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_AMP_GT] = ACTIONS(1237), + [anon_sym_AMP_GT_GT] = ACTIONS(1237), + [anon_sym_LT_AMP] = ACTIONS(1237), + [anon_sym_GT_AMP] = ACTIONS(1237), + [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), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1237), + [anon_sym_LT_LT_LT] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1239), + [sym__special_character] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1237), + [sym_ansi_c_string] = ACTIONS(1237), + [aux_sym_number_token1] = ACTIONS(1237), + [aux_sym_number_token2] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), + [anon_sym_BQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), [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), + [aux_sym__simple_variable_name_token1] = ACTIONS(1243), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1243), + [anon_sym_AT2] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [sym_file_descriptor] = ACTIONS(1245), + [sym_variable_name] = ACTIONS(1247), + [sym_test_operator] = ACTIONS(1245), + [sym__bare_dollar] = ACTIONS(1245), + [sym__brace_start] = ACTIONS(1245), }, - [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), + [STATE(491)] = { + [sym_string] = STATE(518), + [sym_word] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_SEMI_SEMI] = ACTIONS(1249), + [anon_sym_PIPE_AMP] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1249), + [anon_sym_LT_AMP] = ACTIONS(1249), + [anon_sym_GT_AMP] = ACTIONS(1249), + [anon_sym_GT_PIPE] = ACTIONS(1249), + [anon_sym_LT_AMP_DASH] = ACTIONS(1249), + [anon_sym_GT_AMP_DASH] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1249), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1249), + [anon_sym_LT_LT_LT] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1239), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1239), + [sym__special_character] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1249), + [sym_ansi_c_string] = ACTIONS(1249), + [aux_sym_number_token1] = ACTIONS(1249), + [aux_sym_number_token2] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1239), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1249), + [anon_sym_BQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1249), + [anon_sym_LT_LPAREN] = ACTIONS(1249), + [anon_sym_GT_LPAREN] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1243), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1243), + [anon_sym_AT2] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), + [sym_file_descriptor] = ACTIONS(1251), + [sym_variable_name] = ACTIONS(1247), + [sym_test_operator] = ACTIONS(1251), + [sym__bare_dollar] = ACTIONS(1251), + [sym__brace_start] = ACTIONS(1251), + }, + [STATE(492)] = { + [sym_string] = STATE(529), + [sym_word] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_PIPE_AMP] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_GT] = ACTIONS(1249), + [anon_sym_AMP_GT_GT] = ACTIONS(1249), + [anon_sym_LT_AMP] = ACTIONS(1249), + [anon_sym_GT_AMP] = ACTIONS(1249), + [anon_sym_GT_PIPE] = ACTIONS(1249), + [anon_sym_LT_AMP_DASH] = ACTIONS(1249), + [anon_sym_GT_AMP_DASH] = ACTIONS(1249), + [anon_sym_LT_LT_DASH] = ACTIONS(1249), + [anon_sym_LT_LT_LT] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1253), + [sym__special_character] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym_raw_string] = ACTIONS(1249), + [sym_ansi_c_string] = ACTIONS(1249), + [aux_sym_number_token1] = ACTIONS(1249), + [aux_sym_number_token2] = ACTIONS(1249), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1249), + [anon_sym_BQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1249), + [anon_sym_LT_LPAREN] = ACTIONS(1249), + [anon_sym_GT_LPAREN] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1257), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1257), + [anon_sym_AT2] = ACTIONS(1253), + [anon_sym__] = ACTIONS(1253), + [sym_file_descriptor] = ACTIONS(1251), + [sym_variable_name] = ACTIONS(1259), + [sym_test_operator] = ACTIONS(1251), + [sym__bare_dollar] = ACTIONS(1251), + [sym__brace_start] = ACTIONS(1251), + }, + [STATE(493)] = { + [sym_string] = STATE(529), + [sym_word] = ACTIONS(1237), + [anon_sym_EQ] = ACTIONS(1237), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1237), + [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(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), [anon_sym_PIPE_PIPE] = ACTIONS(1237), [anon_sym_AMP_AMP] = ACTIONS(1237), [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1237), [anon_sym_AMP] = ACTIONS(1237), [anon_sym_EQ_EQ] = ACTIONS(1237), - [anon_sym_BANG_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1237), [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_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), [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(1245), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1233), - [anon_sym_PIPE_AMP] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_PERCENT] = ACTIONS(1237), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_PIPE_AMP] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1237), [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_AMP_GT] = ACTIONS(1237), + [anon_sym_AMP_GT_GT] = ACTIONS(1237), + [anon_sym_LT_AMP] = ACTIONS(1237), + [anon_sym_GT_AMP] = ACTIONS(1237), + [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(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1253), + [sym__special_character] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1255), + [sym_raw_string] = ACTIONS(1237), + [sym_ansi_c_string] = ACTIONS(1237), + [aux_sym_number_token1] = ACTIONS(1237), + [aux_sym_number_token2] = ACTIONS(1237), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), + [anon_sym_BQUOTE] = ACTIONS(1237), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1237), + [anon_sym_LT_LPAREN] = ACTIONS(1237), + [anon_sym_GT_LPAREN] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [aux_sym__simple_variable_name_token1] = ACTIONS(1257), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1257), + [anon_sym_AT2] = ACTIONS(1253), + [anon_sym__] = ACTIONS(1253), + [sym_file_descriptor] = ACTIONS(1245), + [sym_variable_name] = ACTIONS(1259), + [sym_test_operator] = ACTIONS(1245), + [sym__bare_dollar] = ACTIONS(1245), + [sym__brace_start] = ACTIONS(1245), + }, + [STATE(494)] = { + [aux_sym_concatenation_repeat1] = STATE(494), + [sym_word] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1261), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1261), + [anon_sym_LT_AMP_DASH] = ACTIONS(1261), + [anon_sym_GT_AMP_DASH] = ACTIONS(1261), + [anon_sym_LT_LT_DASH] = ACTIONS(1261), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1261), + [aux_sym_concatenation_token1] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_raw_string] = ACTIONS(1261), + [sym_ansi_c_string] = ACTIONS(1261), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1261), + [anon_sym_LT_LPAREN] = ACTIONS(1261), + [anon_sym_GT_LPAREN] = ACTIONS(1261), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1268), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), + }, + [STATE(495)] = { + [aux_sym_concatenation_repeat1] = STATE(497), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1271), + [anon_sym_DASH_EQ] = ACTIONS(1271), + [anon_sym_STAR_EQ] = ACTIONS(1271), + [anon_sym_SLASH_EQ] = ACTIONS(1271), + [anon_sym_PERCENT_EQ] = ACTIONS(1271), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1271), + [anon_sym_LT_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_GT_EQ] = ACTIONS(1271), + [anon_sym_AMP_EQ] = ACTIONS(1271), + [anon_sym_CARET_EQ] = ACTIONS(1271), + [anon_sym_PIPE_EQ] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1271), + [anon_sym_LT_AMP_DASH] = ACTIONS(1271), + [anon_sym_GT_AMP_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1273), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), [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(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [sym_ansi_c_string] = ACTIONS(1271), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1273), [sym__concat] = ACTIONS(278), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_test_operator] = ACTIONS(1273), + [sym__bare_dollar] = ACTIONS(1273), + [sym__brace_start] = ACTIONS(1273), }, - [STATE(469)] = { - [sym_word] = ACTIONS(1248), - [anon_sym_SEMI] = 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(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1248), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [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(1248), - [anon_sym_GT_EQ] = ACTIONS(1248), - [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(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_SEMI_SEMI] = ACTIONS(1248), - [anon_sym_PIPE_AMP] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(1248), - [anon_sym_AMP_GT] = ACTIONS(1248), - [anon_sym_AMP_GT_GT] = ACTIONS(1248), - [anon_sym_LT_AMP] = ACTIONS(1248), - [anon_sym_GT_AMP] = ACTIONS(1248), - [anon_sym_GT_PIPE] = ACTIONS(1248), - [anon_sym_LT_AMP_DASH] = ACTIONS(1248), - [anon_sym_GT_AMP_DASH] = ACTIONS(1248), - [anon_sym_LT_LT_DASH] = ACTIONS(1248), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1250), - [anon_sym_LT_LT_LT] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1248), - [aux_sym_concatenation_token1] = ACTIONS(1248), - [anon_sym_DOLLAR] = ACTIONS(1248), - [sym__special_character] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_raw_string] = ACTIONS(1248), - [sym_ansi_c_string] = ACTIONS(1248), - [aux_sym_number_token1] = ACTIONS(1248), - [aux_sym_number_token2] = ACTIONS(1248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1248), - [anon_sym_BQUOTE] = ACTIONS(1248), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1248), - [anon_sym_LT_LPAREN] = ACTIONS(1248), - [anon_sym_GT_LPAREN] = ACTIONS(1248), + [STATE(496)] = { + [aux_sym_concatenation_repeat1] = STATE(494), + [sym_word] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_PLUS_EQ] = ACTIONS(1275), + [anon_sym_DASH_EQ] = ACTIONS(1275), + [anon_sym_STAR_EQ] = ACTIONS(1275), + [anon_sym_SLASH_EQ] = ACTIONS(1275), + [anon_sym_PERCENT_EQ] = ACTIONS(1275), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1275), + [anon_sym_LT_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_GT_EQ] = ACTIONS(1275), + [anon_sym_AMP_EQ] = ACTIONS(1275), + [anon_sym_CARET_EQ] = ACTIONS(1275), + [anon_sym_PIPE_EQ] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1275), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_SEMI_SEMI] = ACTIONS(1275), + [anon_sym_PIPE_AMP] = ACTIONS(1275), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1275), + [anon_sym_AMP_GT_GT] = ACTIONS(1275), + [anon_sym_LT_AMP] = ACTIONS(1275), + [anon_sym_GT_AMP] = ACTIONS(1275), + [anon_sym_GT_PIPE] = ACTIONS(1275), + [anon_sym_LT_AMP_DASH] = ACTIONS(1275), + [anon_sym_GT_AMP_DASH] = ACTIONS(1275), + [anon_sym_LT_LT_DASH] = ACTIONS(1275), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1277), + [anon_sym_LT_LT_LT] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1275), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1275), + [aux_sym_concatenation_token1] = ACTIONS(254), + [anon_sym_DOLLAR] = ACTIONS(1275), + [sym__special_character] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1275), + [sym_raw_string] = ACTIONS(1275), + [sym_ansi_c_string] = ACTIONS(1275), + [aux_sym_number_token1] = ACTIONS(1275), + [aux_sym_number_token2] = ACTIONS(1275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1275), + [anon_sym_BQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1275), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), [sym_comment] = ACTIONS(3), - [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(1277), + [sym__concat] = ACTIONS(1279), + [sym_test_operator] = ACTIONS(1277), + [sym__bare_dollar] = ACTIONS(1277), + [sym__brace_start] = ACTIONS(1277), }, - [STATE(470)] = { - [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), + [STATE(497)] = { + [aux_sym_concatenation_repeat1] = STATE(494), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(1281), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [anon_sym_GT_PIPE] = ACTIONS(1281), + [anon_sym_LT_AMP_DASH] = ACTIONS(1281), + [anon_sym_GT_AMP_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1283), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1281), + [aux_sym_concatenation_token1] = ACTIONS(254), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym__special_character] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [sym_ansi_c_string] = ACTIONS(1281), + [aux_sym_number_token1] = ACTIONS(1281), + [aux_sym_number_token2] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(3), - [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(1283), + [sym__concat] = ACTIONS(1285), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1283), + [sym__brace_start] = ACTIONS(1283), }, - [STATE(471)] = { - [sym_word] = ACTIONS(1256), - [anon_sym_SEMI] = 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(1256), - [anon_sym_GT_GT_EQ] = ACTIONS(1256), - [anon_sym_AMP_EQ] = ACTIONS(1256), - [anon_sym_CARET_EQ] = ACTIONS(1256), - [anon_sym_PIPE_EQ] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1256), - [anon_sym_AMP_AMP] = ACTIONS(1256), - [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(1256), - [anon_sym_GT_EQ] = ACTIONS(1256), - [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(1256), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_SEMI_SEMI] = ACTIONS(1256), - [anon_sym_PIPE_AMP] = ACTIONS(1256), - [anon_sym_EQ_TILDE] = ACTIONS(1256), - [anon_sym_AMP_GT] = ACTIONS(1256), - [anon_sym_AMP_GT_GT] = ACTIONS(1256), - [anon_sym_LT_AMP] = ACTIONS(1256), - [anon_sym_GT_AMP] = ACTIONS(1256), - [anon_sym_GT_PIPE] = ACTIONS(1256), - [anon_sym_LT_AMP_DASH] = ACTIONS(1256), - [anon_sym_GT_AMP_DASH] = ACTIONS(1256), - [anon_sym_LT_LT_DASH] = ACTIONS(1256), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1256), - [aux_sym_concatenation_token1] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1256), - [sym__special_character] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_raw_string] = ACTIONS(1256), - [sym_ansi_c_string] = ACTIONS(1256), - [aux_sym_number_token1] = ACTIONS(1256), - [aux_sym_number_token2] = ACTIONS(1256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1256), - [anon_sym_BQUOTE] = ACTIONS(1256), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1256), - [anon_sym_LT_LPAREN] = ACTIONS(1256), - [anon_sym_GT_LPAREN] = ACTIONS(1256), + [STATE(498)] = { + [aux_sym_concatenation_repeat1] = STATE(496), + [sym_word] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_PIPE_AMP] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_AMP_GT] = ACTIONS(1287), + [anon_sym_AMP_GT_GT] = ACTIONS(1287), + [anon_sym_LT_AMP] = ACTIONS(1287), + [anon_sym_GT_AMP] = ACTIONS(1287), + [anon_sym_GT_PIPE] = ACTIONS(1287), + [anon_sym_LT_AMP_DASH] = ACTIONS(1287), + [anon_sym_GT_AMP_DASH] = ACTIONS(1287), + [anon_sym_LT_LT_DASH] = ACTIONS(1287), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1287), + [aux_sym_concatenation_token1] = ACTIONS(254), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym__special_character] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1287), + [sym_ansi_c_string] = ACTIONS(1287), + [aux_sym_number_token1] = ACTIONS(1287), + [aux_sym_number_token2] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1287), + [anon_sym_BQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1287), + [anon_sym_LT_LPAREN] = ACTIONS(1287), + [anon_sym_GT_LPAREN] = ACTIONS(1287), [sym_comment] = ACTIONS(3), - [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(1294), + [sym__concat] = ACTIONS(278), + [sym_test_operator] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [STATE(472)] = { - [sym_word] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1260), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1260), - [anon_sym_LT_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_AMP_EQ] = ACTIONS(1260), - [anon_sym_CARET_EQ] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_STAR] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_SEMI_SEMI] = ACTIONS(1260), - [anon_sym_PIPE_AMP] = ACTIONS(1260), - [anon_sym_EQ_TILDE] = ACTIONS(1260), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_AMP_GT_GT] = ACTIONS(1260), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [anon_sym_GT_PIPE] = ACTIONS(1260), - [anon_sym_LT_AMP_DASH] = ACTIONS(1260), - [anon_sym_GT_AMP_DASH] = ACTIONS(1260), - [anon_sym_LT_LT_DASH] = ACTIONS(1260), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1262), - [anon_sym_LT_LT_LT] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1260), - [aux_sym_concatenation_token1] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1260), - [sym__special_character] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_raw_string] = ACTIONS(1260), - [sym_ansi_c_string] = ACTIONS(1260), - [aux_sym_number_token1] = ACTIONS(1260), - [aux_sym_number_token2] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1260), - [anon_sym_LT_LPAREN] = ACTIONS(1260), - [anon_sym_GT_LPAREN] = ACTIONS(1260), + [STATE(499)] = { + [aux_sym_concatenation_repeat1] = STATE(496), + [sym_word] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1299), + [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_PIPE_AMP] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_AMP_GT] = ACTIONS(1287), + [anon_sym_AMP_GT_GT] = ACTIONS(1287), + [anon_sym_LT_AMP] = ACTIONS(1287), + [anon_sym_GT_AMP] = ACTIONS(1287), + [anon_sym_GT_PIPE] = ACTIONS(1287), + [anon_sym_LT_AMP_DASH] = ACTIONS(1287), + [anon_sym_GT_AMP_DASH] = ACTIONS(1287), + [anon_sym_LT_LT_DASH] = ACTIONS(1287), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1287), + [aux_sym_concatenation_token1] = ACTIONS(254), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym__special_character] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1287), + [sym_ansi_c_string] = ACTIONS(1287), + [aux_sym_number_token1] = ACTIONS(1287), + [aux_sym_number_token2] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1287), + [anon_sym_BQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1287), + [anon_sym_LT_LPAREN] = ACTIONS(1287), + [anon_sym_GT_LPAREN] = ACTIONS(1287), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1262), - [sym__concat] = ACTIONS(1262), - [sym_test_operator] = ACTIONS(1262), - [sym__bare_dollar] = ACTIONS(1262), - [sym__brace_start] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(278), + [sym_test_operator] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [STATE(473)] = { - [sym_word] = ACTIONS(1264), - [anon_sym_SEMI] = 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(1264), - [anon_sym_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_EQ] = ACTIONS(1264), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [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(1264), - [anon_sym_GT_EQ] = ACTIONS(1264), - [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(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_SEMI_SEMI] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(1264), - [anon_sym_EQ_TILDE] = ACTIONS(1264), - [anon_sym_AMP_GT] = ACTIONS(1264), - [anon_sym_AMP_GT_GT] = ACTIONS(1264), - [anon_sym_LT_AMP] = ACTIONS(1264), - [anon_sym_GT_AMP] = ACTIONS(1264), - [anon_sym_GT_PIPE] = ACTIONS(1264), - [anon_sym_LT_AMP_DASH] = ACTIONS(1264), - [anon_sym_GT_AMP_DASH] = ACTIONS(1264), - [anon_sym_LT_LT_DASH] = ACTIONS(1264), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1266), - [anon_sym_LT_LT_LT] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1264), - [aux_sym_concatenation_token1] = ACTIONS(1264), - [anon_sym_DOLLAR] = ACTIONS(1264), - [sym__special_character] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_raw_string] = ACTIONS(1264), - [sym_ansi_c_string] = ACTIONS(1264), - [aux_sym_number_token1] = ACTIONS(1264), - [aux_sym_number_token2] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1264), - [anon_sym_LT_LPAREN] = ACTIONS(1264), - [anon_sym_GT_LPAREN] = ACTIONS(1264), + [STATE(500)] = { + [sym_word] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_EQ] = ACTIONS(1302), + [anon_sym_DASH_EQ] = ACTIONS(1302), + [anon_sym_STAR_EQ] = ACTIONS(1302), + [anon_sym_SLASH_EQ] = ACTIONS(1302), + [anon_sym_PERCENT_EQ] = ACTIONS(1302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), + [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(1302), + [anon_sym_PIPE_EQ] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_STAR_STAR] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_SEMI_SEMI] = ACTIONS(1302), + [anon_sym_PIPE_AMP] = ACTIONS(1302), + [anon_sym_EQ_TILDE] = ACTIONS(1302), + [anon_sym_AMP_GT] = ACTIONS(1302), + [anon_sym_AMP_GT_GT] = ACTIONS(1302), + [anon_sym_LT_AMP] = ACTIONS(1302), + [anon_sym_GT_AMP] = ACTIONS(1302), + [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), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1302), + [anon_sym_QMARK] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1302), + [aux_sym_concatenation_token1] = ACTIONS(1302), + [anon_sym_DOLLAR] = ACTIONS(1302), + [sym__special_character] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_raw_string] = ACTIONS(1302), + [sym_ansi_c_string] = ACTIONS(1302), + [aux_sym_number_token1] = ACTIONS(1302), + [aux_sym_number_token2] = ACTIONS(1302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), + [anon_sym_LT_LPAREN] = ACTIONS(1302), + [anon_sym_GT_LPAREN] = ACTIONS(1302), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1266), - [sym__concat] = ACTIONS(1266), - [sym_test_operator] = ACTIONS(1266), - [sym__bare_dollar] = ACTIONS(1266), - [sym__brace_start] = ACTIONS(1266), + [sym_file_descriptor] = ACTIONS(1304), + [sym__concat] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1304), + [sym__bare_dollar] = ACTIONS(1304), + [sym__brace_start] = ACTIONS(1304), }, - [STATE(474)] = { - [sym_word] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_SEMI_SEMI] = ACTIONS(1268), - [anon_sym_PIPE_AMP] = ACTIONS(1268), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1268), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_AMP_DASH] = ACTIONS(1268), - [anon_sym_GT_AMP_DASH] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_raw_string] = ACTIONS(1268), - [sym_ansi_c_string] = ACTIONS(1268), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), - [anon_sym_LT_LPAREN] = ACTIONS(1268), - [anon_sym_GT_LPAREN] = ACTIONS(1268), + [STATE(501)] = { + [sym_word] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1261), + [anon_sym_PIPE_AMP] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1261), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1261), + [anon_sym_LT_AMP_DASH] = ACTIONS(1261), + [anon_sym_GT_AMP_DASH] = ACTIONS(1261), + [anon_sym_LT_LT_DASH] = ACTIONS(1261), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1261), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1261), + [aux_sym_concatenation_token1] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_raw_string] = ACTIONS(1261), + [sym_ansi_c_string] = ACTIONS(1261), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1261), + [anon_sym_LT_LPAREN] = ACTIONS(1261), + [anon_sym_GT_LPAREN] = ACTIONS(1261), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym_test_operator] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [STATE(475)] = { - [sym_word] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_AMP_DASH] = ACTIONS(1272), - [anon_sym_GT_AMP_DASH] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), + [STATE(502)] = { + [sym_word] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), + [anon_sym_STAR_EQ] = ACTIONS(1306), + [anon_sym_SLASH_EQ] = ACTIONS(1306), + [anon_sym_PERCENT_EQ] = ACTIONS(1306), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), + [anon_sym_LT_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_GT_EQ] = ACTIONS(1306), + [anon_sym_AMP_EQ] = ACTIONS(1306), + [anon_sym_CARET_EQ] = ACTIONS(1306), + [anon_sym_PIPE_EQ] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_SLASH] = ACTIONS(1306), + [anon_sym_PERCENT] = ACTIONS(1306), + [anon_sym_STAR_STAR] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_RPAREN] = ACTIONS(1306), + [anon_sym_SEMI_SEMI] = ACTIONS(1306), + [anon_sym_PIPE_AMP] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_AMP_GT] = ACTIONS(1306), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_LT_AMP] = ACTIONS(1306), + [anon_sym_GT_AMP] = ACTIONS(1306), + [anon_sym_GT_PIPE] = ACTIONS(1306), + [anon_sym_LT_AMP_DASH] = ACTIONS(1306), + [anon_sym_GT_AMP_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_DASH] = ACTIONS(1306), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_QMARK] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1306), + [aux_sym_concatenation_token1] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1306), + [sym__special_character] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1306), + [sym_ansi_c_string] = ACTIONS(1306), + [aux_sym_number_token1] = ACTIONS(1306), + [aux_sym_number_token2] = ACTIONS(1306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), + [sym_file_descriptor] = ACTIONS(1308), + [sym__concat] = ACTIONS(1308), + [sym_test_operator] = ACTIONS(1308), + [sym__bare_dollar] = ACTIONS(1308), + [sym__brace_start] = ACTIONS(1308), }, - [STATE(476)] = { - [sym_word] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_AMP_DASH] = ACTIONS(1276), - [anon_sym_GT_AMP_DASH] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), + [STATE(503)] = { + [sym_word] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1310), + [anon_sym_DASH_EQ] = ACTIONS(1310), + [anon_sym_STAR_EQ] = ACTIONS(1310), + [anon_sym_SLASH_EQ] = ACTIONS(1310), + [anon_sym_PERCENT_EQ] = ACTIONS(1310), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1310), + [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(1310), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_EQ_EQ] = ACTIONS(1310), + [anon_sym_BANG_EQ] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_PERCENT] = ACTIONS(1310), + [anon_sym_STAR_STAR] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_SEMI_SEMI] = ACTIONS(1310), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1310), + [anon_sym_AMP_GT] = ACTIONS(1310), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1310), + [anon_sym_GT_AMP] = ACTIONS(1310), + [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), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1310), + [sym__special_character] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1310), + [aux_sym_number_token2] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), + [sym_file_descriptor] = ACTIONS(1312), + [sym__concat] = ACTIONS(1312), + [sym_test_operator] = ACTIONS(1312), + [sym__bare_dollar] = ACTIONS(1312), + [sym__brace_start] = ACTIONS(1312), }, - [STATE(477)] = { - [sym_word] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_GT_EQ] = ACTIONS(1280), - [anon_sym_AMP_EQ] = ACTIONS(1280), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1280), - [anon_sym_PIPE_PIPE] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_SEMI_SEMI] = ACTIONS(1280), - [anon_sym_PIPE_AMP] = ACTIONS(1280), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1280), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1280), - [anon_sym_LT_AMP_DASH] = ACTIONS(1280), - [anon_sym_GT_AMP_DASH] = ACTIONS(1280), - [anon_sym_LT_LT_DASH] = ACTIONS(1280), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1282), - [anon_sym_LT_LT_LT] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1280), - [aux_sym_concatenation_token1] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_raw_string] = ACTIONS(1280), - [sym_ansi_c_string] = ACTIONS(1280), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1280), - [anon_sym_LT_LPAREN] = ACTIONS(1280), - [anon_sym_GT_LPAREN] = ACTIONS(1280), + [STATE(504)] = { + [sym_word] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), + [anon_sym_STAR_EQ] = ACTIONS(1314), + [anon_sym_SLASH_EQ] = ACTIONS(1314), + [anon_sym_PERCENT_EQ] = ACTIONS(1314), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1314), + [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(1314), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_CARET] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(1314), + [anon_sym_PERCENT] = ACTIONS(1314), + [anon_sym_STAR_STAR] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_SEMI_SEMI] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [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), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(1314), + [anon_sym_DOLLAR] = ACTIONS(1314), + [sym__special_character] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_raw_string] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1314), + [aux_sym_number_token2] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym_test_operator] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), + [sym_file_descriptor] = ACTIONS(1316), + [sym__concat] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1316), + [sym__bare_dollar] = ACTIONS(1316), + [sym__brace_start] = ACTIONS(1316), }, - [STATE(478)] = { - [sym_word] = ACTIONS(1284), - [anon_sym_SEMI] = 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(1284), - [anon_sym_GT_GT_EQ] = ACTIONS(1284), - [anon_sym_AMP_EQ] = ACTIONS(1284), - [anon_sym_CARET_EQ] = ACTIONS(1284), - [anon_sym_PIPE_EQ] = ACTIONS(1284), - [anon_sym_PIPE_PIPE] = ACTIONS(1284), - [anon_sym_AMP_AMP] = ACTIONS(1284), - [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(1284), - [anon_sym_GT_EQ] = ACTIONS(1284), - [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(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1284), - [anon_sym_PIPE_AMP] = ACTIONS(1284), - [anon_sym_EQ_TILDE] = ACTIONS(1284), - [anon_sym_AMP_GT] = ACTIONS(1284), - [anon_sym_AMP_GT_GT] = ACTIONS(1284), - [anon_sym_LT_AMP] = ACTIONS(1284), - [anon_sym_GT_AMP] = ACTIONS(1284), - [anon_sym_GT_PIPE] = ACTIONS(1284), - [anon_sym_LT_AMP_DASH] = ACTIONS(1284), - [anon_sym_GT_AMP_DASH] = ACTIONS(1284), - [anon_sym_LT_LT_DASH] = ACTIONS(1284), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1286), - [anon_sym_LT_LT_LT] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1284), - [aux_sym_concatenation_token1] = ACTIONS(1284), - [anon_sym_DOLLAR] = ACTIONS(1284), - [sym__special_character] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_raw_string] = ACTIONS(1284), - [sym_ansi_c_string] = ACTIONS(1284), - [aux_sym_number_token1] = ACTIONS(1284), - [aux_sym_number_token2] = ACTIONS(1284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1284), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(1284), - [anon_sym_GT_LPAREN] = ACTIONS(1284), + [STATE(505)] = { + [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), + [aux_sym_concatenation_token1] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1318), + [sym__special_character] = ACTIONS(1318), + [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(1286), - [sym__concat] = ACTIONS(1286), - [sym_test_operator] = ACTIONS(1286), - [sym__bare_dollar] = ACTIONS(1286), - [sym__brace_start] = ACTIONS(1286), + [sym_file_descriptor] = ACTIONS(1320), + [sym__concat] = ACTIONS(1320), + [sym_test_operator] = ACTIONS(1320), + [sym__bare_dollar] = ACTIONS(1320), + [sym__brace_start] = ACTIONS(1320), }, - [STATE(479)] = { - [sym_word] = ACTIONS(1288), - [anon_sym_SEMI] = 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(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_AMP_AMP] = ACTIONS(1288), - [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(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [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(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_SEMI_SEMI] = ACTIONS(1288), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1288), - [anon_sym_AMP_GT] = ACTIONS(1288), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1288), - [anon_sym_GT_AMP] = ACTIONS(1288), - [anon_sym_GT_PIPE] = ACTIONS(1288), - [anon_sym_LT_AMP_DASH] = ACTIONS(1288), - [anon_sym_GT_AMP_DASH] = ACTIONS(1288), - [anon_sym_LT_LT_DASH] = ACTIONS(1288), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1290), - [anon_sym_LT_LT_LT] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1288), - [aux_sym_concatenation_token1] = ACTIONS(1288), - [anon_sym_DOLLAR] = ACTIONS(1288), - [sym__special_character] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [sym_ansi_c_string] = ACTIONS(1288), - [aux_sym_number_token1] = ACTIONS(1288), - [aux_sym_number_token2] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1288), - [anon_sym_BQUOTE] = ACTIONS(1288), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), + [STATE(506)] = { + [sym_word] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_EQ] = ACTIONS(1322), + [anon_sym_DASH_EQ] = ACTIONS(1322), + [anon_sym_STAR_EQ] = ACTIONS(1322), + [anon_sym_SLASH_EQ] = ACTIONS(1322), + [anon_sym_PERCENT_EQ] = ACTIONS(1322), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1322), + [anon_sym_LT_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_EQ] = ACTIONS(1322), + [anon_sym_CARET_EQ] = ACTIONS(1322), + [anon_sym_PIPE_EQ] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_EQ_EQ] = ACTIONS(1322), + [anon_sym_BANG_EQ] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_STAR_STAR] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1322), + [anon_sym_SEMI_SEMI] = ACTIONS(1322), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_EQ_TILDE] = ACTIONS(1322), + [anon_sym_AMP_GT] = ACTIONS(1322), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1322), + [anon_sym_GT_AMP] = ACTIONS(1322), + [anon_sym_GT_PIPE] = ACTIONS(1322), + [anon_sym_LT_AMP_DASH] = ACTIONS(1322), + [anon_sym_GT_AMP_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1322), + [aux_sym_concatenation_token1] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1322), + [sym__special_character] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_raw_string] = ACTIONS(1322), + [sym_ansi_c_string] = ACTIONS(1322), + [aux_sym_number_token1] = ACTIONS(1322), + [aux_sym_number_token2] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), + [anon_sym_LT_LPAREN] = ACTIONS(1322), + [anon_sym_GT_LPAREN] = ACTIONS(1322), [sym_comment] = ACTIONS(3), - [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(1324), + [sym__concat] = ACTIONS(1324), + [sym_test_operator] = ACTIONS(1324), + [sym__bare_dollar] = ACTIONS(1324), + [sym__brace_start] = ACTIONS(1324), }, - [STATE(480)] = { - [sym_word] = ACTIONS(1292), - [anon_sym_SEMI] = 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(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [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(1292), - [anon_sym_GT_EQ] = ACTIONS(1292), - [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(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_SEMI_SEMI] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1292), - [anon_sym_LT_AMP_DASH] = ACTIONS(1292), - [anon_sym_GT_AMP_DASH] = ACTIONS(1292), - [anon_sym_LT_LT_DASH] = ACTIONS(1292), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1292), - [aux_sym_concatenation_token1] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [sym_ansi_c_string] = ACTIONS(1292), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), + [STATE(507)] = { + [sym_word] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_EQ] = ACTIONS(1326), + [anon_sym_DASH_EQ] = ACTIONS(1326), + [anon_sym_STAR_EQ] = ACTIONS(1326), + [anon_sym_SLASH_EQ] = ACTIONS(1326), + [anon_sym_PERCENT_EQ] = ACTIONS(1326), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1326), + [anon_sym_LT_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_EQ] = ACTIONS(1326), + [anon_sym_CARET_EQ] = ACTIONS(1326), + [anon_sym_PIPE_EQ] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_EQ_EQ] = ACTIONS(1326), + [anon_sym_BANG_EQ] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1326), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_LT_LT] = ACTIONS(1326), + [anon_sym_GT_GT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_STAR_STAR] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1326), + [anon_sym_SEMI_SEMI] = ACTIONS(1326), + [anon_sym_PIPE_AMP] = ACTIONS(1326), + [anon_sym_EQ_TILDE] = ACTIONS(1326), + [anon_sym_AMP_GT] = ACTIONS(1326), + [anon_sym_AMP_GT_GT] = ACTIONS(1326), + [anon_sym_LT_AMP] = ACTIONS(1326), + [anon_sym_GT_AMP] = ACTIONS(1326), + [anon_sym_GT_PIPE] = ACTIONS(1326), + [anon_sym_LT_AMP_DASH] = ACTIONS(1326), + [anon_sym_GT_AMP_DASH] = ACTIONS(1326), + [anon_sym_LT_LT_DASH] = ACTIONS(1326), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1328), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_QMARK] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1326), + [aux_sym_concatenation_token1] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(1326), + [sym__special_character] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_raw_string] = ACTIONS(1326), + [sym_ansi_c_string] = ACTIONS(1326), + [aux_sym_number_token1] = ACTIONS(1326), + [aux_sym_number_token2] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), + [anon_sym_LT_LPAREN] = ACTIONS(1326), + [anon_sym_GT_LPAREN] = ACTIONS(1326), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1294), - [sym__concat] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), + [sym_file_descriptor] = ACTIONS(1328), + [sym__concat] = ACTIONS(1328), + [sym_test_operator] = ACTIONS(1328), + [sym__bare_dollar] = ACTIONS(1328), + [sym__brace_start] = ACTIONS(1328), }, - [STATE(481)] = { - [sym_word] = ACTIONS(1296), - [anon_sym_SEMI] = 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(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [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(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [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(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_GT_PIPE] = ACTIONS(1296), - [anon_sym_LT_AMP_DASH] = ACTIONS(1296), - [anon_sym_GT_AMP_DASH] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1296), - [aux_sym_concatenation_token1] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_ansi_c_string] = ACTIONS(1296), - [aux_sym_number_token1] = ACTIONS(1296), - [aux_sym_number_token2] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), + [STATE(508)] = { + [sym_word] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_EQ] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_EQ] = ACTIONS(1330), + [anon_sym_DASH_EQ] = ACTIONS(1330), + [anon_sym_STAR_EQ] = ACTIONS(1330), + [anon_sym_SLASH_EQ] = ACTIONS(1330), + [anon_sym_PERCENT_EQ] = ACTIONS(1330), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1330), + [anon_sym_LT_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_GT_EQ] = ACTIONS(1330), + [anon_sym_AMP_EQ] = ACTIONS(1330), + [anon_sym_CARET_EQ] = ACTIONS(1330), + [anon_sym_PIPE_EQ] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_GT] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_LT_LT] = ACTIONS(1330), + [anon_sym_GT_GT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_STAR_STAR] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_SEMI_SEMI] = ACTIONS(1330), + [anon_sym_PIPE_AMP] = ACTIONS(1330), + [anon_sym_EQ_TILDE] = ACTIONS(1330), + [anon_sym_AMP_GT] = ACTIONS(1330), + [anon_sym_AMP_GT_GT] = ACTIONS(1330), + [anon_sym_LT_AMP] = ACTIONS(1330), + [anon_sym_GT_AMP] = ACTIONS(1330), + [anon_sym_GT_PIPE] = ACTIONS(1330), + [anon_sym_LT_AMP_DASH] = ACTIONS(1330), + [anon_sym_GT_AMP_DASH] = ACTIONS(1330), + [anon_sym_LT_LT_DASH] = ACTIONS(1330), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1332), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1330), + [aux_sym_concatenation_token1] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1330), + [sym__special_character] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_raw_string] = ACTIONS(1330), + [sym_ansi_c_string] = ACTIONS(1330), + [aux_sym_number_token1] = ACTIONS(1330), + [aux_sym_number_token2] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), + [anon_sym_LT_LPAREN] = ACTIONS(1330), + [anon_sym_GT_LPAREN] = ACTIONS(1330), [sym_comment] = ACTIONS(3), - [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(1332), + [sym__concat] = ACTIONS(1332), + [sym_test_operator] = ACTIONS(1332), + [sym__bare_dollar] = ACTIONS(1332), + [sym__brace_start] = ACTIONS(1332), }, - [STATE(482)] = { - [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(509)] = { + [sym_word] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_EQ] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_EQ] = ACTIONS(1334), + [anon_sym_DASH_EQ] = ACTIONS(1334), + [anon_sym_STAR_EQ] = ACTIONS(1334), + [anon_sym_SLASH_EQ] = ACTIONS(1334), + [anon_sym_PERCENT_EQ] = ACTIONS(1334), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1334), + [anon_sym_LT_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_GT_EQ] = ACTIONS(1334), + [anon_sym_AMP_EQ] = ACTIONS(1334), + [anon_sym_CARET_EQ] = ACTIONS(1334), + [anon_sym_PIPE_EQ] = ACTIONS(1334), + [anon_sym_PIPE_PIPE] = ACTIONS(1334), + [anon_sym_AMP_AMP] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1334), + [anon_sym_CARET] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_EQ_EQ] = ACTIONS(1334), + [anon_sym_BANG_EQ] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_GT] = ACTIONS(1334), + [anon_sym_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_EQ] = ACTIONS(1334), + [anon_sym_LT_LT] = ACTIONS(1334), + [anon_sym_GT_GT] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1334), + [anon_sym_PERCENT] = ACTIONS(1334), + [anon_sym_STAR_STAR] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_SEMI_SEMI] = ACTIONS(1334), + [anon_sym_PIPE_AMP] = ACTIONS(1334), + [anon_sym_EQ_TILDE] = ACTIONS(1334), + [anon_sym_AMP_GT] = ACTIONS(1334), + [anon_sym_AMP_GT_GT] = ACTIONS(1334), + [anon_sym_LT_AMP] = ACTIONS(1334), + [anon_sym_GT_AMP] = ACTIONS(1334), + [anon_sym_GT_PIPE] = ACTIONS(1334), + [anon_sym_LT_AMP_DASH] = ACTIONS(1334), + [anon_sym_GT_AMP_DASH] = ACTIONS(1334), + [anon_sym_LT_LT_DASH] = ACTIONS(1334), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1336), + [anon_sym_LT_LT_LT] = ACTIONS(1334), + [anon_sym_QMARK] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1334), + [aux_sym_concatenation_token1] = ACTIONS(1334), + [anon_sym_DOLLAR] = ACTIONS(1334), + [sym__special_character] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_raw_string] = ACTIONS(1334), + [sym_ansi_c_string] = ACTIONS(1334), + [aux_sym_number_token1] = ACTIONS(1334), + [aux_sym_number_token2] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1334), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), + [anon_sym_LT_LPAREN] = ACTIONS(1334), + [anon_sym_GT_LPAREN] = ACTIONS(1334), [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(1336), + [sym__concat] = ACTIONS(1336), + [sym_test_operator] = ACTIONS(1336), + [sym__bare_dollar] = ACTIONS(1336), + [sym__brace_start] = ACTIONS(1336), }, - [STATE(483)] = { - [sym_word] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_GT_EQ] = ACTIONS(1304), - [anon_sym_AMP_EQ] = ACTIONS(1304), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1304), - [anon_sym_PIPE_PIPE] = ACTIONS(1304), - [anon_sym_AMP_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1304), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1304), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_GT_PIPE] = ACTIONS(1304), - [anon_sym_LT_AMP_DASH] = ACTIONS(1304), - [anon_sym_GT_AMP_DASH] = ACTIONS(1304), - [anon_sym_LT_LT_DASH] = ACTIONS(1304), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1306), - [anon_sym_LT_LT_LT] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1304), - [aux_sym_concatenation_token1] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), - [sym_ansi_c_string] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1304), - [aux_sym_number_token2] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), - [anon_sym_LT_LPAREN] = ACTIONS(1304), - [anon_sym_GT_LPAREN] = ACTIONS(1304), + [STATE(510)] = { + [sym_word] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_EQ] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_EQ] = ACTIONS(1338), + [anon_sym_DASH_EQ] = ACTIONS(1338), + [anon_sym_STAR_EQ] = ACTIONS(1338), + [anon_sym_SLASH_EQ] = ACTIONS(1338), + [anon_sym_PERCENT_EQ] = ACTIONS(1338), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1338), + [anon_sym_LT_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_GT_EQ] = ACTIONS(1338), + [anon_sym_AMP_EQ] = ACTIONS(1338), + [anon_sym_CARET_EQ] = ACTIONS(1338), + [anon_sym_PIPE_EQ] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_EQ] = ACTIONS(1338), + [anon_sym_LT_LT] = ACTIONS(1338), + [anon_sym_GT_GT] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1338), + [anon_sym_PERCENT] = ACTIONS(1338), + [anon_sym_STAR_STAR] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_SEMI_SEMI] = ACTIONS(1338), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_EQ_TILDE] = ACTIONS(1338), + [anon_sym_AMP_GT] = ACTIONS(1338), + [anon_sym_AMP_GT_GT] = ACTIONS(1338), + [anon_sym_LT_AMP] = ACTIONS(1338), + [anon_sym_GT_AMP] = ACTIONS(1338), + [anon_sym_GT_PIPE] = ACTIONS(1338), + [anon_sym_LT_AMP_DASH] = ACTIONS(1338), + [anon_sym_GT_AMP_DASH] = ACTIONS(1338), + [anon_sym_LT_LT_DASH] = ACTIONS(1338), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1340), + [anon_sym_LT_LT_LT] = ACTIONS(1338), + [anon_sym_QMARK] = ACTIONS(1338), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1338), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1338), + [aux_sym_concatenation_token1] = ACTIONS(1338), + [anon_sym_DOLLAR] = ACTIONS(1338), + [sym__special_character] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_raw_string] = ACTIONS(1338), + [sym_ansi_c_string] = ACTIONS(1338), + [aux_sym_number_token1] = ACTIONS(1338), + [aux_sym_number_token2] = ACTIONS(1338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), + [anon_sym_BQUOTE] = ACTIONS(1338), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1338), + [anon_sym_LT_LPAREN] = ACTIONS(1338), + [anon_sym_GT_LPAREN] = ACTIONS(1338), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [sym_test_operator] = ACTIONS(1306), - [sym__bare_dollar] = ACTIONS(1306), - [sym__brace_start] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1340), + [sym__concat] = ACTIONS(1340), + [sym_test_operator] = ACTIONS(1340), + [sym__bare_dollar] = ACTIONS(1340), + [sym__brace_start] = ACTIONS(1340), }, - [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(511)] = { + [sym_word] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(1342), + [anon_sym_DASH_EQ] = ACTIONS(1342), + [anon_sym_STAR_EQ] = ACTIONS(1342), + [anon_sym_SLASH_EQ] = ACTIONS(1342), + [anon_sym_PERCENT_EQ] = ACTIONS(1342), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1342), + [anon_sym_LT_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_GT_EQ] = ACTIONS(1342), + [anon_sym_AMP_EQ] = ACTIONS(1342), + [anon_sym_CARET_EQ] = ACTIONS(1342), + [anon_sym_PIPE_EQ] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_EQ_EQ] = ACTIONS(1342), + [anon_sym_BANG_EQ] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_EQ] = ACTIONS(1342), + [anon_sym_LT_LT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_STAR_STAR] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1342), + [anon_sym_SEMI_SEMI] = ACTIONS(1342), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_EQ_TILDE] = ACTIONS(1342), + [anon_sym_AMP_GT] = ACTIONS(1342), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1342), + [anon_sym_GT_AMP] = ACTIONS(1342), + [anon_sym_GT_PIPE] = ACTIONS(1342), + [anon_sym_LT_AMP_DASH] = ACTIONS(1342), + [anon_sym_GT_AMP_DASH] = ACTIONS(1342), + [anon_sym_LT_LT_DASH] = ACTIONS(1342), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1344), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1342), + [aux_sym_concatenation_token1] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1342), + [sym__special_character] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1342), + [sym_ansi_c_string] = ACTIONS(1342), + [aux_sym_number_token1] = ACTIONS(1342), + [aux_sym_number_token2] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), [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(1344), + [sym__concat] = ACTIONS(1344), + [sym_test_operator] = ACTIONS(1344), + [sym__bare_dollar] = ACTIONS(1344), + [sym__brace_start] = ACTIONS(1344), }, - [STATE(485)] = { - [sym_word] = ACTIONS(1308), - [anon_sym_SEMI] = 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(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [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(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [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(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1308), - [anon_sym_LT_AMP_DASH] = ACTIONS(1308), - [anon_sym_GT_AMP_DASH] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1308), - [aux_sym_concatenation_token1] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(1308), - [sym_ansi_c_string] = ACTIONS(1308), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), + [STATE(512)] = { + [sym_word] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_GT_EQ] = ACTIONS(1346), + [anon_sym_AMP_EQ] = ACTIONS(1346), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_EQ] = ACTIONS(1346), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1346), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_SEMI_SEMI] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_GT_PIPE] = ACTIONS(1346), + [anon_sym_LT_AMP_DASH] = ACTIONS(1346), + [anon_sym_GT_AMP_DASH] = ACTIONS(1346), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1346), + [aux_sym_concatenation_token1] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [sym_ansi_c_string] = ACTIONS(1346), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), [sym_comment] = ACTIONS(3), - [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(1348), + [sym__concat] = ACTIONS(1348), + [sym_test_operator] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), }, - [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), + [STATE(513)] = { + [sym_word] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(1350), + [anon_sym_DASH_EQ] = ACTIONS(1350), + [anon_sym_STAR_EQ] = ACTIONS(1350), + [anon_sym_SLASH_EQ] = ACTIONS(1350), + [anon_sym_PERCENT_EQ] = ACTIONS(1350), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1350), + [anon_sym_LT_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_GT_EQ] = ACTIONS(1350), + [anon_sym_AMP_EQ] = ACTIONS(1350), + [anon_sym_CARET_EQ] = ACTIONS(1350), + [anon_sym_PIPE_EQ] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_LT_LT] = ACTIONS(1350), + [anon_sym_GT_GT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_STAR_STAR] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_SEMI_SEMI] = ACTIONS(1350), + [anon_sym_PIPE_AMP] = ACTIONS(1350), + [anon_sym_EQ_TILDE] = ACTIONS(1350), + [anon_sym_AMP_GT] = ACTIONS(1350), + [anon_sym_AMP_GT_GT] = ACTIONS(1350), + [anon_sym_LT_AMP] = ACTIONS(1350), + [anon_sym_GT_AMP] = ACTIONS(1350), + [anon_sym_GT_PIPE] = ACTIONS(1350), + [anon_sym_LT_AMP_DASH] = ACTIONS(1350), + [anon_sym_GT_AMP_DASH] = ACTIONS(1350), + [anon_sym_LT_LT_DASH] = ACTIONS(1350), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1350), + [aux_sym_concatenation_token1] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [sym__special_character] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_raw_string] = ACTIONS(1350), + [sym_ansi_c_string] = ACTIONS(1350), + [aux_sym_number_token1] = ACTIONS(1350), + [aux_sym_number_token2] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), + [anon_sym_LT_LPAREN] = ACTIONS(1350), + [anon_sym_GT_LPAREN] = ACTIONS(1350), [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), + [sym_file_descriptor] = ACTIONS(1352), + [sym__concat] = ACTIONS(1352), + [sym_test_operator] = ACTIONS(1352), + [sym__bare_dollar] = ACTIONS(1352), + [sym__brace_start] = ACTIONS(1352), }, - [STATE(487)] = { - [sym_word] = ACTIONS(1312), - [anon_sym_SEMI] = 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(1312), - [anon_sym_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_EQ] = ACTIONS(1312), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [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(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [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(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_SEMI_SEMI] = ACTIONS(1312), - [anon_sym_PIPE_AMP] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_AMP_GT] = ACTIONS(1312), - [anon_sym_AMP_GT_GT] = ACTIONS(1312), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1312), - [anon_sym_LT_AMP_DASH] = ACTIONS(1312), - [anon_sym_GT_AMP_DASH] = ACTIONS(1312), - [anon_sym_LT_LT_DASH] = ACTIONS(1312), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1312), - [aux_sym_concatenation_token1] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(1312), - [sym_ansi_c_string] = ACTIONS(1312), - [aux_sym_number_token1] = ACTIONS(1312), - [aux_sym_number_token2] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [anon_sym_GT_LPAREN] = ACTIONS(1312), + [STATE(514)] = { + [sym_word] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_STAR_EQ] = ACTIONS(1354), + [anon_sym_SLASH_EQ] = ACTIONS(1354), + [anon_sym_PERCENT_EQ] = ACTIONS(1354), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1354), + [anon_sym_LT_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_GT_EQ] = ACTIONS(1354), + [anon_sym_AMP_EQ] = ACTIONS(1354), + [anon_sym_CARET_EQ] = ACTIONS(1354), + [anon_sym_PIPE_EQ] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_STAR_STAR] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_SEMI_SEMI] = ACTIONS(1354), + [anon_sym_PIPE_AMP] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1354), + [anon_sym_AMP_GT] = ACTIONS(1354), + [anon_sym_AMP_GT_GT] = ACTIONS(1354), + [anon_sym_LT_AMP] = ACTIONS(1354), + [anon_sym_GT_AMP] = ACTIONS(1354), + [anon_sym_GT_PIPE] = ACTIONS(1354), + [anon_sym_LT_AMP_DASH] = ACTIONS(1354), + [anon_sym_GT_AMP_DASH] = ACTIONS(1354), + [anon_sym_LT_LT_DASH] = ACTIONS(1354), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1354), + [aux_sym_concatenation_token1] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [sym__special_character] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_raw_string] = ACTIONS(1354), + [sym_ansi_c_string] = ACTIONS(1354), + [aux_sym_number_token1] = ACTIONS(1354), + [aux_sym_number_token2] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), + [anon_sym_LT_LPAREN] = ACTIONS(1354), + [anon_sym_GT_LPAREN] = ACTIONS(1354), [sym_comment] = ACTIONS(3), - [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(1356), + [sym__concat] = ACTIONS(1356), + [sym_test_operator] = ACTIONS(1356), + [sym__bare_dollar] = ACTIONS(1356), + [sym__brace_start] = ACTIONS(1356), }, - [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), + [STATE(515)] = { + [sym_word] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_STAR_STAR] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_SEMI_SEMI] = ACTIONS(1358), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_PIPE] = ACTIONS(1358), + [anon_sym_LT_AMP_DASH] = ACTIONS(1358), + [anon_sym_GT_AMP_DASH] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1360), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1358), + [aux_sym_concatenation_token1] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_ansi_c_string] = ACTIONS(1358), + [aux_sym_number_token1] = ACTIONS(1358), + [aux_sym_number_token2] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1318), - [sym_test_operator] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), + [sym_test_operator] = ACTIONS(1360), + [sym__bare_dollar] = ACTIONS(1360), + [sym__brace_start] = ACTIONS(1360), }, - [STATE(489)] = { - [aux_sym__literal_repeat1] = STATE(488), + [STATE(516)] = { + [sym_word] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_GT_EQ] = ACTIONS(1346), + [anon_sym_AMP_EQ] = ACTIONS(1346), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1346), + [anon_sym_PIPE_PIPE] = ACTIONS(1346), + [anon_sym_AMP_AMP] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1346), + [anon_sym_GT_EQ] = ACTIONS(1346), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1346), + [anon_sym_RPAREN] = ACTIONS(1346), + [anon_sym_SEMI_SEMI] = ACTIONS(1346), + [anon_sym_PIPE_AMP] = ACTIONS(1346), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1346), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_GT_PIPE] = ACTIONS(1346), + [anon_sym_LT_AMP_DASH] = ACTIONS(1346), + [anon_sym_GT_AMP_DASH] = ACTIONS(1346), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1346), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1346), + [aux_sym_concatenation_token1] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_raw_string] = ACTIONS(1346), + [sym_ansi_c_string] = ACTIONS(1346), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), + [anon_sym_LT_LPAREN] = ACTIONS(1346), + [anon_sym_GT_LPAREN] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1348), + [sym__concat] = ACTIONS(1348), + [sym_test_operator] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), + }, + [STATE(517)] = { + [sym_word] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_EQ] = ACTIONS(1362), + [anon_sym_DASH_EQ] = ACTIONS(1362), + [anon_sym_STAR_EQ] = ACTIONS(1362), + [anon_sym_SLASH_EQ] = ACTIONS(1362), + [anon_sym_PERCENT_EQ] = ACTIONS(1362), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1362), + [anon_sym_LT_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_GT_EQ] = ACTIONS(1362), + [anon_sym_AMP_EQ] = ACTIONS(1362), + [anon_sym_CARET_EQ] = ACTIONS(1362), + [anon_sym_PIPE_EQ] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_EQ] = ACTIONS(1362), + [anon_sym_LT_LT] = ACTIONS(1362), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_STAR_STAR] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_SEMI_SEMI] = ACTIONS(1362), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1362), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_GT_PIPE] = ACTIONS(1362), + [anon_sym_LT_AMP_DASH] = ACTIONS(1362), + [anon_sym_GT_AMP_DASH] = ACTIONS(1362), + [anon_sym_LT_LT_DASH] = ACTIONS(1362), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1362), + [aux_sym_concatenation_token1] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [sym__special_character] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [sym_ansi_c_string] = ACTIONS(1362), + [aux_sym_number_token1] = ACTIONS(1362), + [aux_sym_number_token2] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1364), + [sym__concat] = ACTIONS(1364), + [sym_test_operator] = ACTIONS(1364), + [sym__bare_dollar] = ACTIONS(1364), + [sym__brace_start] = ACTIONS(1364), + }, + [STATE(518)] = { + [sym_word] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_EQ] = ACTIONS(1366), + [anon_sym_DASH_EQ] = ACTIONS(1366), + [anon_sym_STAR_EQ] = ACTIONS(1366), + [anon_sym_SLASH_EQ] = ACTIONS(1366), + [anon_sym_PERCENT_EQ] = ACTIONS(1366), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1366), + [anon_sym_LT_LT_EQ] = ACTIONS(1366), + [anon_sym_GT_GT_EQ] = ACTIONS(1366), + [anon_sym_AMP_EQ] = ACTIONS(1366), + [anon_sym_CARET_EQ] = ACTIONS(1366), + [anon_sym_PIPE_EQ] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_EQ_EQ] = ACTIONS(1366), + [anon_sym_BANG_EQ] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_EQ] = ACTIONS(1366), + [anon_sym_GT_EQ] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_SEMI_SEMI] = ACTIONS(1366), + [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_EQ_TILDE] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_GT_PIPE] = ACTIONS(1366), + [anon_sym_LT_AMP_DASH] = ACTIONS(1366), + [anon_sym_GT_AMP_DASH] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1366), + [aux_sym_concatenation_token1] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_raw_string] = ACTIONS(1366), + [sym_ansi_c_string] = ACTIONS(1366), + [aux_sym_number_token1] = ACTIONS(1366), + [aux_sym_number_token2] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1368), + [sym__concat] = ACTIONS(1368), + [sym_test_operator] = ACTIONS(1368), + [sym__bare_dollar] = ACTIONS(1368), + [sym__brace_start] = ACTIONS(1368), + }, + [STATE(519)] = { + [aux_sym__literal_repeat1] = STATE(519), + [sym_word] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_EQ] = ACTIONS(1370), + [anon_sym_DASH_EQ] = ACTIONS(1370), + [anon_sym_STAR_EQ] = ACTIONS(1370), + [anon_sym_SLASH_EQ] = ACTIONS(1370), + [anon_sym_PERCENT_EQ] = ACTIONS(1370), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1370), + [anon_sym_LT_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_GT_EQ] = ACTIONS(1370), + [anon_sym_AMP_EQ] = ACTIONS(1370), + [anon_sym_CARET_EQ] = ACTIONS(1370), + [anon_sym_PIPE_EQ] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_EQ_EQ] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1370), + [anon_sym_PERCENT] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_SEMI_SEMI] = ACTIONS(1370), + [anon_sym_PIPE_AMP] = ACTIONS(1370), + [anon_sym_EQ_TILDE] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [anon_sym_GT_PIPE] = ACTIONS(1370), + [anon_sym_LT_AMP_DASH] = ACTIONS(1370), + [anon_sym_GT_AMP_DASH] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1372), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_raw_string] = ACTIONS(1370), + [sym_ansi_c_string] = ACTIONS(1370), + [aux_sym_number_token1] = ACTIONS(1370), + [aux_sym_number_token2] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1370), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1372), + [sym_test_operator] = ACTIONS(1372), + [sym__bare_dollar] = ACTIONS(1372), + [sym__brace_start] = ACTIONS(1372), + }, + [STATE(520)] = { + [aux_sym__literal_repeat1] = STATE(519), [sym_word] = ACTIONS(237), [anon_sym_SEMI] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(239), @@ -73427,7 +78334,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(1377), [anon_sym_DQUOTE] = ACTIONS(237), [sym_raw_string] = ACTIONS(237), [sym_ansi_c_string] = ACTIONS(237), @@ -73441,1964 +78348,1964 @@ 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(506), [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), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1240), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), - }, - [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), - [anon_sym_PIPE_PIPE] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1223), - [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(1223), - [anon_sym_GT_EQ] = ACTIONS(1223), - [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_RPAREN] = ACTIONS(1223), - [anon_sym_SEMI_SEMI] = ACTIONS(1223), - [anon_sym_PIPE_AMP] = ACTIONS(1223), - [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), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1225), - [sym_test_operator] = ACTIONS(1225), - [sym__bare_dollar] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1225), - }, - [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), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_EQ] = ACTIONS(1207), - [anon_sym_DASH_EQ] = ACTIONS(1207), - [anon_sym_STAR_EQ] = ACTIONS(1207), - [anon_sym_SLASH_EQ] = ACTIONS(1207), - [anon_sym_PERCENT_EQ] = ACTIONS(1207), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1207), - [anon_sym_LT_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_GT_EQ] = ACTIONS(1209), - [anon_sym_AMP_EQ] = ACTIONS(1209), - [anon_sym_CARET_EQ] = ACTIONS(1207), - [anon_sym_PIPE_EQ] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_EQ_EQ] = ACTIONS(1207), - [anon_sym_BANG_EQ] = ACTIONS(1207), - [anon_sym_LT] = ACTIONS(1207), - [anon_sym_GT] = ACTIONS(1207), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_LT] = ACTIONS(1207), - [anon_sym_GT_GT] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_PERCENT] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_PIPE_AMP] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_EQ_TILDE] = ACTIONS(1207), - [anon_sym_AMP_GT] = ACTIONS(1207), - [anon_sym_AMP_GT_GT] = ACTIONS(1209), - [anon_sym_LT_AMP] = ACTIONS(1207), - [anon_sym_GT_AMP] = ACTIONS(1207), - [anon_sym_GT_PIPE] = ACTIONS(1209), - [anon_sym_LT_AMP_DASH] = ACTIONS(1209), - [anon_sym_GT_AMP_DASH] = ACTIONS(1209), - [anon_sym_LT_LT_DASH] = ACTIONS(1209), - [anon_sym_LT_LT_LT] = ACTIONS(1209), - [anon_sym_QMARK] = ACTIONS(1207), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1209), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1209), - [aux_sym_concatenation_token1] = ACTIONS(371), - [anon_sym_DOLLAR] = ACTIONS(1207), - [sym__special_character] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_raw_string] = ACTIONS(1209), - [sym_ansi_c_string] = ACTIONS(1209), - [aux_sym_number_token1] = ACTIONS(1207), - [aux_sym_number_token2] = ACTIONS(1207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1207), - [anon_sym_BQUOTE] = ACTIONS(1207), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1209), - [anon_sym_LT_LPAREN] = ACTIONS(1209), - [anon_sym_GT_LPAREN] = ACTIONS(1209), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1209), - [sym__concat] = ACTIONS(1327), - [sym_test_operator] = ACTIONS(1209), - [sym__bare_dollar] = ACTIONS(1209), - [sym__brace_start] = ACTIONS(1209), - }, - [STATE(494)] = { - [aux_sym_concatenation_repeat1] = STATE(494), - [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(1329), - [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(1329), - [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), + [STATE(521)] = { + [aux_sym_concatenation_repeat1] = STATE(528), + [sym_word] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_GT_EQ] = ACTIONS(1379), + [anon_sym_AMP_EQ] = ACTIONS(1379), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(1379), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_AMP_GT] = ACTIONS(1287), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1287), + [anon_sym_GT_AMP] = ACTIONS(1287), + [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(1289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym__special_character] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1287), + [aux_sym_number_token2] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1287), + [anon_sym_BQUOTE] = ACTIONS(1287), + [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(1240), - [sym__concat] = ACTIONS(371), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(517), + [sym_test_operator] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [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), - [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), - [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), + [STATE(522)] = { + [aux_sym_concatenation_repeat1] = STATE(522), + [sym_word] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_AMP_DASH] = ACTIONS(1263), + [anon_sym_GT_AMP_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1263), + [aux_sym_concatenation_token1] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), [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), + [sym_file_descriptor] = ACTIONS(1263), + [sym__concat] = ACTIONS(1381), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [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(523)] = { + [sym_word] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1291), + [anon_sym_SEMI_SEMI] = ACTIONS(1287), + [anon_sym_PIPE_AMP] = ACTIONS(1287), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_AMP_GT] = ACTIONS(1287), + [anon_sym_AMP_GT_GT] = ACTIONS(1287), + [anon_sym_LT_AMP] = ACTIONS(1287), + [anon_sym_GT_AMP] = ACTIONS(1287), + [anon_sym_GT_PIPE] = ACTIONS(1287), + [anon_sym_LT_AMP_DASH] = ACTIONS(1287), + [anon_sym_GT_AMP_DASH] = ACTIONS(1287), + [anon_sym_LT_LT_DASH] = ACTIONS(1287), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym__special_character] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1287), + [sym_raw_string] = ACTIONS(1287), + [sym_ansi_c_string] = ACTIONS(1287), + [aux_sym_number_token1] = ACTIONS(1287), + [aux_sym_number_token2] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1287), + [anon_sym_BQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1287), + [anon_sym_LT_LPAREN] = ACTIONS(1287), + [anon_sym_GT_LPAREN] = ACTIONS(1287), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [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), + [STATE(524)] = { + [aux_sym_concatenation_repeat1] = STATE(528), + [sym_word] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_GT_EQ] = ACTIONS(1379), + [anon_sym_AMP_EQ] = ACTIONS(1379), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1384), [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_RBRACK] = ACTIONS(1379), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_AMP_GT] = ACTIONS(1287), [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_LT_AMP] = ACTIONS(1287), + [anon_sym_GT_AMP] = ACTIONS(1287), [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_QMARK] = ACTIONS(1289), [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), + [aux_sym_concatenation_token1] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym__special_character] = ACTIONS(1287), [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), + [aux_sym_number_token1] = ACTIONS(1287), + [aux_sym_number_token2] = ACTIONS(1287), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1287), + [anon_sym_BQUOTE] = ACTIONS(1287), [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__concat] = ACTIONS(517), + [sym_test_operator] = ACTIONS(1296), [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), + [STATE(525)] = { + [aux_sym_concatenation_repeat1] = STATE(526), + [sym_word] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1271), + [anon_sym_DASH_EQ] = ACTIONS(1271), + [anon_sym_STAR_EQ] = ACTIONS(1271), + [anon_sym_SLASH_EQ] = ACTIONS(1271), + [anon_sym_PERCENT_EQ] = ACTIONS(1271), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1271), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1271), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1273), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1273), + [anon_sym_LT_AMP_DASH] = ACTIONS(1273), + [anon_sym_GT_AMP_DASH] = ACTIONS(1273), + [anon_sym_LT_LT_DASH] = ACTIONS(1273), + [anon_sym_LT_LT_LT] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1273), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1273), + [aux_sym_concatenation_token1] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_raw_string] = ACTIONS(1273), + [sym_ansi_c_string] = ACTIONS(1273), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1273), + [anon_sym_GT_LPAREN] = ACTIONS(1273), [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(1273), + [sym__concat] = ACTIONS(517), + [sym_test_operator] = ACTIONS(1273), + [sym__bare_dollar] = ACTIONS(1273), + [sym__brace_start] = ACTIONS(1273), }, - [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(526)] = { + [aux_sym_concatenation_repeat1] = STATE(522), + [sym_word] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_GT_EQ] = ACTIONS(1283), + [anon_sym_AMP_EQ] = ACTIONS(1283), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_RBRACK] = ACTIONS(1283), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(1281), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [anon_sym_GT_PIPE] = ACTIONS(1283), + [anon_sym_LT_AMP_DASH] = ACTIONS(1283), + [anon_sym_GT_AMP_DASH] = ACTIONS(1283), + [anon_sym_LT_LT_DASH] = ACTIONS(1283), + [anon_sym_LT_LT_LT] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1283), + [aux_sym_concatenation_token1] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym__special_character] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [sym_ansi_c_string] = ACTIONS(1283), + [aux_sym_number_token1] = ACTIONS(1281), + [aux_sym_number_token2] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), [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(1283), + [sym__concat] = ACTIONS(1387), + [sym_test_operator] = ACTIONS(1283), + [sym__bare_dollar] = ACTIONS(1283), + [sym__brace_start] = ACTIONS(1283), }, - [STATE(502)] = { - [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(527)] = { + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1271), + [anon_sym_DASH_EQ] = ACTIONS(1271), + [anon_sym_STAR_EQ] = ACTIONS(1271), + [anon_sym_SLASH_EQ] = ACTIONS(1271), + [anon_sym_PERCENT_EQ] = ACTIONS(1271), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1271), + [anon_sym_LT_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_GT_EQ] = ACTIONS(1271), + [anon_sym_AMP_EQ] = ACTIONS(1271), + [anon_sym_CARET_EQ] = ACTIONS(1271), + [anon_sym_PIPE_EQ] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1271), + [anon_sym_LT_AMP_DASH] = ACTIONS(1271), + [anon_sym_GT_AMP_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1273), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [sym_ansi_c_string] = ACTIONS(1271), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1273), + [sym_test_operator] = ACTIONS(1273), + [sym__bare_dollar] = ACTIONS(1273), + [sym__brace_start] = ACTIONS(1273), + }, + [STATE(528)] = { + [aux_sym_concatenation_repeat1] = STATE(522), + [sym_word] = ACTIONS(1275), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1275), + [anon_sym_PLUS_EQ] = ACTIONS(1275), + [anon_sym_DASH_EQ] = ACTIONS(1275), + [anon_sym_STAR_EQ] = ACTIONS(1275), + [anon_sym_SLASH_EQ] = ACTIONS(1275), + [anon_sym_PERCENT_EQ] = ACTIONS(1275), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1275), + [anon_sym_LT_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_GT_EQ] = ACTIONS(1277), + [anon_sym_AMP_EQ] = ACTIONS(1277), + [anon_sym_CARET_EQ] = ACTIONS(1275), + [anon_sym_PIPE_EQ] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1275), + [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_EQ_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_LT_LT] = ACTIONS(1275), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_STAR_STAR] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1277), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1275), + [anon_sym_AMP_GT_GT] = ACTIONS(1277), + [anon_sym_LT_AMP] = ACTIONS(1275), + [anon_sym_GT_AMP] = ACTIONS(1275), + [anon_sym_GT_PIPE] = ACTIONS(1277), + [anon_sym_LT_AMP_DASH] = ACTIONS(1277), + [anon_sym_GT_AMP_DASH] = ACTIONS(1277), + [anon_sym_LT_LT_DASH] = ACTIONS(1277), + [anon_sym_LT_LT_LT] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1275), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1277), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1277), + [aux_sym_concatenation_token1] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(1275), + [sym__special_character] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_raw_string] = ACTIONS(1277), + [sym_ansi_c_string] = ACTIONS(1277), + [aux_sym_number_token1] = ACTIONS(1275), + [aux_sym_number_token2] = ACTIONS(1275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1275), + [anon_sym_BQUOTE] = ACTIONS(1275), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1277), + [anon_sym_LT_LPAREN] = ACTIONS(1277), + [anon_sym_GT_LPAREN] = ACTIONS(1277), [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(1277), + [sym__concat] = ACTIONS(1389), + [sym_test_operator] = ACTIONS(1277), + [sym__bare_dollar] = ACTIONS(1277), + [sym__brace_start] = ACTIONS(1277), }, - [STATE(503)] = { - [sym_word] = ACTIONS(1304), - [anon_sym_EQ] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_PIPE_AMP] = ACTIONS(1306), - [anon_sym_RBRACK] = ACTIONS(1306), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1306), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_GT_PIPE] = ACTIONS(1306), - [anon_sym_LT_AMP_DASH] = ACTIONS(1306), - [anon_sym_GT_AMP_DASH] = ACTIONS(1306), - [anon_sym_LT_LT_DASH] = ACTIONS(1306), - [anon_sym_LT_LT_LT] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1306), - [aux_sym_concatenation_token1] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_raw_string] = ACTIONS(1306), - [sym_ansi_c_string] = ACTIONS(1306), - [aux_sym_number_token1] = ACTIONS(1304), - [aux_sym_number_token2] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), - [anon_sym_LT_LPAREN] = ACTIONS(1306), - [anon_sym_GT_LPAREN] = ACTIONS(1306), + [STATE(529)] = { + [sym_word] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_EQ] = ACTIONS(1366), + [anon_sym_DASH_EQ] = ACTIONS(1366), + [anon_sym_STAR_EQ] = ACTIONS(1366), + [anon_sym_SLASH_EQ] = ACTIONS(1366), + [anon_sym_PERCENT_EQ] = ACTIONS(1366), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1366), + [anon_sym_LT_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_GT_EQ] = ACTIONS(1368), + [anon_sym_AMP_EQ] = ACTIONS(1368), + [anon_sym_CARET_EQ] = ACTIONS(1366), + [anon_sym_PIPE_EQ] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_EQ_EQ] = ACTIONS(1366), + [anon_sym_BANG_EQ] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1366), + [anon_sym_GT_GT] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_STAR_STAR] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1366), + [anon_sym_AMP_GT] = ACTIONS(1366), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1366), + [anon_sym_GT_AMP] = ACTIONS(1366), + [anon_sym_GT_PIPE] = ACTIONS(1368), + [anon_sym_LT_AMP_DASH] = ACTIONS(1368), + [anon_sym_GT_AMP_DASH] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1368), + [aux_sym_concatenation_token1] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1366), + [sym__special_character] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_raw_string] = ACTIONS(1368), + [sym_ansi_c_string] = ACTIONS(1368), + [aux_sym_number_token1] = ACTIONS(1366), + [aux_sym_number_token2] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [sym_test_operator] = ACTIONS(1306), - [sym__bare_dollar] = ACTIONS(1306), - [sym__brace_start] = ACTIONS(1306), + [sym_file_descriptor] = ACTIONS(1368), + [sym__concat] = ACTIONS(1368), + [sym_test_operator] = ACTIONS(1368), + [sym__bare_dollar] = ACTIONS(1368), + [sym__brace_start] = ACTIONS(1368), }, - [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(530)] = { + [sym_word] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_EQ] = ACTIONS(1342), + [anon_sym_DASH_EQ] = ACTIONS(1342), + [anon_sym_STAR_EQ] = ACTIONS(1342), + [anon_sym_SLASH_EQ] = ACTIONS(1342), + [anon_sym_PERCENT_EQ] = ACTIONS(1342), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1342), + [anon_sym_LT_LT_EQ] = ACTIONS(1344), + [anon_sym_GT_GT_EQ] = ACTIONS(1344), + [anon_sym_AMP_EQ] = ACTIONS(1344), + [anon_sym_CARET_EQ] = ACTIONS(1342), + [anon_sym_PIPE_EQ] = ACTIONS(1344), + [anon_sym_PIPE_PIPE] = ACTIONS(1344), + [anon_sym_AMP_AMP] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_CARET] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_EQ_EQ] = ACTIONS(1342), + [anon_sym_BANG_EQ] = ACTIONS(1342), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_GT] = ACTIONS(1342), + [anon_sym_LT_EQ] = ACTIONS(1344), + [anon_sym_GT_EQ] = ACTIONS(1344), + [anon_sym_LT_LT] = ACTIONS(1342), + [anon_sym_GT_GT] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_SLASH] = ACTIONS(1342), + [anon_sym_PERCENT] = ACTIONS(1342), + [anon_sym_STAR_STAR] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_PIPE_AMP] = ACTIONS(1344), + [anon_sym_RBRACK] = ACTIONS(1344), + [anon_sym_EQ_TILDE] = ACTIONS(1342), + [anon_sym_AMP_GT] = ACTIONS(1342), + [anon_sym_AMP_GT_GT] = ACTIONS(1344), + [anon_sym_LT_AMP] = ACTIONS(1342), + [anon_sym_GT_AMP] = ACTIONS(1342), + [anon_sym_GT_PIPE] = ACTIONS(1344), + [anon_sym_LT_AMP_DASH] = ACTIONS(1344), + [anon_sym_GT_AMP_DASH] = ACTIONS(1344), + [anon_sym_LT_LT_DASH] = ACTIONS(1344), + [anon_sym_LT_LT_LT] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1344), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1344), + [aux_sym_concatenation_token1] = ACTIONS(1344), + [anon_sym_DOLLAR] = ACTIONS(1342), + [sym__special_character] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_raw_string] = ACTIONS(1344), + [sym_ansi_c_string] = ACTIONS(1344), + [aux_sym_number_token1] = ACTIONS(1342), + [aux_sym_number_token2] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1342), + [anon_sym_BQUOTE] = ACTIONS(1342), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1344), + [anon_sym_LT_LPAREN] = ACTIONS(1344), + [anon_sym_GT_LPAREN] = ACTIONS(1344), [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(1344), + [sym__concat] = ACTIONS(1344), + [sym_test_operator] = ACTIONS(1344), + [sym__bare_dollar] = ACTIONS(1344), + [sym__brace_start] = ACTIONS(1344), }, - [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(531)] = { + [sym_word] = ACTIONS(1338), + [anon_sym_EQ] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_EQ] = ACTIONS(1338), + [anon_sym_DASH_EQ] = ACTIONS(1338), + [anon_sym_STAR_EQ] = ACTIONS(1338), + [anon_sym_SLASH_EQ] = ACTIONS(1338), + [anon_sym_PERCENT_EQ] = ACTIONS(1338), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1338), + [anon_sym_LT_LT_EQ] = ACTIONS(1340), + [anon_sym_GT_GT_EQ] = ACTIONS(1340), + [anon_sym_AMP_EQ] = ACTIONS(1340), + [anon_sym_CARET_EQ] = ACTIONS(1338), + [anon_sym_PIPE_EQ] = ACTIONS(1340), + [anon_sym_PIPE_PIPE] = ACTIONS(1340), + [anon_sym_AMP_AMP] = ACTIONS(1340), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_CARET] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1340), + [anon_sym_GT_EQ] = ACTIONS(1340), + [anon_sym_LT_LT] = ACTIONS(1338), + [anon_sym_GT_GT] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_SLASH] = ACTIONS(1338), + [anon_sym_PERCENT] = ACTIONS(1338), + [anon_sym_STAR_STAR] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1340), + [anon_sym_RBRACK] = ACTIONS(1340), + [anon_sym_EQ_TILDE] = ACTIONS(1338), + [anon_sym_AMP_GT] = ACTIONS(1338), + [anon_sym_AMP_GT_GT] = ACTIONS(1340), + [anon_sym_LT_AMP] = ACTIONS(1338), + [anon_sym_GT_AMP] = ACTIONS(1338), + [anon_sym_GT_PIPE] = ACTIONS(1340), + [anon_sym_LT_AMP_DASH] = ACTIONS(1340), + [anon_sym_GT_AMP_DASH] = ACTIONS(1340), + [anon_sym_LT_LT_DASH] = ACTIONS(1340), + [anon_sym_LT_LT_LT] = ACTIONS(1340), + [anon_sym_QMARK] = ACTIONS(1338), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1340), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1340), + [aux_sym_concatenation_token1] = ACTIONS(1340), + [anon_sym_DOLLAR] = ACTIONS(1338), + [sym__special_character] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_raw_string] = ACTIONS(1340), + [sym_ansi_c_string] = ACTIONS(1340), + [aux_sym_number_token1] = ACTIONS(1338), + [aux_sym_number_token2] = ACTIONS(1338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1338), + [anon_sym_BQUOTE] = ACTIONS(1338), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1340), + [anon_sym_LT_LPAREN] = ACTIONS(1340), + [anon_sym_GT_LPAREN] = ACTIONS(1340), [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(1340), + [sym__concat] = ACTIONS(1340), + [sym_test_operator] = ACTIONS(1340), + [sym__bare_dollar] = ACTIONS(1340), + [sym__brace_start] = ACTIONS(1340), }, - [STATE(506)] = { - [sym_word] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_EQ] = ACTIONS(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_PERCENT_EQ] = ACTIONS(1280), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1280), - [anon_sym_LT_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_GT_EQ] = ACTIONS(1282), - [anon_sym_AMP_EQ] = ACTIONS(1282), - [anon_sym_CARET_EQ] = ACTIONS(1280), - [anon_sym_PIPE_EQ] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_LT_LT] = ACTIONS(1280), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_STAR_STAR] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_PIPE_AMP] = ACTIONS(1282), - [anon_sym_RBRACK] = ACTIONS(1282), - [anon_sym_EQ_TILDE] = ACTIONS(1280), - [anon_sym_AMP_GT] = ACTIONS(1280), - [anon_sym_AMP_GT_GT] = ACTIONS(1282), - [anon_sym_LT_AMP] = ACTIONS(1280), - [anon_sym_GT_AMP] = ACTIONS(1280), - [anon_sym_GT_PIPE] = ACTIONS(1282), - [anon_sym_LT_AMP_DASH] = ACTIONS(1282), - [anon_sym_GT_AMP_DASH] = ACTIONS(1282), - [anon_sym_LT_LT_DASH] = ACTIONS(1282), - [anon_sym_LT_LT_LT] = ACTIONS(1282), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1282), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1282), - [aux_sym_concatenation_token1] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [sym__special_character] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_raw_string] = ACTIONS(1282), - [sym_ansi_c_string] = ACTIONS(1282), - [aux_sym_number_token1] = ACTIONS(1280), - [aux_sym_number_token2] = ACTIONS(1280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1280), - [anon_sym_BQUOTE] = ACTIONS(1280), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1282), - [anon_sym_LT_LPAREN] = ACTIONS(1282), - [anon_sym_GT_LPAREN] = ACTIONS(1282), + [STATE(532)] = { + [sym_word] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_EQ] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_GT_PIPE] = ACTIONS(1348), + [anon_sym_LT_AMP_DASH] = ACTIONS(1348), + [anon_sym_GT_AMP_DASH] = ACTIONS(1348), + [anon_sym_LT_LT_DASH] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1348), + [aux_sym_concatenation_token1] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [sym_ansi_c_string] = ACTIONS(1348), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1282), - [sym__concat] = ACTIONS(1282), - [sym_test_operator] = ACTIONS(1282), - [sym__bare_dollar] = ACTIONS(1282), - [sym__brace_start] = ACTIONS(1282), + [sym_file_descriptor] = ACTIONS(1348), + [sym__concat] = ACTIONS(1348), + [sym_test_operator] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), }, - [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), + [STATE(533)] = { + [sym_word] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_EQ] = ACTIONS(1350), + [anon_sym_DASH_EQ] = ACTIONS(1350), + [anon_sym_STAR_EQ] = ACTIONS(1350), + [anon_sym_SLASH_EQ] = ACTIONS(1350), + [anon_sym_PERCENT_EQ] = ACTIONS(1350), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1350), + [anon_sym_LT_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_GT_EQ] = ACTIONS(1352), + [anon_sym_AMP_EQ] = ACTIONS(1352), + [anon_sym_CARET_EQ] = ACTIONS(1350), + [anon_sym_PIPE_EQ] = ACTIONS(1352), + [anon_sym_PIPE_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1352), + [anon_sym_LT_LT] = ACTIONS(1350), + [anon_sym_GT_GT] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_STAR_STAR] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1352), + [anon_sym_RBRACK] = ACTIONS(1352), + [anon_sym_EQ_TILDE] = ACTIONS(1350), + [anon_sym_AMP_GT] = ACTIONS(1350), + [anon_sym_AMP_GT_GT] = ACTIONS(1352), + [anon_sym_LT_AMP] = ACTIONS(1350), + [anon_sym_GT_AMP] = ACTIONS(1350), + [anon_sym_GT_PIPE] = ACTIONS(1352), + [anon_sym_LT_AMP_DASH] = ACTIONS(1352), + [anon_sym_GT_AMP_DASH] = ACTIONS(1352), + [anon_sym_LT_LT_DASH] = ACTIONS(1352), + [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1352), + [aux_sym_concatenation_token1] = ACTIONS(1352), + [anon_sym_DOLLAR] = ACTIONS(1350), + [sym__special_character] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_raw_string] = ACTIONS(1352), + [sym_ansi_c_string] = ACTIONS(1352), + [aux_sym_number_token1] = ACTIONS(1350), + [aux_sym_number_token2] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1352), + [anon_sym_LT_LPAREN] = ACTIONS(1352), + [anon_sym_GT_LPAREN] = ACTIONS(1352), [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), + [sym_file_descriptor] = ACTIONS(1352), + [sym__concat] = ACTIONS(1352), + [sym_test_operator] = ACTIONS(1352), + [sym__bare_dollar] = ACTIONS(1352), + [sym__brace_start] = ACTIONS(1352), }, - [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), + [STATE(534)] = { + [sym_word] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_EQ] = ACTIONS(1346), + [anon_sym_DASH_EQ] = ACTIONS(1346), + [anon_sym_STAR_EQ] = ACTIONS(1346), + [anon_sym_SLASH_EQ] = ACTIONS(1346), + [anon_sym_PERCENT_EQ] = ACTIONS(1346), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1346), + [anon_sym_LT_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_GT_EQ] = ACTIONS(1348), + [anon_sym_AMP_EQ] = ACTIONS(1348), + [anon_sym_CARET_EQ] = ACTIONS(1346), + [anon_sym_PIPE_EQ] = ACTIONS(1348), + [anon_sym_PIPE_PIPE] = ACTIONS(1348), + [anon_sym_AMP_AMP] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_CARET] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_EQ_EQ] = ACTIONS(1346), + [anon_sym_BANG_EQ] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_GT] = ACTIONS(1346), + [anon_sym_LT_EQ] = ACTIONS(1348), + [anon_sym_GT_EQ] = ACTIONS(1348), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_GT_GT] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym_PERCENT] = ACTIONS(1346), + [anon_sym_STAR_STAR] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_EQ_TILDE] = ACTIONS(1346), + [anon_sym_AMP_GT] = ACTIONS(1346), + [anon_sym_AMP_GT_GT] = ACTIONS(1348), + [anon_sym_LT_AMP] = ACTIONS(1346), + [anon_sym_GT_AMP] = ACTIONS(1346), + [anon_sym_GT_PIPE] = ACTIONS(1348), + [anon_sym_LT_AMP_DASH] = ACTIONS(1348), + [anon_sym_GT_AMP_DASH] = ACTIONS(1348), + [anon_sym_LT_LT_DASH] = ACTIONS(1348), + [anon_sym_LT_LT_LT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1348), + [aux_sym_concatenation_token1] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1346), + [sym__special_character] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_raw_string] = ACTIONS(1348), + [sym_ansi_c_string] = ACTIONS(1348), + [aux_sym_number_token1] = ACTIONS(1346), + [aux_sym_number_token2] = ACTIONS(1346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1346), + [anon_sym_BQUOTE] = ACTIONS(1346), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1348), + [anon_sym_LT_LPAREN] = ACTIONS(1348), + [anon_sym_GT_LPAREN] = ACTIONS(1348), [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), + [sym_file_descriptor] = ACTIONS(1348), + [sym__concat] = ACTIONS(1348), + [sym_test_operator] = ACTIONS(1348), + [sym__bare_dollar] = ACTIONS(1348), + [sym__brace_start] = ACTIONS(1348), }, - [STATE(509)] = { - [sym_word] = ACTIONS(1260), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1260), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1260), - [anon_sym_LT_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP_EQ] = ACTIONS(1262), - [anon_sym_CARET_EQ] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_STAR] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_PIPE_AMP] = ACTIONS(1262), - [anon_sym_RBRACK] = ACTIONS(1262), - [anon_sym_EQ_TILDE] = ACTIONS(1260), - [anon_sym_AMP_GT] = ACTIONS(1260), - [anon_sym_AMP_GT_GT] = ACTIONS(1262), - [anon_sym_LT_AMP] = ACTIONS(1260), - [anon_sym_GT_AMP] = ACTIONS(1260), - [anon_sym_GT_PIPE] = ACTIONS(1262), - [anon_sym_LT_AMP_DASH] = ACTIONS(1262), - [anon_sym_GT_AMP_DASH] = ACTIONS(1262), - [anon_sym_LT_LT_DASH] = ACTIONS(1262), - [anon_sym_LT_LT_LT] = ACTIONS(1262), - [anon_sym_QMARK] = ACTIONS(1260), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1262), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1262), - [aux_sym_concatenation_token1] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1260), - [sym__special_character] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_raw_string] = ACTIONS(1262), - [sym_ansi_c_string] = ACTIONS(1262), - [aux_sym_number_token1] = ACTIONS(1260), - [aux_sym_number_token2] = ACTIONS(1260), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1260), - [anon_sym_BQUOTE] = ACTIONS(1260), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1262), - [anon_sym_LT_LPAREN] = ACTIONS(1262), - [anon_sym_GT_LPAREN] = ACTIONS(1262), + [STATE(535)] = { + [sym_word] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_EQ] = ACTIONS(1362), + [anon_sym_DASH_EQ] = ACTIONS(1362), + [anon_sym_STAR_EQ] = ACTIONS(1362), + [anon_sym_SLASH_EQ] = ACTIONS(1362), + [anon_sym_PERCENT_EQ] = ACTIONS(1362), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1362), + [anon_sym_LT_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_EQ] = ACTIONS(1364), + [anon_sym_CARET_EQ] = ACTIONS(1362), + [anon_sym_PIPE_EQ] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_EQ_EQ] = ACTIONS(1362), + [anon_sym_BANG_EQ] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1362), + [anon_sym_GT_GT] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_STAR_STAR] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_EQ_TILDE] = ACTIONS(1362), + [anon_sym_AMP_GT] = ACTIONS(1362), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1362), + [anon_sym_GT_AMP] = ACTIONS(1362), + [anon_sym_GT_PIPE] = ACTIONS(1364), + [anon_sym_LT_AMP_DASH] = ACTIONS(1364), + [anon_sym_GT_AMP_DASH] = ACTIONS(1364), + [anon_sym_LT_LT_DASH] = ACTIONS(1364), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1364), + [aux_sym_concatenation_token1] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1362), + [sym__special_character] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_raw_string] = ACTIONS(1364), + [sym_ansi_c_string] = ACTIONS(1364), + [aux_sym_number_token1] = ACTIONS(1362), + [aux_sym_number_token2] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1262), - [sym__concat] = ACTIONS(1262), - [sym_test_operator] = ACTIONS(1262), - [sym__bare_dollar] = ACTIONS(1262), - [sym__brace_start] = ACTIONS(1262), + [sym_file_descriptor] = ACTIONS(1364), + [sym__concat] = ACTIONS(1364), + [sym_test_operator] = ACTIONS(1364), + [sym__bare_dollar] = ACTIONS(1364), + [sym__brace_start] = ACTIONS(1364), }, - [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(536)] = { + [sym_word] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), + [anon_sym_STAR_EQ] = ACTIONS(1314), + [anon_sym_SLASH_EQ] = ACTIONS(1314), + [anon_sym_PERCENT_EQ] = ACTIONS(1314), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1314), + [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(1314), + [anon_sym_PIPE_EQ] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_CARET] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(1314), + [anon_sym_PERCENT] = ACTIONS(1314), + [anon_sym_STAR_STAR] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_PIPE_AMP] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1316), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [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), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_QMARK] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1316), + [aux_sym_concatenation_token1] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1314), + [sym__special_character] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_raw_string] = ACTIONS(1316), + [sym_ansi_c_string] = ACTIONS(1316), + [aux_sym_number_token1] = ACTIONS(1314), + [aux_sym_number_token2] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), + [anon_sym_LT_LPAREN] = ACTIONS(1316), + [anon_sym_GT_LPAREN] = ACTIONS(1316), [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(1316), + [sym__concat] = ACTIONS(1316), + [sym_test_operator] = ACTIONS(1316), + [sym__bare_dollar] = ACTIONS(1316), + [sym__brace_start] = ACTIONS(1316), }, - [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(537)] = { + [sym_word] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_GT_EQ] = ACTIONS(1263), + [anon_sym_AMP_EQ] = ACTIONS(1263), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1263), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_GT] = ACTIONS(1261), + [anon_sym_AMP_GT_GT] = ACTIONS(1263), + [anon_sym_LT_AMP] = ACTIONS(1261), + [anon_sym_GT_AMP] = ACTIONS(1261), + [anon_sym_GT_PIPE] = ACTIONS(1263), + [anon_sym_LT_AMP_DASH] = ACTIONS(1263), + [anon_sym_GT_AMP_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_DASH] = ACTIONS(1263), + [anon_sym_LT_LT_LT] = ACTIONS(1263), + [anon_sym_QMARK] = ACTIONS(1261), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1263), + [aux_sym_concatenation_token1] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1261), + [sym__special_character] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [sym_raw_string] = ACTIONS(1263), + [sym_ansi_c_string] = ACTIONS(1263), + [aux_sym_number_token1] = ACTIONS(1261), + [aux_sym_number_token2] = ACTIONS(1261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), + [anon_sym_LT_LPAREN] = ACTIONS(1263), + [anon_sym_GT_LPAREN] = ACTIONS(1263), [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(1263), + [sym__concat] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [STATE(512)] = { - [sym_word] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_GT_EQ] = ACTIONS(1270), - [anon_sym_AMP_EQ] = ACTIONS(1270), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1270), - [anon_sym_PIPE_AMP] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1270), - [anon_sym_EQ_TILDE] = ACTIONS(1268), - [anon_sym_AMP_GT] = ACTIONS(1268), - [anon_sym_AMP_GT_GT] = ACTIONS(1270), - [anon_sym_LT_AMP] = ACTIONS(1268), - [anon_sym_GT_AMP] = ACTIONS(1268), - [anon_sym_GT_PIPE] = ACTIONS(1270), - [anon_sym_LT_AMP_DASH] = ACTIONS(1270), - [anon_sym_GT_AMP_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_DASH] = ACTIONS(1270), - [anon_sym_LT_LT_LT] = ACTIONS(1270), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1270), - [aux_sym_concatenation_token1] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [sym__special_character] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_raw_string] = ACTIONS(1270), - [sym_ansi_c_string] = ACTIONS(1270), - [aux_sym_number_token1] = ACTIONS(1268), - [aux_sym_number_token2] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1268), - [anon_sym_BQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1270), - [anon_sym_LT_LPAREN] = ACTIONS(1270), - [anon_sym_GT_LPAREN] = ACTIONS(1270), + [STATE(538)] = { + [sym_word] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_EQ] = ACTIONS(1310), + [anon_sym_DASH_EQ] = ACTIONS(1310), + [anon_sym_STAR_EQ] = ACTIONS(1310), + [anon_sym_SLASH_EQ] = ACTIONS(1310), + [anon_sym_PERCENT_EQ] = ACTIONS(1310), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1310), + [anon_sym_LT_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_GT_EQ] = ACTIONS(1312), + [anon_sym_AMP_EQ] = ACTIONS(1312), + [anon_sym_CARET_EQ] = ACTIONS(1310), + [anon_sym_PIPE_EQ] = ACTIONS(1312), + [anon_sym_PIPE_PIPE] = ACTIONS(1312), + [anon_sym_AMP_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_CARET] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_EQ_EQ] = ACTIONS(1310), + [anon_sym_BANG_EQ] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_GT] = ACTIONS(1310), + [anon_sym_LT_EQ] = ACTIONS(1312), + [anon_sym_GT_EQ] = ACTIONS(1312), + [anon_sym_LT_LT] = ACTIONS(1310), + [anon_sym_GT_GT] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1310), + [anon_sym_PERCENT] = ACTIONS(1310), + [anon_sym_STAR_STAR] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_PIPE_AMP] = ACTIONS(1312), + [anon_sym_RBRACK] = ACTIONS(1312), + [anon_sym_EQ_TILDE] = ACTIONS(1310), + [anon_sym_AMP_GT] = ACTIONS(1310), + [anon_sym_AMP_GT_GT] = ACTIONS(1312), + [anon_sym_LT_AMP] = ACTIONS(1310), + [anon_sym_GT_AMP] = ACTIONS(1310), + [anon_sym_GT_PIPE] = ACTIONS(1312), + [anon_sym_LT_AMP_DASH] = ACTIONS(1312), + [anon_sym_GT_AMP_DASH] = ACTIONS(1312), + [anon_sym_LT_LT_DASH] = ACTIONS(1312), + [anon_sym_LT_LT_LT] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1312), + [aux_sym_concatenation_token1] = ACTIONS(1312), + [anon_sym_DOLLAR] = ACTIONS(1310), + [sym__special_character] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_raw_string] = ACTIONS(1312), + [sym_ansi_c_string] = ACTIONS(1312), + [aux_sym_number_token1] = ACTIONS(1310), + [aux_sym_number_token2] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1310), + [anon_sym_BQUOTE] = ACTIONS(1310), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), + [anon_sym_LT_LPAREN] = ACTIONS(1312), + [anon_sym_GT_LPAREN] = ACTIONS(1312), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1270), - [sym__concat] = ACTIONS(1270), - [sym_test_operator] = ACTIONS(1270), - [sym__bare_dollar] = ACTIONS(1270), - [sym__brace_start] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(1312), + [sym__concat] = ACTIONS(1312), + [sym_test_operator] = ACTIONS(1312), + [sym__bare_dollar] = ACTIONS(1312), + [sym__brace_start] = ACTIONS(1312), }, - [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(539)] = { + [sym_word] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_EQ] = ACTIONS(1302), + [anon_sym_DASH_EQ] = ACTIONS(1302), + [anon_sym_STAR_EQ] = ACTIONS(1302), + [anon_sym_SLASH_EQ] = ACTIONS(1302), + [anon_sym_PERCENT_EQ] = ACTIONS(1302), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1302), + [anon_sym_LT_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_EQ] = ACTIONS(1304), + [anon_sym_CARET_EQ] = ACTIONS(1302), + [anon_sym_PIPE_EQ] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_CARET] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_EQ_EQ] = ACTIONS(1302), + [anon_sym_BANG_EQ] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_GT] = ACTIONS(1302), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1302), + [anon_sym_GT_GT] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_SLASH] = ACTIONS(1302), + [anon_sym_PERCENT] = ACTIONS(1302), + [anon_sym_STAR_STAR] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_RBRACK] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1302), + [anon_sym_AMP_GT] = ACTIONS(1302), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1302), + [anon_sym_GT_AMP] = ACTIONS(1302), + [anon_sym_GT_PIPE] = ACTIONS(1304), + [anon_sym_LT_AMP_DASH] = ACTIONS(1304), + [anon_sym_GT_AMP_DASH] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1304), + [aux_sym_concatenation_token1] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1302), + [sym__special_character] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_raw_string] = ACTIONS(1304), + [sym_ansi_c_string] = ACTIONS(1304), + [aux_sym_number_token1] = ACTIONS(1302), + [aux_sym_number_token2] = ACTIONS(1302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1302), + [anon_sym_BQUOTE] = ACTIONS(1302), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), [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(1304), + [sym__concat] = ACTIONS(1304), + [sym_test_operator] = ACTIONS(1304), + [sym__bare_dollar] = ACTIONS(1304), + [sym__brace_start] = ACTIONS(1304), }, - [STATE(514)] = { - [sym_word] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_AMP_DASH] = ACTIONS(1274), - [anon_sym_GT_AMP_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), + [STATE(540)] = { + [sym_word] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_EQ] = ACTIONS(1306), + [anon_sym_DASH_EQ] = ACTIONS(1306), + [anon_sym_STAR_EQ] = ACTIONS(1306), + [anon_sym_SLASH_EQ] = ACTIONS(1306), + [anon_sym_PERCENT_EQ] = ACTIONS(1306), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1306), + [anon_sym_LT_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_GT_EQ] = ACTIONS(1308), + [anon_sym_AMP_EQ] = ACTIONS(1308), + [anon_sym_CARET_EQ] = ACTIONS(1306), + [anon_sym_PIPE_EQ] = ACTIONS(1308), + [anon_sym_PIPE_PIPE] = ACTIONS(1308), + [anon_sym_AMP_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_CARET] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_EQ_EQ] = ACTIONS(1306), + [anon_sym_BANG_EQ] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_GT] = ACTIONS(1306), + [anon_sym_LT_EQ] = ACTIONS(1308), + [anon_sym_GT_EQ] = ACTIONS(1308), + [anon_sym_LT_LT] = ACTIONS(1306), + [anon_sym_GT_GT] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_SLASH] = ACTIONS(1306), + [anon_sym_PERCENT] = ACTIONS(1306), + [anon_sym_STAR_STAR] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1308), + [anon_sym_RBRACK] = ACTIONS(1308), + [anon_sym_EQ_TILDE] = ACTIONS(1306), + [anon_sym_AMP_GT] = ACTIONS(1306), + [anon_sym_AMP_GT_GT] = ACTIONS(1308), + [anon_sym_LT_AMP] = ACTIONS(1306), + [anon_sym_GT_AMP] = ACTIONS(1306), + [anon_sym_GT_PIPE] = ACTIONS(1308), + [anon_sym_LT_AMP_DASH] = ACTIONS(1308), + [anon_sym_GT_AMP_DASH] = ACTIONS(1308), + [anon_sym_LT_LT_DASH] = ACTIONS(1308), + [anon_sym_LT_LT_LT] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1308), + [aux_sym_concatenation_token1] = ACTIONS(1308), + [anon_sym_DOLLAR] = ACTIONS(1306), + [sym__special_character] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_raw_string] = ACTIONS(1308), + [sym_ansi_c_string] = ACTIONS(1308), + [aux_sym_number_token1] = ACTIONS(1306), + [aux_sym_number_token2] = ACTIONS(1306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1306), + [anon_sym_BQUOTE] = ACTIONS(1306), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), + [anon_sym_LT_LPAREN] = ACTIONS(1308), + [anon_sym_GT_LPAREN] = ACTIONS(1308), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(1274), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), + [sym_file_descriptor] = ACTIONS(1308), + [sym__concat] = ACTIONS(1308), + [sym_test_operator] = ACTIONS(1308), + [sym__bare_dollar] = ACTIONS(1308), + [sym__brace_start] = ACTIONS(1308), }, - [STATE(515)] = { - [sym_word] = ACTIONS(1276), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1278), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1278), - [anon_sym_LT_AMP_DASH] = ACTIONS(1278), - [anon_sym_GT_AMP_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1278), - [aux_sym_concatenation_token1] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_raw_string] = ACTIONS(1278), - [sym_ansi_c_string] = ACTIONS(1278), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), - [anon_sym_LT_LPAREN] = ACTIONS(1278), - [anon_sym_GT_LPAREN] = ACTIONS(1278), + [STATE(541)] = { + [sym_word] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_EQ] = ACTIONS(1322), + [anon_sym_DASH_EQ] = ACTIONS(1322), + [anon_sym_STAR_EQ] = ACTIONS(1322), + [anon_sym_SLASH_EQ] = ACTIONS(1322), + [anon_sym_PERCENT_EQ] = ACTIONS(1322), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1322), + [anon_sym_LT_LT_EQ] = ACTIONS(1324), + [anon_sym_GT_GT_EQ] = ACTIONS(1324), + [anon_sym_AMP_EQ] = ACTIONS(1324), + [anon_sym_CARET_EQ] = ACTIONS(1322), + [anon_sym_PIPE_EQ] = ACTIONS(1324), + [anon_sym_PIPE_PIPE] = ACTIONS(1324), + [anon_sym_AMP_AMP] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_EQ_EQ] = ACTIONS(1322), + [anon_sym_BANG_EQ] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_LT_EQ] = ACTIONS(1324), + [anon_sym_GT_EQ] = ACTIONS(1324), + [anon_sym_LT_LT] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_STAR_STAR] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_PIPE_AMP] = ACTIONS(1324), + [anon_sym_RBRACK] = ACTIONS(1324), + [anon_sym_EQ_TILDE] = ACTIONS(1322), + [anon_sym_AMP_GT] = ACTIONS(1322), + [anon_sym_AMP_GT_GT] = ACTIONS(1324), + [anon_sym_LT_AMP] = ACTIONS(1322), + [anon_sym_GT_AMP] = ACTIONS(1322), + [anon_sym_GT_PIPE] = ACTIONS(1324), + [anon_sym_LT_AMP_DASH] = ACTIONS(1324), + [anon_sym_GT_AMP_DASH] = ACTIONS(1324), + [anon_sym_LT_LT_DASH] = ACTIONS(1324), + [anon_sym_LT_LT_LT] = ACTIONS(1324), + [anon_sym_QMARK] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1324), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1324), + [aux_sym_concatenation_token1] = ACTIONS(1324), + [anon_sym_DOLLAR] = ACTIONS(1322), + [sym__special_character] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_raw_string] = ACTIONS(1324), + [sym_ansi_c_string] = ACTIONS(1324), + [aux_sym_number_token1] = ACTIONS(1322), + [aux_sym_number_token2] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1322), + [anon_sym_BQUOTE] = ACTIONS(1322), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1324), + [anon_sym_LT_LPAREN] = ACTIONS(1324), + [anon_sym_GT_LPAREN] = ACTIONS(1324), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), + [sym_file_descriptor] = ACTIONS(1324), + [sym__concat] = ACTIONS(1324), + [sym_test_operator] = ACTIONS(1324), + [sym__bare_dollar] = ACTIONS(1324), + [sym__brace_start] = ACTIONS(1324), }, - [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), + [STATE(542)] = { + [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), + [aux_sym_concatenation_token1] = ACTIONS(1320), + [anon_sym_DOLLAR] = ACTIONS(1318), + [sym__special_character] = 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(1318), + [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(1254), - [sym__concat] = ACTIONS(1254), - [sym_test_operator] = ACTIONS(1254), - [sym__bare_dollar] = ACTIONS(1254), - [sym__brace_start] = ACTIONS(1254), + [sym_file_descriptor] = ACTIONS(1320), + [sym__concat] = ACTIONS(1320), + [sym_test_operator] = ACTIONS(1320), + [sym__bare_dollar] = ACTIONS(1320), + [sym__brace_start] = ACTIONS(1320), }, - [STATE(517)] = { - [aux_sym__literal_repeat1] = STATE(518), + [STATE(543)] = { + [sym_word] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1358), + [anon_sym_DASH_EQ] = ACTIONS(1358), + [anon_sym_STAR_EQ] = ACTIONS(1358), + [anon_sym_SLASH_EQ] = ACTIONS(1358), + [anon_sym_PERCENT_EQ] = ACTIONS(1358), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1358), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1358), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_EQ_EQ] = ACTIONS(1358), + [anon_sym_BANG_EQ] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_STAR_STAR] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_PIPE_AMP] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_EQ_TILDE] = ACTIONS(1358), + [anon_sym_AMP_GT] = ACTIONS(1358), + [anon_sym_AMP_GT_GT] = ACTIONS(1360), + [anon_sym_LT_AMP] = ACTIONS(1358), + [anon_sym_GT_AMP] = ACTIONS(1358), + [anon_sym_GT_PIPE] = ACTIONS(1360), + [anon_sym_LT_AMP_DASH] = ACTIONS(1360), + [anon_sym_GT_AMP_DASH] = ACTIONS(1360), + [anon_sym_LT_LT_DASH] = ACTIONS(1360), + [anon_sym_LT_LT_LT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1360), + [aux_sym_concatenation_token1] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1358), + [sym__special_character] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_raw_string] = ACTIONS(1360), + [sym_ansi_c_string] = ACTIONS(1360), + [aux_sym_number_token1] = ACTIONS(1358), + [aux_sym_number_token2] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1360), + [anon_sym_LT_LPAREN] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1360), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1360), + [sym__concat] = ACTIONS(1360), + [sym_test_operator] = ACTIONS(1360), + [sym__bare_dollar] = ACTIONS(1360), + [sym__brace_start] = ACTIONS(1360), + }, + [STATE(544)] = { + [sym_word] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_STAR_EQ] = ACTIONS(1354), + [anon_sym_SLASH_EQ] = ACTIONS(1354), + [anon_sym_PERCENT_EQ] = ACTIONS(1354), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1354), + [anon_sym_LT_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_GT_EQ] = ACTIONS(1356), + [anon_sym_AMP_EQ] = ACTIONS(1356), + [anon_sym_CARET_EQ] = ACTIONS(1354), + [anon_sym_PIPE_EQ] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1354), + [anon_sym_GT_GT] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_STAR_STAR] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1354), + [anon_sym_AMP_GT] = ACTIONS(1354), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1354), + [anon_sym_GT_AMP] = ACTIONS(1354), + [anon_sym_GT_PIPE] = ACTIONS(1356), + [anon_sym_LT_AMP_DASH] = ACTIONS(1356), + [anon_sym_GT_AMP_DASH] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1356), + [aux_sym_concatenation_token1] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1354), + [sym__special_character] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [sym_ansi_c_string] = ACTIONS(1356), + [aux_sym_number_token1] = ACTIONS(1354), + [aux_sym_number_token2] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1356), + [sym__concat] = ACTIONS(1356), + [sym_test_operator] = ACTIONS(1356), + [sym__bare_dollar] = ACTIONS(1356), + [sym__brace_start] = ACTIONS(1356), + }, + [STATE(545)] = { + [sym_word] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_EQ] = ACTIONS(1326), + [anon_sym_DASH_EQ] = ACTIONS(1326), + [anon_sym_STAR_EQ] = ACTIONS(1326), + [anon_sym_SLASH_EQ] = ACTIONS(1326), + [anon_sym_PERCENT_EQ] = ACTIONS(1326), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1326), + [anon_sym_LT_LT_EQ] = ACTIONS(1328), + [anon_sym_GT_GT_EQ] = ACTIONS(1328), + [anon_sym_AMP_EQ] = ACTIONS(1328), + [anon_sym_CARET_EQ] = ACTIONS(1326), + [anon_sym_PIPE_EQ] = ACTIONS(1328), + [anon_sym_PIPE_PIPE] = ACTIONS(1328), + [anon_sym_AMP_AMP] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_CARET] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_EQ_EQ] = ACTIONS(1326), + [anon_sym_BANG_EQ] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_GT] = ACTIONS(1326), + [anon_sym_LT_EQ] = ACTIONS(1328), + [anon_sym_GT_EQ] = ACTIONS(1328), + [anon_sym_LT_LT] = ACTIONS(1326), + [anon_sym_GT_GT] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_SLASH] = ACTIONS(1326), + [anon_sym_PERCENT] = ACTIONS(1326), + [anon_sym_STAR_STAR] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_PIPE_AMP] = ACTIONS(1328), + [anon_sym_RBRACK] = ACTIONS(1328), + [anon_sym_EQ_TILDE] = ACTIONS(1326), + [anon_sym_AMP_GT] = ACTIONS(1326), + [anon_sym_AMP_GT_GT] = ACTIONS(1328), + [anon_sym_LT_AMP] = ACTIONS(1326), + [anon_sym_GT_AMP] = ACTIONS(1326), + [anon_sym_GT_PIPE] = ACTIONS(1328), + [anon_sym_LT_AMP_DASH] = ACTIONS(1328), + [anon_sym_GT_AMP_DASH] = ACTIONS(1328), + [anon_sym_LT_LT_DASH] = ACTIONS(1328), + [anon_sym_LT_LT_LT] = ACTIONS(1328), + [anon_sym_QMARK] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1328), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1328), + [aux_sym_concatenation_token1] = ACTIONS(1328), + [anon_sym_DOLLAR] = ACTIONS(1326), + [sym__special_character] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_raw_string] = ACTIONS(1328), + [sym_ansi_c_string] = ACTIONS(1328), + [aux_sym_number_token1] = ACTIONS(1326), + [aux_sym_number_token2] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1326), + [anon_sym_BQUOTE] = ACTIONS(1326), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1328), + [anon_sym_LT_LPAREN] = ACTIONS(1328), + [anon_sym_GT_LPAREN] = ACTIONS(1328), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1328), + [sym__concat] = ACTIONS(1328), + [sym_test_operator] = ACTIONS(1328), + [sym__bare_dollar] = ACTIONS(1328), + [sym__brace_start] = ACTIONS(1328), + }, + [STATE(546)] = { + [sym_word] = ACTIONS(1330), + [anon_sym_EQ] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_EQ] = ACTIONS(1330), + [anon_sym_DASH_EQ] = ACTIONS(1330), + [anon_sym_STAR_EQ] = ACTIONS(1330), + [anon_sym_SLASH_EQ] = ACTIONS(1330), + [anon_sym_PERCENT_EQ] = ACTIONS(1330), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1330), + [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(1330), + [anon_sym_PIPE_EQ] = ACTIONS(1332), + [anon_sym_PIPE_PIPE] = ACTIONS(1332), + [anon_sym_AMP_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_CARET] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_EQ_EQ] = ACTIONS(1330), + [anon_sym_BANG_EQ] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_GT] = ACTIONS(1330), + [anon_sym_LT_EQ] = ACTIONS(1332), + [anon_sym_GT_EQ] = ACTIONS(1332), + [anon_sym_LT_LT] = ACTIONS(1330), + [anon_sym_GT_GT] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_SLASH] = ACTIONS(1330), + [anon_sym_PERCENT] = ACTIONS(1330), + [anon_sym_STAR_STAR] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(1332), + [anon_sym_RBRACK] = ACTIONS(1332), + [anon_sym_EQ_TILDE] = ACTIONS(1330), + [anon_sym_AMP_GT] = ACTIONS(1330), + [anon_sym_AMP_GT_GT] = ACTIONS(1332), + [anon_sym_LT_AMP] = ACTIONS(1330), + [anon_sym_GT_AMP] = ACTIONS(1330), + [anon_sym_GT_PIPE] = ACTIONS(1332), + [anon_sym_LT_AMP_DASH] = ACTIONS(1332), + [anon_sym_GT_AMP_DASH] = ACTIONS(1332), + [anon_sym_LT_LT_DASH] = ACTIONS(1332), + [anon_sym_LT_LT_LT] = ACTIONS(1332), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1332), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1332), + [aux_sym_concatenation_token1] = ACTIONS(1332), + [anon_sym_DOLLAR] = ACTIONS(1330), + [sym__special_character] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_raw_string] = ACTIONS(1332), + [sym_ansi_c_string] = ACTIONS(1332), + [aux_sym_number_token1] = ACTIONS(1330), + [aux_sym_number_token2] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1330), + [anon_sym_BQUOTE] = ACTIONS(1330), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1332), + [anon_sym_LT_LPAREN] = ACTIONS(1332), + [anon_sym_GT_LPAREN] = ACTIONS(1332), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1332), + [sym__concat] = ACTIONS(1332), + [sym_test_operator] = ACTIONS(1332), + [sym__bare_dollar] = ACTIONS(1332), + [sym__brace_start] = ACTIONS(1332), + }, + [STATE(547)] = { + [sym_word] = ACTIONS(1334), + [anon_sym_EQ] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_EQ] = ACTIONS(1334), + [anon_sym_DASH_EQ] = ACTIONS(1334), + [anon_sym_STAR_EQ] = ACTIONS(1334), + [anon_sym_SLASH_EQ] = ACTIONS(1334), + [anon_sym_PERCENT_EQ] = ACTIONS(1334), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1334), + [anon_sym_LT_LT_EQ] = ACTIONS(1336), + [anon_sym_GT_GT_EQ] = ACTIONS(1336), + [anon_sym_AMP_EQ] = ACTIONS(1336), + [anon_sym_CARET_EQ] = ACTIONS(1334), + [anon_sym_PIPE_EQ] = ACTIONS(1336), + [anon_sym_PIPE_PIPE] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1334), + [anon_sym_CARET] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_EQ_EQ] = ACTIONS(1334), + [anon_sym_BANG_EQ] = ACTIONS(1334), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_GT] = ACTIONS(1334), + [anon_sym_LT_EQ] = ACTIONS(1336), + [anon_sym_GT_EQ] = ACTIONS(1336), + [anon_sym_LT_LT] = ACTIONS(1334), + [anon_sym_GT_GT] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1334), + [anon_sym_PERCENT] = ACTIONS(1334), + [anon_sym_STAR_STAR] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1336), + [anon_sym_RBRACK] = ACTIONS(1336), + [anon_sym_EQ_TILDE] = ACTIONS(1334), + [anon_sym_AMP_GT] = ACTIONS(1334), + [anon_sym_AMP_GT_GT] = ACTIONS(1336), + [anon_sym_LT_AMP] = ACTIONS(1334), + [anon_sym_GT_AMP] = ACTIONS(1334), + [anon_sym_GT_PIPE] = ACTIONS(1336), + [anon_sym_LT_AMP_DASH] = ACTIONS(1336), + [anon_sym_GT_AMP_DASH] = ACTIONS(1336), + [anon_sym_LT_LT_DASH] = ACTIONS(1336), + [anon_sym_LT_LT_LT] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1336), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1336), + [aux_sym_concatenation_token1] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1334), + [sym__special_character] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_raw_string] = ACTIONS(1336), + [sym_ansi_c_string] = ACTIONS(1336), + [aux_sym_number_token1] = ACTIONS(1334), + [aux_sym_number_token2] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1334), + [anon_sym_BQUOTE] = ACTIONS(1334), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1336), + [anon_sym_LT_LPAREN] = ACTIONS(1336), + [anon_sym_GT_LPAREN] = ACTIONS(1336), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1336), + [sym__concat] = ACTIONS(1336), + [sym_test_operator] = ACTIONS(1336), + [sym__bare_dollar] = ACTIONS(1336), + [sym__brace_start] = ACTIONS(1336), + }, + [STATE(548)] = { + [aux_sym__literal_repeat1] = STATE(549), [sym_word] = ACTIONS(237), [anon_sym_EQ] = ACTIONS(239), [anon_sym_PLUS_PLUS] = ACTIONS(239), @@ -75409,13 +80316,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(504), + [anon_sym_GT_GT_EQ] = ACTIONS(504), + [anon_sym_AMP_EQ] = ACTIONS(504), [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(504), + [anon_sym_PIPE_PIPE] = ACTIONS(506), + [anon_sym_AMP_AMP] = ACTIONS(506), [anon_sym_PIPE] = ACTIONS(241), [anon_sym_CARET] = ACTIONS(239), [anon_sym_AMP] = ACTIONS(239), @@ -75423,8 +80330,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(504), + [anon_sym_GT_EQ] = ACTIONS(504), [anon_sym_LT_LT] = ACTIONS(241), [anon_sym_GT_GT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(239), @@ -75435,7 +80342,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(504), [anon_sym_EQ_TILDE] = ACTIONS(241), [anon_sym_AMP_GT] = ACTIONS(237), [anon_sym_AMP_GT_GT] = ACTIONS(276), @@ -75450,7 +80357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(276), [anon_sym_DOLLAR_LBRACK] = ACTIONS(276), [anon_sym_DOLLAR] = ACTIONS(237), - [sym__special_character] = ACTIONS(1337), + [sym__special_character] = ACTIONS(1391), [anon_sym_DQUOTE] = ACTIONS(276), [sym_raw_string] = ACTIONS(276), [sym_ansi_c_string] = ACTIONS(276), @@ -75464,333 +80371,264 @@ 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(506), [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__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), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1318), - [sym_test_operator] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), - }, - [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), + [STATE(549)] = { + [aux_sym__literal_repeat1] = STATE(549), + [sym_word] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_EQ] = ACTIONS(1370), + [anon_sym_DASH_EQ] = ACTIONS(1370), + [anon_sym_STAR_EQ] = ACTIONS(1370), + [anon_sym_SLASH_EQ] = ACTIONS(1370), + [anon_sym_PERCENT_EQ] = ACTIONS(1370), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1370), + [anon_sym_LT_LT_EQ] = ACTIONS(1372), + [anon_sym_GT_GT_EQ] = ACTIONS(1372), + [anon_sym_AMP_EQ] = ACTIONS(1372), + [anon_sym_CARET_EQ] = ACTIONS(1370), + [anon_sym_PIPE_EQ] = ACTIONS(1372), + [anon_sym_PIPE_PIPE] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_CARET] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_EQ_EQ] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1370), + [anon_sym_LT_EQ] = ACTIONS(1372), + [anon_sym_GT_EQ] = ACTIONS(1372), + [anon_sym_LT_LT] = ACTIONS(1370), + [anon_sym_GT_GT] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1370), + [anon_sym_PERCENT] = ACTIONS(1370), + [anon_sym_STAR_STAR] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_PIPE_AMP] = ACTIONS(1372), + [anon_sym_RBRACK] = ACTIONS(1372), + [anon_sym_EQ_TILDE] = ACTIONS(1370), + [anon_sym_AMP_GT] = ACTIONS(1370), + [anon_sym_AMP_GT_GT] = ACTIONS(1372), + [anon_sym_LT_AMP] = ACTIONS(1370), + [anon_sym_GT_AMP] = ACTIONS(1370), + [anon_sym_GT_PIPE] = ACTIONS(1372), + [anon_sym_LT_AMP_DASH] = ACTIONS(1372), + [anon_sym_GT_AMP_DASH] = ACTIONS(1372), + [anon_sym_LT_LT_DASH] = ACTIONS(1372), + [anon_sym_LT_LT_LT] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1372), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1370), + [sym__special_character] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_raw_string] = ACTIONS(1372), + [sym_ansi_c_string] = ACTIONS(1372), + [aux_sym_number_token1] = ACTIONS(1370), + [aux_sym_number_token2] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1370), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), [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(1372), + [sym_test_operator] = ACTIONS(1372), + [sym__bare_dollar] = ACTIONS(1372), + [sym__brace_start] = ACTIONS(1372), }, - [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), + [STATE(550)] = { + [sym_word] = ACTIONS(1287), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_GT_EQ] = ACTIONS(1379), + [anon_sym_AMP_EQ] = ACTIONS(1379), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_AMP] = ACTIONS(1289), + [anon_sym_EQ_EQ] = ACTIONS(1291), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_STAR_STAR] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(1379), + [anon_sym_EQ_TILDE] = ACTIONS(1291), + [anon_sym_AMP_GT] = ACTIONS(1287), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1287), + [anon_sym_GT_AMP] = ACTIONS(1287), + [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(1289), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1287), + [sym__special_character] = ACTIONS(1287), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1287), + [aux_sym_number_token2] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1287), + [anon_sym_BQUOTE] = ACTIONS(1294), + [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(1240), - [sym_test_operator] = ACTIONS(1242), - [sym__bare_dollar] = ACTIONS(1240), - [sym__brace_start] = ACTIONS(1240), + [sym_file_descriptor] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), }, - [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_word] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_GT] = ACTIONS(1344), - [anon_sym_GT_GT] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(1344), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1344), - [anon_sym_GT_AMP] = ACTIONS(1344), - [anon_sym_GT_PIPE] = ACTIONS(1346), - [anon_sym_LT_AMP_DASH] = ACTIONS(1350), - [anon_sym_GT_AMP_DASH] = ACTIONS(1350), - [anon_sym_LT_LT_LT] = ACTIONS(1352), - [anon_sym_PLUS_PLUS2] = ACTIONS(101), - [anon_sym_DASH_DASH2] = ACTIONS(101), - [anon_sym_DASH2] = ACTIONS(103), - [anon_sym_PLUS2] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(105), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(107), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [sym__special_character] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(115), - [sym_raw_string] = ACTIONS(117), - [sym_ansi_c_string] = ACTIONS(117), - [aux_sym_number_token1] = ACTIONS(119), - [aux_sym_number_token2] = ACTIONS(121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), - [anon_sym_BQUOTE] = ACTIONS(127), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), - [anon_sym_LT_LPAREN] = ACTIONS(131), - [anon_sym_GT_LPAREN] = ACTIONS(131), + [STATE(551)] = { + [sym_word] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1271), + [anon_sym_DASH_EQ] = ACTIONS(1271), + [anon_sym_STAR_EQ] = ACTIONS(1271), + [anon_sym_SLASH_EQ] = ACTIONS(1271), + [anon_sym_PERCENT_EQ] = ACTIONS(1271), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1271), + [anon_sym_LT_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_GT_EQ] = ACTIONS(1273), + [anon_sym_AMP_EQ] = ACTIONS(1273), + [anon_sym_CARET_EQ] = ACTIONS(1271), + [anon_sym_PIPE_EQ] = ACTIONS(1273), + [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1273), + [anon_sym_GT_EQ] = ACTIONS(1273), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(1273), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1273), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_GT_PIPE] = ACTIONS(1273), + [anon_sym_LT_AMP_DASH] = ACTIONS(1273), + [anon_sym_GT_AMP_DASH] = ACTIONS(1273), + [anon_sym_LT_LT_DASH] = ACTIONS(1273), + [anon_sym_LT_LT_LT] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1273), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1273), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_raw_string] = ACTIONS(1273), + [sym_ansi_c_string] = ACTIONS(1273), + [aux_sym_number_token1] = ACTIONS(1271), + [aux_sym_number_token2] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1273), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1273), + [anon_sym_GT_LPAREN] = ACTIONS(1273), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1354), - [sym_variable_name] = ACTIONS(135), - [sym_test_operator] = ACTIONS(137), - [sym__brace_start] = ACTIONS(139), + [sym_file_descriptor] = ACTIONS(1273), + [sym_test_operator] = ACTIONS(1273), + [sym__bare_dollar] = ACTIONS(1273), + [sym__brace_start] = ACTIONS(1273), }, - [STATE(522)] = { - [sym_subshell] = STATE(5584), - [sym_test_command] = STATE(5584), - [sym_command] = STATE(5567), - [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_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(520), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_command_repeat1] = STATE(880), - [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), + [STATE(552)] = { + [sym_subshell] = STATE(6116), + [sym_test_command] = STATE(6116), + [sym_command] = STATE(6054), + [sym_command_name] = STATE(657), + [sym_variable_assignment] = STATE(3180), + [sym_subscript] = STATE(7261), + [sym_file_redirect] = STATE(3937), + [sym_herestring_redirect] = STATE(3937), + [sym__expression] = STATE(3275), + [sym_binary_expression] = STATE(3317), + [sym_ternary_expression] = STATE(3317), + [sym_unary_expression] = STATE(3317), + [sym_postfix_expression] = STATE(3317), + [sym_parenthesized_expression] = STATE(3317), + [sym_arithmetic_expansion] = STATE(521), + [sym_brace_expression] = STATE(521), + [sym_concatenation] = STATE(550), + [sym_string] = STATE(521), + [sym_translated_string] = STATE(521), + [sym_number] = STATE(521), + [sym_simple_expansion] = STATE(521), + [sym_expansion] = STATE(521), + [sym_command_substitution] = STATE(521), + [sym_process_substitution] = STATE(521), + [aux_sym_command_repeat1] = STATE(1059), + [aux_sym__literal_repeat1] = STATE(548), + [sym_word] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1398), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(511), [anon_sym_LBRACK] = ACTIONS(167), [anon_sym_LBRACK_LBRACK] = ACTIONS(171), - [anon_sym_AMP_GT] = ACTIONS(1344), - [anon_sym_AMP_GT_GT] = ACTIONS(1346), - [anon_sym_LT_AMP] = ACTIONS(1344), - [anon_sym_GT_AMP] = ACTIONS(1344), - [anon_sym_GT_PIPE] = ACTIONS(1346), - [anon_sym_LT_AMP_DASH] = ACTIONS(1350), - [anon_sym_GT_AMP_DASH] = ACTIONS(1350), - [anon_sym_LT_LT_LT] = ACTIONS(1352), + [anon_sym_AMP_GT] = ACTIONS(1398), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1398), + [anon_sym_GT_AMP] = ACTIONS(1398), + [anon_sym_GT_PIPE] = ACTIONS(1400), + [anon_sym_LT_AMP_DASH] = ACTIONS(1404), + [anon_sym_GT_AMP_DASH] = ACTIONS(1404), + [anon_sym_LT_LT_LT] = ACTIONS(1406), [anon_sym_PLUS_PLUS2] = ACTIONS(181), [anon_sym_DASH_DASH2] = ACTIONS(181), [anon_sym_DASH2] = ACTIONS(183), @@ -75812,73 +80650,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(211), [anon_sym_GT_LPAREN] = ACTIONS(211), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1354), + [sym_file_descriptor] = ACTIONS(1408), [sym_variable_name] = ACTIONS(215), [sym_test_operator] = ACTIONS(217), [sym__brace_start] = ACTIONS(219), }, + [STATE(553)] = { + [sym_subshell] = STATE(5026), + [sym_test_command] = STATE(5026), + [sym_command] = STATE(5032), + [sym_command_name] = STATE(564), + [sym_variable_assignment] = STATE(2501), + [sym_subscript] = STATE(7230), + [sym_file_redirect] = STATE(3937), + [sym_herestring_redirect] = STATE(3937), + [sym__expression] = STATE(3338), + [sym_binary_expression] = STATE(2784), + [sym_ternary_expression] = STATE(2784), + [sym_unary_expression] = STATE(2784), + [sym_postfix_expression] = STATE(2784), + [sym_parenthesized_expression] = STATE(2784), + [sym_arithmetic_expansion] = STATE(498), + [sym_brace_expression] = STATE(498), + [sym_concatenation] = STATE(523), + [sym_string] = STATE(498), + [sym_translated_string] = STATE(498), + [sym_number] = STATE(498), + [sym_simple_expansion] = STATE(498), + [sym_expansion] = STATE(498), + [sym_command_substitution] = STATE(498), + [sym_process_substitution] = STATE(498), + [aux_sym_command_repeat1] = STATE(1069), + [aux_sym__literal_repeat1] = STATE(520), + [sym_word] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1398), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(246), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(1398), + [anon_sym_AMP_GT_GT] = ACTIONS(1400), + [anon_sym_LT_AMP] = ACTIONS(1398), + [anon_sym_GT_AMP] = ACTIONS(1398), + [anon_sym_GT_PIPE] = ACTIONS(1400), + [anon_sym_LT_AMP_DASH] = ACTIONS(1404), + [anon_sym_GT_AMP_DASH] = ACTIONS(1404), + [anon_sym_LT_LT_LT] = ACTIONS(1406), + [anon_sym_PLUS_PLUS2] = ACTIONS(101), + [anon_sym_DASH_DASH2] = ACTIONS(101), + [anon_sym_DASH2] = ACTIONS(103), + [anon_sym_PLUS2] = ACTIONS(103), + [anon_sym_TILDE] = ACTIONS(105), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [sym__special_character] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(115), + [sym_raw_string] = ACTIONS(117), + [sym_ansi_c_string] = ACTIONS(117), + [aux_sym_number_token1] = ACTIONS(119), + [aux_sym_number_token2] = ACTIONS(121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(129), + [anon_sym_LT_LPAREN] = ACTIONS(131), + [anon_sym_GT_LPAREN] = ACTIONS(131), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1408), + [sym_variable_name] = ACTIONS(135), + [sym_test_operator] = ACTIONS(137), + [sym__brace_start] = ACTIONS(139), + }, }; 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, + ACTIONS(1422), 1, anon_sym_LT_LT_LT, - ACTIONS(1370), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR, - ACTIONS(1376), 1, + ACTIONS(1430), 1, sym__special_character, - ACTIONS(1378), 1, + ACTIONS(1432), 1, anon_sym_DQUOTE, - ACTIONS(1380), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(1384), 1, + ACTIONS(1438), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, + ACTIONS(1442), 1, anon_sym_BQUOTE, - ACTIONS(1390), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, + ACTIONS(1448), 1, sym_test_operator, - ACTIONS(1396), 1, + ACTIONS(1450), 1, sym__bare_dollar, - ACTIONS(1398), 1, + ACTIONS(1452), 1, sym__brace_start, - STATE(531), 1, + STATE(563), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1164), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1367), 1, sym_concatenation, - STATE(1197), 1, + STATE(1390), 1, sym_herestring_redirect, - STATE(4723), 1, + STATE(5423), 1, sym_subshell, - ACTIONS(1364), 2, + ACTIONS(1418), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1366), 2, + ACTIONS(1420), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1392), 2, + ACTIONS(1446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1360), 3, + ACTIONS(1414), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(931), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -75888,7 +80795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 22, + ACTIONS(1416), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -75914,62 +80821,62 @@ 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, + ACTIONS(1422), 1, anon_sym_LT_LT_LT, - ACTIONS(1370), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR, - ACTIONS(1376), 1, + ACTIONS(1430), 1, sym__special_character, - ACTIONS(1378), 1, + ACTIONS(1432), 1, anon_sym_DQUOTE, - ACTIONS(1380), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(1384), 1, + ACTIONS(1438), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, + ACTIONS(1442), 1, anon_sym_BQUOTE, - ACTIONS(1390), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, + ACTIONS(1448), 1, sym_test_operator, - ACTIONS(1396), 1, + ACTIONS(1450), 1, sym__bare_dollar, - ACTIONS(1398), 1, + ACTIONS(1452), 1, sym__brace_start, - STATE(527), 1, + STATE(561), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1164), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1367), 1, sym_concatenation, - STATE(1197), 1, + STATE(1390), 1, sym_herestring_redirect, - STATE(4837), 1, + STATE(5377), 1, sym_subshell, - ACTIONS(1364), 2, + ACTIONS(1418), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1392), 2, + ACTIONS(1446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1402), 2, + ACTIONS(1456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 3, + ACTIONS(1414), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(931), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -75979,7 +80886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 22, + ACTIONS(1454), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76007,60 +80914,60 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1408), 1, + ACTIONS(1462), 1, anon_sym_LT_LT_LT, - ACTIONS(1410), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1468), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1470), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1472), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1474), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1476), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1478), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1482), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1484), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1488), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1490), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1492), 1, sym__brace_start, - STATE(545), 1, + STATE(568), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1277), 1, aux_sym__literal_repeat1, - STATE(1330), 1, + STATE(1543), 1, sym_concatenation, - STATE(1332), 1, + STATE(1550), 1, sym_herestring_redirect, - STATE(4960), 1, + STATE(5474), 1, sym_subshell, - ACTIONS(1366), 2, + ACTIONS(1456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1406), 2, + ACTIONS(1460), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1432), 2, + ACTIONS(1486), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1404), 3, + ACTIONS(1458), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(1001), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76070,7 +80977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 21, + ACTIONS(1454), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76097,60 +81004,60 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(673), 1, anon_sym_LPAREN, - ACTIONS(1408), 1, + ACTIONS(1462), 1, anon_sym_LT_LT_LT, - ACTIONS(1410), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1468), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1470), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1472), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1474), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1476), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1478), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1482), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1484), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1488), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1490), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1492), 1, sym__brace_start, - STATE(543), 1, + STATE(571), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1277), 1, aux_sym__literal_repeat1, - STATE(1330), 1, + STATE(1543), 1, sym_concatenation, - STATE(1332), 1, + STATE(1550), 1, sym_herestring_redirect, - STATE(5016), 1, + STATE(5497), 1, sym_subshell, - ACTIONS(1402), 2, + ACTIONS(1420), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1406), 2, + ACTIONS(1460), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1432), 2, + ACTIONS(1486), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1404), 3, + ACTIONS(1458), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(1001), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76160,7 +81067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 21, + ACTIONS(1416), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76182,61 +81089,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [474] = 26, + [474] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1368), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1498), 1, anon_sym_LT_LT_LT, - ACTIONS(1370), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1376), 1, + ACTIONS(1506), 1, sym__special_character, - ACTIONS(1378), 1, + ACTIONS(1508), 1, anon_sym_DQUOTE, - ACTIONS(1380), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(1384), 1, + ACTIONS(1514), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, + ACTIONS(1518), 1, anon_sym_BQUOTE, - ACTIONS(1390), 1, + ACTIONS(1520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, + ACTIONS(1524), 1, sym_test_operator, - ACTIONS(1396), 1, + ACTIONS(1526), 1, sym__bare_dollar, - ACTIONS(1398), 1, + ACTIONS(1528), 1, sym__brace_start, - STATE(529), 1, + STATE(581), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1447), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1837), 1, sym_concatenation, - STATE(1197), 1, + STATE(1909), 1, sym_herestring_redirect, - ACTIONS(1364), 2, + STATE(5125), 1, + sym_subshell, + ACTIONS(1496), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1392), 2, + ACTIONS(1522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1442), 2, + ACTIONS(1420), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 3, + ACTIONS(1494), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(1110), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76246,7 +81158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 22, + ACTIONS(1416), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76256,10 +81168,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, @@ -76269,66 +81178,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [587] = 28, + [591] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1448), 1, + ACTIONS(1538), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1540), 1, anon_sym_LT_LT_LT, - ACTIONS(1450), 1, + ACTIONS(1543), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, + ACTIONS(1546), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1549), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1552), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1555), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1558), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1561), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1564), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1567), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1570), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1573), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1579), 1, + sym_file_descriptor, + ACTIONS(1582), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1585), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1588), 1, sym__brace_start, - STATE(552), 1, + STATE(559), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1164), 1, aux_sym__literal_repeat1, - STATE(1606), 1, + STATE(1367), 1, sym_concatenation, - STATE(1607), 1, + STATE(1390), 1, sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1446), 2, + ACTIONS(1535), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1576), 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, + ACTIONS(1530), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + STATE(931), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76338,7 +81243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 19, + ACTIONS(1533), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76348,7 +81253,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, @@ -76358,62 +81266,65 @@ 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, + [706] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1490), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1595), 1, anon_sym_LT_LT_LT, - ACTIONS(1493), 1, + ACTIONS(1597), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1496), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1499), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1502), 1, + ACTIONS(1603), 1, sym__special_character, - ACTIONS(1505), 1, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(1508), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(1511), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(1514), 1, + ACTIONS(1611), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1517), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1520), 1, + ACTIONS(1615), 1, anon_sym_BQUOTE, - ACTIONS(1523), 1, + ACTIONS(1617), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1529), 1, - sym_file_descriptor, - ACTIONS(1532), 1, + ACTIONS(1621), 1, sym_test_operator, - ACTIONS(1535), 1, + ACTIONS(1623), 1, sym__bare_dollar, - ACTIONS(1538), 1, + ACTIONS(1625), 1, sym__brace_start, - STATE(529), 1, + STATE(588), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1486), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1805), 1, sym_concatenation, - STATE(1197), 1, + STATE(1903), 1, sym_herestring_redirect, - ACTIONS(1485), 2, + STATE(5125), 1, + sym_subshell, + ACTIONS(1420), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1593), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1526), 2, + ACTIONS(1619), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1480), 3, + ACTIONS(1591), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76423,7 +81334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 22, + ACTIONS(1416), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76433,10 +81344,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76446,65 +81355,61 @@ 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, + [823] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1422), 1, anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1430), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1432), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1438), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1442), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1448), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1450), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1452), 1, sym__brace_start, - STATE(548), 1, + STATE(559), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1164), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1367), 1, sym_concatenation, - STATE(1654), 1, + STATE(1390), 1, sym_herestring_redirect, - STATE(4702), 1, - sym_subshell, - ACTIONS(1366), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(1418), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1629), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1414), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(931), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76514,7 +81419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 20, + ACTIONS(1627), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76524,8 +81429,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, @@ -76535,61 +81442,66 @@ 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, + [936] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1368), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1498), 1, anon_sym_LT_LT_LT, - ACTIONS(1370), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1372), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1376), 1, + ACTIONS(1506), 1, sym__special_character, - ACTIONS(1378), 1, + ACTIONS(1508), 1, anon_sym_DQUOTE, - ACTIONS(1380), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(1384), 1, + ACTIONS(1514), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1386), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1388), 1, + ACTIONS(1518), 1, anon_sym_BQUOTE, - ACTIONS(1390), 1, + ACTIONS(1520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1394), 1, + ACTIONS(1524), 1, sym_test_operator, - ACTIONS(1396), 1, + ACTIONS(1526), 1, sym__bare_dollar, - ACTIONS(1398), 1, + ACTIONS(1528), 1, sym__brace_start, - STATE(529), 1, + STATE(580), 1, aux_sym_command_repeat2, - STATE(1071), 1, + STATE(1447), 1, aux_sym__literal_repeat1, - STATE(1196), 1, + STATE(1837), 1, sym_concatenation, - STATE(1197), 1, + STATE(1909), 1, sym_herestring_redirect, - ACTIONS(1364), 2, + STATE(4999), 1, + sym_subshell, + ACTIONS(1496), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1392), 2, + ACTIONS(1522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1579), 2, + ACTIONS(1456), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 3, + ACTIONS(1494), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(839), 9, + STATE(1110), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76599,7 +81511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 22, + ACTIONS(1454), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76609,10 +81521,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, @@ -76622,65 +81531,61 @@ 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, + [1053] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1545), 1, + ACTIONS(1422), 1, anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1430), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1432), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1438), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1442), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1448), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1450), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1452), 1, sym__brace_start, - STATE(555), 1, + STATE(559), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1164), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1367), 1, sym_concatenation, - STATE(1654), 1, + STATE(1390), 1, sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(1418), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1446), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1633), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1414), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(931), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76690,7 +81595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 20, + ACTIONS(1631), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76700,8 +81605,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, @@ -76716,61 +81623,60 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1448), 1, + ACTIONS(1639), 1, anon_sym_LT_LT_LT, - ACTIONS(1450), 1, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1647), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1665), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1667), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1669), 1, sym__brace_start, - STATE(553), 1, + STATE(579), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, + STATE(1833), 1, sym_herestring_redirect, - STATE(4702), 1, + STATE(1841), 1, + sym_concatenation, + STATE(5125), 1, sym_subshell, - ACTIONS(1446), 2, + ACTIONS(1420), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1637), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1663), 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(1635), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + STATE(1141), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76780,7 +81686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 19, + ACTIONS(1416), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76790,6 +81696,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, @@ -76800,58 +81707,65 @@ 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, + [1283] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1639), 1, + anon_sym_LT_LT_LT, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1591), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(1647), 1, sym__special_character, - ACTIONS(1595), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1601), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1603), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1611), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1613), 1, - sym_variable_name, - ACTIONS(1615), 1, + ACTIONS(1665), 1, sym_test_operator, - ACTIONS(1617), 1, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, sym__brace_start, - STATE(1427), 1, + STATE(585), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(6651), 1, - sym_subscript, - ACTIONS(1585), 2, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, + sym_concatenation, + STATE(4999), 1, + sym_subshell, + ACTIONS(1456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1609), 2, + ACTIONS(1637), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1581), 3, + ACTIONS(1635), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(539), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1064), 9, + STATE(1141), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76861,7 +81775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 22, + ACTIONS(1454), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76871,10 +81785,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, @@ -76884,62 +81796,65 @@ 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, + [1400] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1625), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1595), 1, anon_sym_LT_LT_LT, - ACTIONS(1628), 1, + ACTIONS(1597), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1631), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1634), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1637), 1, + ACTIONS(1603), 1, sym__special_character, - ACTIONS(1640), 1, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(1643), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(1646), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(1649), 1, + ACTIONS(1611), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1652), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1655), 1, + ACTIONS(1615), 1, anon_sym_BQUOTE, - ACTIONS(1658), 1, + ACTIONS(1617), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1664), 1, - sym_file_descriptor, - ACTIONS(1667), 1, + ACTIONS(1621), 1, sym_test_operator, - ACTIONS(1670), 1, + ACTIONS(1623), 1, sym__bare_dollar, - ACTIONS(1673), 1, + ACTIONS(1625), 1, sym__brace_start, - STATE(535), 1, + STATE(591), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1486), 1, aux_sym__literal_repeat1, - STATE(1330), 1, + STATE(1805), 1, sym_concatenation, - STATE(1332), 1, + STATE(1903), 1, sym_herestring_redirect, - ACTIONS(1622), 2, + STATE(4999), 1, + sym_subshell, + ACTIONS(1456), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1593), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1661), 2, + ACTIONS(1619), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1619), 3, + ACTIONS(1591), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76949,7 +81864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 21, + ACTIONS(1454), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76960,8 +81875,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -76971,24 +81885,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, + [1517] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(1673), 1, anon_sym_DQUOTE, - ACTIONS(1682), 1, + ACTIONS(1677), 1, sym_variable_name, - STATE(857), 1, + STATE(892), 1, sym_string, - ACTIONS(1680), 2, + ACTIONS(1675), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1676), 8, + ACTIONS(1671), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -76997,7 +81911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 41, + ACTIONS(1237), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77039,131 +81953,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1581] = 8, + [1593] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 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, - sym_test_operator, - sym__bare_dollar, - 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, - 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, - aux_sym_heredoc_redirect_token1, + ACTIONS(1462), 1, anon_sym_LT_LT_LT, + ACTIONS(1464), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1466), 1, 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, - 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, + ACTIONS(1468), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1470), 1, + sym__special_character, + ACTIONS(1472), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1474), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1476), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1478), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1482), 1, + anon_sym_BQUOTE, + ACTIONS(1484), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1488), 1, + sym_test_operator, + ACTIONS(1490), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1492), 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(561), 1, + STATE(570), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1277), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1543), 1, sym_concatenation, - STATE(1654), 1, + STATE(1550), 1, sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1686), 2, + ACTIONS(1460), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1486), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1629), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1458), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1001), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77173,7 +82017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 20, + ACTIONS(1627), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77184,6 +82028,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, @@ -77193,59 +82039,58 @@ static 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, + [1705] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1589), 1, + ACTIONS(1687), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1591), 1, + ACTIONS(1689), 1, anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(1691), 1, sym__special_character, - ACTIONS(1595), 1, + ACTIONS(1693), 1, anon_sym_DQUOTE, - ACTIONS(1597), 1, + ACTIONS(1695), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(1697), 1, aux_sym_number_token2, - ACTIONS(1601), 1, + ACTIONS(1699), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1603), 1, + ACTIONS(1701), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1605), 1, + ACTIONS(1703), 1, anon_sym_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1705), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1613), 1, + ACTIONS(1709), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1711), 1, sym_variable_name, - ACTIONS(1615), 1, + ACTIONS(1713), 1, sym_test_operator, - ACTIONS(1617), 1, + ACTIONS(1715), 1, sym__brace_start, - ACTIONS(1698), 1, - aux_sym__simple_variable_name_token1, - STATE(1427), 1, + STATE(1616), 1, aux_sym__literal_repeat1, - STATE(6651), 1, + STATE(7213), 1, sym_subscript, - ACTIONS(1609), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1696), 2, + ACTIONS(1683), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1581), 3, + ACTIONS(1707), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1679), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(541), 3, + STATE(576), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1064), 9, + STATE(1094), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77255,7 +82100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 22, + ACTIONS(1681), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77278,63 +82123,62 @@ 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, + [1813] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(1538), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1723), 1, + anon_sym_LT_LT_LT, + ACTIONS(1726), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1732), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1735), 1, + sym__special_character, + ACTIONS(1738), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1741), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1744), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1747), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1750), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1753), 1, + anon_sym_BQUOTE, + ACTIONS(1756), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1762), 1, + sym_file_descriptor, + ACTIONS(1765), 1, + sym_test_operator, + ACTIONS(1768), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1771), 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(562), 1, + STATE(570), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1277), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1543), 1, sym_concatenation, - STATE(1654), 1, + STATE(1550), 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, + ACTIONS(1720), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1759), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1717), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1001), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77344,7 +82188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1362), 20, + ACTIONS(1533), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77355,6 +82199,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, @@ -77364,59 +82210,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_BQUOTE, - [1993] = 24, + [1927] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1707), 1, + ACTIONS(1462), 1, + anon_sym_LT_LT_LT, + ACTIONS(1464), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1710), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1713), 1, + ACTIONS(1468), 1, anon_sym_DOLLAR, - ACTIONS(1716), 1, + ACTIONS(1470), 1, sym__special_character, - ACTIONS(1719), 1, + ACTIONS(1472), 1, anon_sym_DQUOTE, - ACTIONS(1722), 1, + ACTIONS(1474), 1, aux_sym_number_token1, - ACTIONS(1725), 1, + ACTIONS(1476), 1, aux_sym_number_token2, - ACTIONS(1728), 1, + ACTIONS(1478), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1731), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1734), 1, + ACTIONS(1482), 1, anon_sym_BQUOTE, - ACTIONS(1737), 1, + ACTIONS(1484), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1743), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1746), 1, - sym_variable_name, - ACTIONS(1749), 1, + ACTIONS(1488), 1, sym_test_operator, - ACTIONS(1752), 1, + ACTIONS(1490), 1, + sym__bare_dollar, + ACTIONS(1492), 1, sym__brace_start, - STATE(1427), 1, + STATE(570), 1, + aux_sym_command_repeat2, + STATE(1277), 1, aux_sym__literal_repeat1, - STATE(6651), 1, - sym_subscript, - ACTIONS(1705), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1740), 2, + STATE(1543), 1, + sym_concatenation, + STATE(1550), 1, + sym_herestring_redirect, + ACTIONS(1460), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1486), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1700), 3, + ACTIONS(1633), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1458), 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(1001), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77426,7 +82274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 22, + ACTIONS(1631), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77436,7 +82284,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, @@ -77449,86 +82296,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, + [2039] = 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(1673), 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(1677), 1, + sym_variable_name, + STATE(892), 1, + sym_string, + ACTIONS(1675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 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(1671), 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(1249), 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,61 +82348,74 @@ 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, + 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, + [2115] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, - anon_sym_LT_LT_LT, - ACTIONS(1410), 1, + ACTIONS(1685), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, + ACTIONS(1687), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1689), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1691), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1693), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1695), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1697), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1699), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1701), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1703), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1705), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1711), 1, + sym_variable_name, + ACTIONS(1713), 1, sym_test_operator, - ACTIONS(1436), 1, - sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1715), 1, sym__brace_start, - STATE(535), 1, - aux_sym_command_repeat2, - STATE(1230), 1, + ACTIONS(1778), 1, + aux_sym__simple_variable_name_token1, + STATE(1616), 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, + STATE(7213), 1, + sym_subscript, + ACTIONS(1707), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1442), 2, + ACTIONS(1776), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1404), 3, + ACTIONS(1679), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(569), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1094), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77601,7 +82425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 21, + ACTIONS(1774), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77611,6 +82435,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, @@ -77623,65 +82448,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2329] = 28, + [2223] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1667), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(1688), 1, + ACTIONS(1784), 1, anon_sym_LT_LT_LT, - ACTIONS(1690), 1, + ACTIONS(1786), 1, sym__special_character, - ACTIONS(1692), 1, + ACTIONS(1788), 1, sym_test_operator, - STATE(577), 1, + STATE(615), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, + STATE(1833), 1, sym_herestring_redirect, - STATE(4842), 1, + STATE(1841), 1, + sym_concatenation, + STATE(4999), 1, sym_subshell, - ACTIONS(1402), 2, + ACTIONS(1456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1686), 2, + ACTIONS(1782), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1780), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77691,7 +82516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 19, + ACTIONS(1454), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77711,61 +82536,63 @@ 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, + [2339] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, - anon_sym_LT_LT_LT, - ACTIONS(1410), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1412), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, - sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, - anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, - sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1667), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1669), 1, sym__brace_start, - STATE(535), 1, + ACTIONS(1784), 1, + anon_sym_LT_LT_LT, + ACTIONS(1786), 1, + sym__special_character, + ACTIONS(1788), 1, + sym_test_operator, + STATE(610), 1, aux_sym_command_repeat2, - STATE(1230), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1330), 1, - sym_concatenation, - STATE(1332), 1, + STATE(1833), 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(1841), 1, + sym_concatenation, + STATE(5125), 1, + sym_subshell, + ACTIONS(1420), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1404), 3, + ACTIONS(1663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1782), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1780), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(952), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77775,7 +82602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 21, + ACTIONS(1416), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77786,8 +82613,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, @@ -77797,106 +82622,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2557] = 8, + anon_sym_BQUOTE, + [2453] = 24, 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(1197), 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(1195), 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, - anon_sym_LT_LT_LT, + ACTIONS(1797), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1800), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1803), 1, + anon_sym_DOLLAR, + ACTIONS(1806), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1809), 1, + anon_sym_DQUOTE, + ACTIONS(1812), 1, aux_sym_number_token1, + ACTIONS(1815), 1, aux_sym_number_token2, + ACTIONS(1818), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1821), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1824), 1, anon_sym_BQUOTE, + ACTIONS(1827), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1833), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1836), 1, + sym_variable_name, + ACTIONS(1839), 1, + sym_test_operator, + ACTIONS(1842), 1, + sym__brace_start, + STATE(1616), 1, + aux_sym__literal_repeat1, + STATE(7213), 1, + sym_subscript, + ACTIONS(1795), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1830), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1790), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [2632] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym_variable_name, - STATE(890), 1, + STATE(576), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1094), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(1765), 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(1763), 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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1793), 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, @@ -77906,7 +82699,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, @@ -77915,77 +82707,63 @@ 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, - [2707] = 26, + [2561] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, - anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, - sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, - sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1667), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1669), 1, sym__brace_start, - STATE(556), 1, + ACTIONS(1784), 1, + anon_sym_LT_LT_LT, + ACTIONS(1786), 1, + sym__special_character, + ACTIONS(1788), 1, + sym_test_operator, + STATE(617), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, + STATE(1833), 1, sym_herestring_redirect, - ACTIONS(1543), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, + STATE(1841), 1, + sym_concatenation, + STATE(4999), 1, + sym_subshell, + ACTIONS(1456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1541), 3, + ACTIONS(1663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1782), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1780), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77995,70 +82773,18 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [2818] = 8, - 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, + ACTIONS(1454), 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_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, @@ -78067,74 +82793,66 @@ 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, - [2893] = 24, + [2675] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1775), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1778), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1781), 1, - sym__special_character, - ACTIONS(1784), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1787), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1790), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1793), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1796), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1799), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(1802), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1808), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1811), 1, - sym_variable_name, - ACTIONS(1814), 1, - sym_test_operator, - ACTIONS(1817), 1, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, sym__brace_start, - STATE(1605), 1, + ACTIONS(1784), 1, + anon_sym_LT_LT_LT, + ACTIONS(1786), 1, + sym__special_character, + ACTIONS(1788), 1, + sym_test_operator, + STATE(612), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(6695), 1, - sym_subscript, - ACTIONS(1705), 2, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, + sym_concatenation, + STATE(5125), 1, + sym_subshell, + ACTIONS(1420), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1805), 2, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1769), 3, + ACTIONS(1782), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1780), 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(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78144,7 +82862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 21, + ACTIONS(1416), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78155,8 +82873,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 +82882,61 @@ 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, + [2791] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 1, + ACTIONS(1639), 1, anon_sym_LT_LT_LT, - ACTIONS(1829), 1, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1832), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1835), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1838), 1, + ACTIONS(1647), 1, sym__special_character, - ACTIONS(1841), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1844), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1847), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1850), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1853), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1856), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(1859), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1865), 1, - sym_file_descriptor, - ACTIONS(1868), 1, + ACTIONS(1665), 1, sym_test_operator, - ACTIONS(1871), 1, + ACTIONS(1667), 1, sym__bare_dollar, - ACTIONS(1874), 1, + ACTIONS(1669), 1, sym__brace_start, - STATE(551), 1, + STATE(583), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1606), 1, - sym_concatenation, - STATE(1607), 1, + STATE(1833), 1, sym_herestring_redirect, - ACTIONS(1488), 2, - ts_builtin_sym_end, + STATE(1841), 1, + sym_concatenation, + ACTIONS(1633), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1823), 2, + ACTIONS(1637), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1862), 2, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1820), 3, + ACTIONS(1635), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + STATE(1141), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78232,7 +82946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 19, + ACTIONS(1631), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78242,6 +82956,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, @@ -78252,62 +82967,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, + [2902] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 1, + ACTIONS(1498), 1, anon_sym_LT_LT_LT, - ACTIONS(1450), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1506), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1508), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1514), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1518), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1524), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1526), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1528), 1, sym__brace_start, - STATE(551), 1, + STATE(587), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1447), 1, aux_sym__literal_repeat1, - STATE(1606), 1, + STATE(1837), 1, sym_concatenation, - STATE(1607), 1, + STATE(1909), 1, sym_herestring_redirect, - ACTIONS(1446), 2, + ACTIONS(1496), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1522), 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(1494), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1095), 9, + ACTIONS(1629), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1110), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78317,7 +83032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 19, + ACTIONS(1627), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78337,62 +83052,62 @@ 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, + [3013] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 1, + ACTIONS(1498), 1, anon_sym_LT_LT_LT, - ACTIONS(1450), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1452), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1506), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1508), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1514), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1518), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1520), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1524), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1526), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1528), 1, sym__brace_start, - STATE(551), 1, + STATE(587), 1, aux_sym_command_repeat2, - STATE(1334), 1, + STATE(1447), 1, aux_sym__literal_repeat1, - STATE(1606), 1, + STATE(1837), 1, sym_concatenation, - STATE(1607), 1, + STATE(1909), 1, sym_herestring_redirect, - ACTIONS(1446), 2, + ACTIONS(1496), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1522), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1444), 3, + ACTIONS(1494), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(1579), 3, + ACTIONS(1633), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1095), 9, + STATE(1110), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78402,7 +83117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 19, + ACTIONS(1631), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78422,58 +83137,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, + [3124] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1847), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1849), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1851), 1, anon_sym_DOLLAR, - ACTIONS(1885), 1, + ACTIONS(1853), 1, sym__special_character, - ACTIONS(1887), 1, + ACTIONS(1855), 1, anon_sym_DQUOTE, - ACTIONS(1889), 1, + ACTIONS(1857), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(1859), 1, aux_sym_number_token2, - ACTIONS(1893), 1, + ACTIONS(1861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1863), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1865), 1, anon_sym_BQUOTE, - ACTIONS(1899), 1, + ACTIONS(1867), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1903), 1, + ACTIONS(1871), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1905), 1, + ACTIONS(1873), 1, sym_variable_name, - ACTIONS(1907), 1, + ACTIONS(1875), 1, sym_test_operator, - ACTIONS(1909), 1, + ACTIONS(1877), 1, sym__brace_start, - STATE(1605), 1, + STATE(1665), 1, aux_sym__literal_repeat1, - STATE(6695), 1, + STATE(7216), 1, sym_subscript, - ACTIONS(1585), 2, + ACTIONS(1776), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1901), 2, + ACTIONS(1869), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1877), 3, + ACTIONS(1845), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(557), 3, + STATE(584), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1227), 9, + STATE(1336), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78483,7 +83198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 21, + ACTIONS(1774), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78505,61 +83220,62 @@ 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, + [3231] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1545), 1, + ACTIONS(1538), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1885), 1, anon_sym_LT_LT_LT, - ACTIONS(1547), 1, + ACTIONS(1888), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1891), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1894), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1897), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1900), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1903), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1906), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1909), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1912), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1915), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1924), 1, + sym_file_descriptor, + ACTIONS(1927), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1930), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1933), 1, sym__brace_start, - STATE(556), 1, + STATE(583), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, + STATE(1833), 1, sym_herestring_redirect, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + STATE(1841), 1, + sym_concatenation, + ACTIONS(1882), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1879), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1141), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78569,7 +83285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 20, + ACTIONS(1533), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78590,62 +83306,144 @@ 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, + [3344] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, + ACTIONS(1847), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1849), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1851), 1, + anon_sym_DOLLAR, + ACTIONS(1853), 1, + sym__special_character, + ACTIONS(1855), 1, + anon_sym_DQUOTE, + ACTIONS(1857), 1, + aux_sym_number_token1, + ACTIONS(1859), 1, + aux_sym_number_token2, + ACTIONS(1861), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1863), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1865), 1, + anon_sym_BQUOTE, + ACTIONS(1867), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1873), 1, + sym_variable_name, + ACTIONS(1875), 1, + sym_test_operator, + ACTIONS(1877), 1, + sym__brace_start, + ACTIONS(1936), 1, + aux_sym__simple_variable_name_token1, + STATE(1665), 1, + aux_sym__literal_repeat1, + STATE(7216), 1, + sym_subscript, + ACTIONS(1683), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1917), 1, + ACTIONS(1869), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1845), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(586), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1336), 9, + 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(1681), 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, + [3451] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1639), 1, anon_sym_LT_LT_LT, - ACTIONS(1920), 1, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(1929), 1, + ACTIONS(1647), 1, sym__special_character, - ACTIONS(1932), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(1935), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1938), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1941), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(1950), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1956), 1, - sym_file_descriptor, - ACTIONS(1959), 1, + ACTIONS(1665), 1, sym_test_operator, - ACTIONS(1962), 1, + ACTIONS(1667), 1, sym__bare_dollar, - ACTIONS(1965), 1, + ACTIONS(1669), 1, sym__brace_start, - STATE(556), 1, + STATE(583), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, + STATE(1833), 1, sym_herestring_redirect, - ACTIONS(1914), 2, + STATE(1841), 1, + sym_concatenation, + ACTIONS(1629), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1637), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1953), 2, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1911), 3, + ACTIONS(1635), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1118), 9, + STATE(1141), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78655,7 +83453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 20, + ACTIONS(1627), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78676,58 +83474,58 @@ 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, + [3562] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1879), 1, + ACTIONS(1941), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1881), 1, + ACTIONS(1944), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1947), 1, anon_sym_DOLLAR, - ACTIONS(1885), 1, + ACTIONS(1950), 1, sym__special_character, - ACTIONS(1887), 1, + ACTIONS(1953), 1, anon_sym_DQUOTE, - ACTIONS(1889), 1, + ACTIONS(1956), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(1959), 1, aux_sym_number_token2, - ACTIONS(1893), 1, + ACTIONS(1962), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1895), 1, + ACTIONS(1965), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1897), 1, + ACTIONS(1968), 1, anon_sym_BQUOTE, - ACTIONS(1899), 1, + ACTIONS(1971), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1905), 1, + ACTIONS(1977), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1980), 1, sym_variable_name, - ACTIONS(1907), 1, + ACTIONS(1983), 1, sym_test_operator, - ACTIONS(1909), 1, + ACTIONS(1986), 1, sym__brace_start, - ACTIONS(1968), 1, - aux_sym__simple_variable_name_token1, - STATE(1605), 1, + STATE(1665), 1, aux_sym__literal_repeat1, - STATE(6695), 1, + STATE(7216), 1, sym_subscript, - ACTIONS(1696), 2, + ACTIONS(1795), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1901), 2, + ACTIONS(1974), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1877), 3, + ACTIONS(1938), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(550), 3, + STATE(586), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1227), 9, + STATE(1336), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78737,7 +83535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 21, + ACTIONS(1793), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78759,49 +83557,84 @@ 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, + [3669] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(1995), 1, + anon_sym_LT_LT_LT, + ACTIONS(1998), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2001), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2004), 1, + anon_sym_DOLLAR, + ACTIONS(2007), 1, + sym__special_character, + ACTIONS(2010), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, - sym_variable_name, - STATE(890), 1, - sym_string, - ACTIONS(1765), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(2013), 1, + aux_sym_number_token1, + ACTIONS(2016), 1, + aux_sym_number_token2, + ACTIONS(2019), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2022), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2025), 1, + anon_sym_BQUOTE, + ACTIONS(2028), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2034), 1, sym_file_descriptor, + ACTIONS(2037), 1, sym_test_operator, + ACTIONS(2040), 1, sym__bare_dollar, + ACTIONS(2043), 1, sym__brace_start, - ACTIONS(1763), 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), 40, + STATE(587), 1, + aux_sym_command_repeat2, + STATE(1447), 1, + aux_sym__literal_repeat1, + STATE(1837), 1, + sym_concatenation, + STATE(1909), 1, + sym_herestring_redirect, + ACTIONS(1538), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1992), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2031), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1989), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1110), 9, + 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(1533), 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, @@ -78810,75 +83643,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, - 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, - [3848] = 24, + [3782] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 1, + ACTIONS(1595), 1, + anon_sym_LT_LT_LT, + ACTIONS(1597), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1976), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1982), 1, + ACTIONS(1603), 1, sym__special_character, - ACTIONS(1985), 1, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(1988), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(1991), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(1994), 1, + ACTIONS(1611), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1997), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2000), 1, + ACTIONS(1615), 1, anon_sym_BQUOTE, - ACTIONS(2003), 1, + ACTIONS(1617), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2009), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2012), 1, - sym_variable_name, - ACTIONS(2015), 1, + ACTIONS(1621), 1, sym_test_operator, - ACTIONS(2018), 1, + ACTIONS(1623), 1, + sym__bare_dollar, + ACTIONS(1625), 1, sym__brace_start, - STATE(1771), 1, + STATE(592), 1, + aux_sym_command_repeat2, + STATE(1486), 1, aux_sym__literal_repeat1, - STATE(6634), 1, - sym_subscript, - ACTIONS(2006), 2, + STATE(1805), 1, + sym_concatenation, + STATE(1903), 1, + sym_herestring_redirect, + ACTIONS(1593), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1619), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1705), 3, + ACTIONS(1633), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1970), 3, + ACTIONS(1591), 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, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78888,7 +83707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 19, + ACTIONS(1631), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78899,6 +83718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78908,24 +83728,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3954] = 8, + [3893] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1432), 1, anon_sym_DQUOTE, - ACTIONS(2025), 1, + ACTIONS(2050), 1, sym_variable_name, - STATE(1012), 1, + STATE(954), 1, sym_string, - ACTIONS(2023), 2, + ACTIONS(2048), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2021), 8, + ACTIONS(2046), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78934,7 +83754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 39, + ACTIONS(1249), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78945,6 +83765,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,80 +83795,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4028] = 25, + [3968] = 8, 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, + ACTIONS(1432), 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, + ACTIONS(2050), 1, + sym_variable_name, + STATE(954), 1, + sym_string, + ACTIONS(2048), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 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(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, + ACTIONS(2046), 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(1237), 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, @@ -79056,60 +83846,77 @@ 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, - [4136] = 25, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [4043] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(1595), 1, + anon_sym_LT_LT_LT, + 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, + ACTIONS(1621), 1, + sym_test_operator, + ACTIONS(1623), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1625), 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, + STATE(592), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1486), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(1805), 1, sym_concatenation, - STATE(1654), 1, + STATE(1903), 1, sym_herestring_redirect, - ACTIONS(1569), 2, + ACTIONS(1593), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1619), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1579), 2, + ACTIONS(1629), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1591), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79119,7 +83926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 20, + ACTIONS(1627), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79130,6 +83937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79139,59 +83947,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, - [4244] = 24, + [4154] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(1538), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(2058), 1, + anon_sym_LT_LT_LT, + ACTIONS(2061), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(2064), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2035), 1, + ACTIONS(2070), 1, sym__special_character, - ACTIONS(2037), 1, + ACTIONS(2073), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(2076), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2079), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(2082), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2085), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(2088), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(2091), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2053), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2055), 1, - sym_variable_name, - ACTIONS(2057), 1, + ACTIONS(2097), 1, + sym_file_descriptor, + ACTIONS(2100), 1, sym_test_operator, - ACTIONS(2059), 1, + ACTIONS(2103), 1, + sym__bare_dollar, + ACTIONS(2106), 1, sym__brace_start, - STATE(1820), 1, + STATE(592), 1, + aux_sym_command_repeat2, + STATE(1486), 1, aux_sym__literal_repeat1, - STATE(6636), 1, - sym_subscript, - ACTIONS(1585), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + STATE(1805), 1, + sym_concatenation, + STATE(1903), 1, + sym_herestring_redirect, + ACTIONS(2055), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2094), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2027), 3, + ACTIONS(2052), 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, + STATE(1150), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79201,7 +84012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 20, + ACTIONS(1533), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79211,8 +84022,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79222,24 +84033,24 @@ 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, + [4267] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(2111), 1, anon_sym_DQUOTE, - ACTIONS(2025), 1, + ACTIONS(2115), 1, sym_variable_name, - STATE(1012), 1, + STATE(964), 1, sym_string, - ACTIONS(2023), 2, + ACTIONS(2113), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2021), 8, + ACTIONS(2109), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79248,7 +84059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 39, + ACTIONS(1249), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79259,6 +84070,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, @@ -79288,80 +84100,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4424] = 24, + [4342] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2065), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2067), 1, - anon_sym_DOLLAR, - ACTIONS(2069), 1, - sym__special_character, - ACTIONS(2071), 1, + ACTIONS(2111), 1, anon_sym_DQUOTE, - ACTIONS(2073), 1, - aux_sym_number_token1, - ACTIONS(2075), 1, - aux_sym_number_token2, - ACTIONS(2077), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2079), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2081), 1, - anon_sym_BQUOTE, - ACTIONS(2083), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2087), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2089), 1, + ACTIONS(2115), 1, sym_variable_name, - ACTIONS(2091), 1, + STATE(964), 1, + sym_string, + ACTIONS(2113), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(2093), 1, + sym__bare_dollar, sym__brace_start, - STATE(1771), 1, - aux_sym__literal_repeat1, - STATE(6634), 1, - sym_subscript, - ACTIONS(2085), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1585), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2061), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(573), 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(1583), 19, + ACTIONS(2109), 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(1237), 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, @@ -79370,107 +84151,40 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(2035), 1, sym__special_character, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(2039), 1, + sym_raw_string, + sym_ansi_c_string, 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(2047), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2055), 1, - sym_variable_name, - ACTIONS(2057), 1, - sym_test_operator, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(2095), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6636), 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(2027), 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, - 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_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - [4636] = 8, + [4417] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(2119), 1, anon_sym_DQUOTE, - ACTIONS(2103), 1, + ACTIONS(2123), 1, sym_variable_name, - STATE(1087), 1, + STATE(1129), 1, sym_string, - ACTIONS(2101), 2, + ACTIONS(2121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 5, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2097), 8, + ACTIONS(2117), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79479,7 +84193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 38, + ACTIONS(1237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79491,6 +84205,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, @@ -79518,58 +84233,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4710] = 24, + [4491] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(2128), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2111), 1, + ACTIONS(2131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2114), 1, + ACTIONS(2134), 1, anon_sym_DOLLAR, - ACTIONS(2117), 1, + ACTIONS(2137), 1, sym__special_character, - ACTIONS(2120), 1, + ACTIONS(2140), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(2143), 1, aux_sym_number_token1, - ACTIONS(2126), 1, + ACTIONS(2146), 1, aux_sym_number_token2, - ACTIONS(2129), 1, + ACTIONS(2149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2132), 1, + ACTIONS(2152), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2135), 1, + ACTIONS(2155), 1, anon_sym_BQUOTE, - ACTIONS(2138), 1, + ACTIONS(2158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2144), 1, + ACTIONS(2164), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2147), 1, + ACTIONS(2167), 1, sym_variable_name, - ACTIONS(2150), 1, + ACTIONS(2170), 1, sym_test_operator, - ACTIONS(2153), 1, + ACTIONS(2173), 1, sym__brace_start, - STATE(1820), 1, + STATE(2178), 1, aux_sym__literal_repeat1, - STATE(6636), 1, + STATE(7201), 1, sym_subscript, - ACTIONS(1705), 2, + ACTIONS(1795), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2141), 2, + ACTIONS(2161), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2105), 3, + ACTIONS(2125), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(568), 3, + STATE(596), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1368), 9, + STATE(1467), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79579,7 +84294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 20, + ACTIONS(1793), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79600,21 +84315,21 @@ 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, + [4597] = 6, ACTIONS(3), 1, sym_comment, - STATE(1320), 1, + STATE(1580), 1, aux_sym__literal_repeat1, - STATE(572), 2, + STATE(599), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + ACTIONS(2178), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1021), 9, + STATE(1216), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79624,7 +84339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 39, + ACTIONS(2176), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79664,82 +84379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4886] = 3, - ACTIONS(71), 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, - 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(517), 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, - [4950] = 6, + [4667] = 6, ACTIONS(3), 1, sym_comment, - STATE(1320), 1, + STATE(1580), 1, aux_sym__literal_repeat1, - STATE(572), 2, + STATE(599), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, + ACTIONS(2182), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1021), 9, + STATE(1216), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79749,7 +84403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 39, + ACTIONS(2180), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79789,52 +84443,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5020] = 21, + [4737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, + ACTIONS(2191), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2174), 1, + ACTIONS(2194), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2177), 1, + ACTIONS(2197), 1, anon_sym_DOLLAR, - ACTIONS(2180), 1, + ACTIONS(2200), 1, sym__special_character, - ACTIONS(2183), 1, + ACTIONS(2203), 1, anon_sym_DQUOTE, - ACTIONS(2186), 1, + ACTIONS(2206), 1, aux_sym_number_token1, - ACTIONS(2189), 1, + ACTIONS(2209), 1, aux_sym_number_token2, - ACTIONS(2192), 1, + ACTIONS(2212), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2195), 1, + ACTIONS(2215), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2218), 1, anon_sym_BQUOTE, - ACTIONS(2201), 1, + ACTIONS(2221), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2207), 1, + ACTIONS(2227), 1, sym_test_operator, - ACTIONS(2210), 1, + ACTIONS(2230), 1, sym__brace_start, - STATE(1320), 1, + STATE(1580), 1, aux_sym__literal_repeat1, - ACTIONS(2204), 2, + ACTIONS(2224), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(572), 2, + STATE(599), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2164), 3, + ACTIONS(2184), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(2169), 3, + ACTIONS(2189), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(1021), 9, + STATE(1216), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79844,7 +84498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 23, + ACTIONS(2187), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79868,59 +84522,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, + [4837] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2236), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2065), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2242), 1, anon_sym_DOLLAR, - ACTIONS(2069), 1, + ACTIONS(2245), 1, sym__special_character, - ACTIONS(2071), 1, + ACTIONS(2248), 1, anon_sym_DQUOTE, - ACTIONS(2073), 1, + ACTIONS(2251), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(2254), 1, aux_sym_number_token2, - ACTIONS(2077), 1, + ACTIONS(2257), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2079), 1, + ACTIONS(2260), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2081), 1, + ACTIONS(2263), 1, anon_sym_BQUOTE, - ACTIONS(2083), 1, + ACTIONS(2266), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2089), 1, + ACTIONS(2272), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2275), 1, sym_variable_name, - ACTIONS(2091), 1, + ACTIONS(2278), 1, sym_test_operator, - ACTIONS(2093), 1, + ACTIONS(2281), 1, sym__brace_start, - ACTIONS(2213), 1, - aux_sym__simple_variable_name_token1, - STATE(1771), 1, + STATE(2068), 1, aux_sym__literal_repeat1, - STATE(6634), 1, + STATE(7204), 1, sym_subscript, - ACTIONS(2085), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1696), 3, + ACTIONS(1795), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2061), 3, + ACTIONS(2269), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2233), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(559), 3, + STATE(600), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1445), 9, + STATE(1643), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79930,7 +84583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 19, + ACTIONS(1793), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79941,6 +84594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79950,25 +84604,24 @@ 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, + [4943] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(2286), 1, anon_sym_DQUOTE, - ACTIONS(2103), 1, + ACTIONS(2290), 1, sym_variable_name, - STATE(1087), 1, + STATE(1112), 1, sym_string, - ACTIONS(2101), 2, + ACTIONS(2288), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 5, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2097), 8, + ACTIONS(2284), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79977,7 +84630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 38, + ACTIONS(1237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79990,6 +84643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -80016,24 +84670,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5300] = 8, + [5017] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2294), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(2298), 1, sym_variable_name, - STATE(983), 1, + STATE(1210), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(2296), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1251), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ts_builtin_sym_end, + ACTIONS(2292), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80042,7 +84697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 39, + ACTIONS(1249), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80054,7 +84709,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, @@ -80082,24 +84736,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5374] = 8, + [5091] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(2119), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(2123), 1, sym_variable_name, - STATE(983), 1, + STATE(1129), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(2121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ACTIONS(2117), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80108,7 +84762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 39, + ACTIONS(1249), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80148,61 +84802,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5448] = 26, + [5165] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(1472), 1, + anon_sym_DQUOTE, + ACTIONS(2304), 1, + sym_variable_name, + STATE(1118), 1, + sym_string, + ACTIONS(2302), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2300), 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(1249), 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, - ACTIONS(1549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [5239] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1472), 1, + anon_sym_DQUOTE, + ACTIONS(2304), 1, + sym_variable_name, + STATE(1118), 1, + sym_string, + ACTIONS(2302), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, - ACTIONS(1575), 1, sym__brace_start, - ACTIONS(1688), 1, + ACTIONS(2300), 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(1237), 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, - ACTIONS(1690), 1, + 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, + [5313] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2308), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2310), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2312), 1, + anon_sym_DOLLAR, + ACTIONS(2314), 1, sym__special_character, - ACTIONS(1692), 1, + ACTIONS(2316), 1, + anon_sym_DQUOTE, + ACTIONS(2318), 1, + aux_sym_number_token1, + ACTIONS(2320), 1, + aux_sym_number_token2, + ACTIONS(2322), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2324), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2326), 1, + anon_sym_BQUOTE, + ACTIONS(2328), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2332), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2334), 1, + sym_variable_name, + ACTIONS(2336), 1, sym_test_operator, - STATE(578), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + ACTIONS(2338), 1, + sym__brace_start, + STATE(2102), 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, + STATE(7271), 1, + sym_subscript, + ACTIONS(2330), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1686), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1684), 3, + ACTIONS(1776), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2306), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(607), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80212,7 +84996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 19, + ACTIONS(1774), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80232,62 +85016,59 @@ 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, + [5419] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1920), 1, + ACTIONS(2308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, + ACTIONS(2310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, + ACTIONS(2312), 1, anon_sym_DOLLAR, - ACTIONS(1932), 1, + ACTIONS(2314), 1, + sym__special_character, + ACTIONS(2316), 1, anon_sym_DQUOTE, - ACTIONS(1935), 1, + ACTIONS(2318), 1, aux_sym_number_token1, - ACTIONS(1938), 1, + ACTIONS(2320), 1, aux_sym_number_token2, - ACTIONS(1941), 1, + ACTIONS(2322), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, + ACTIONS(2324), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, + ACTIONS(2326), 1, anon_sym_BQUOTE, - ACTIONS(1950), 1, + ACTIONS(2328), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1962), 1, - sym__bare_dollar, - ACTIONS(1965), 1, - sym__brace_start, - ACTIONS(2229), 1, - anon_sym_LT_LT_LT, - ACTIONS(2232), 1, - sym__special_character, - ACTIONS(2235), 1, - sym_file_descriptor, - ACTIONS(2238), 1, + ACTIONS(2334), 1, + sym_variable_name, + ACTIONS(2336), 1, sym_test_operator, - STATE(578), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + ACTIONS(2338), 1, + sym__brace_start, + ACTIONS(2340), 1, + aux_sym__simple_variable_name_token1, + STATE(2102), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1953), 2, + STATE(7271), 1, + sym_subscript, + ACTIONS(2330), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2226), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2223), 3, + ACTIONS(1683), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2306), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1270), 9, + STATE(613), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80297,7 +85078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 19, + ACTIONS(1681), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80317,100 +85098,10 @@ 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, - 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(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(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), 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, - [5780] = 5, + [5525] = 3, ACTIONS(71), 1, sym_comment, - 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, + ACTIONS(857), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -80434,7 +85125,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(569), 33, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -80442,7 +85133,12 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -80463,65 +85159,141 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [5847] = 28, + [5589] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(2344), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2346), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(2348), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(2350), 1, + sym__special_character, + ACTIONS(2352), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(2362), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(2364), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(2368), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2370), 1, + sym_variable_name, + ACTIONS(2372), 1, + sym_test_operator, + ACTIONS(2374), 1, + sym__brace_start, + STATE(2178), 1, + aux_sym__literal_repeat1, + STATE(7201), 1, + sym_subscript, + ACTIONS(1683), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2366), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2342), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(596), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1467), 9, + 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(1681), 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, + [5695] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1641), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1643), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1655), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1661), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1667), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(2253), 1, + ACTIONS(1784), 1, anon_sym_LT_LT_LT, - ACTIONS(2255), 1, + ACTIONS(1786), 1, sym__special_character, - ACTIONS(2257), 1, + ACTIONS(1788), 1, sym_test_operator, - STATE(679), 1, + STATE(614), 1, aux_sym_command_repeat2, - STATE(1412), 1, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1649), 1, - sym_concatenation, - STATE(1654), 1, + STATE(1833), 1, sym_herestring_redirect, - STATE(4842), 1, - sym_subshell, - ACTIONS(1402), 2, + STATE(1841), 1, + sym_concatenation, + ACTIONS(1633), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 2, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2251), 2, + ACTIONS(1782), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2249), 3, + ACTIONS(1780), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80531,14 +85303,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1400), 16, + ACTIONS(1631), 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 +85323,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, + [5803] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(2378), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2380), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2382), 1, + anon_sym_DOLLAR, + ACTIONS(2384), 1, + sym__special_character, + ACTIONS(2386), 1, anon_sym_DQUOTE, - ACTIONS(2263), 1, - sym_variable_name, - STATE(1246), 1, - sym_string, - ACTIONS(2261), 2, + ACTIONS(2388), 1, + aux_sym_number_token1, + ACTIONS(2390), 1, + aux_sym_number_token2, + ACTIONS(2392), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2394), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2396), 1, + anon_sym_BQUOTE, + ACTIONS(2398), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2402), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 5, - sym_file_descriptor, + ACTIONS(2404), 1, + sym_variable_name, + ACTIONS(2406), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(2408), 1, 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(1195), 37, + STATE(2068), 1, + aux_sym__literal_repeat1, + STATE(7204), 1, + sym_subscript, + ACTIONS(1776), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2400), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2376), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(619), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1643), 9, + 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(1774), 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_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80597,63 +85406,164 @@ 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, + [5909] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1651), 1, aux_sym_number_token1, + ACTIONS(1653), 1, aux_sym_number_token2, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1659), 1, anon_sym_BQUOTE, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(1784), 1, + anon_sym_LT_LT_LT, + ACTIONS(1786), 1, + sym__special_character, + ACTIONS(1788), 1, + sym_test_operator, + STATE(614), 1, + aux_sym_command_repeat2, + STATE(1590), 1, + aux_sym__literal_repeat1, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, + sym_concatenation, + ACTIONS(1633), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1782), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1780), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [6033] = 8, + STATE(1417), 9, + 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(1631), 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, + [6019] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(2413), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2416), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2419), 1, + anon_sym_DOLLAR, + ACTIONS(2422), 1, + sym__special_character, + ACTIONS(2425), 1, anon_sym_DQUOTE, - ACTIONS(2263), 1, - sym_variable_name, - STATE(1246), 1, - sym_string, - ACTIONS(2261), 2, + ACTIONS(2428), 1, + aux_sym_number_token1, + ACTIONS(2431), 1, + aux_sym_number_token2, + ACTIONS(2434), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2437), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2440), 1, + anon_sym_BQUOTE, + ACTIONS(2443), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2449), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 5, - sym_file_descriptor, + ACTIONS(2452), 1, + sym_variable_name, + ACTIONS(2455), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(2458), 1, sym__brace_start, + STATE(2102), 1, + aux_sym__literal_repeat1, + STATE(7271), 1, + sym_subscript, + ACTIONS(2446), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1795), 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(1183), 37, + aux_sym_heredoc_redirect_token1, + ACTIONS(2410), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(613), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1581), 9, + 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(1793), 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, @@ -80662,63 +85572,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [6125] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1538), 1, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + ACTIONS(1888), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1891), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1894), 1, + anon_sym_DOLLAR, + ACTIONS(1900), 1, + anon_sym_DQUOTE, + ACTIONS(1903), 1, aux_sym_number_token1, + ACTIONS(1906), 1, aux_sym_number_token2, + ACTIONS(1909), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1912), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1915), 1, anon_sym_BQUOTE, + ACTIONS(1918), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1930), 1, + sym__bare_dollar, + ACTIONS(1933), 1, + sym__brace_start, + ACTIONS(2467), 1, + anon_sym_LT_LT_LT, + ACTIONS(2470), 1, + sym__special_character, + ACTIONS(2473), 1, + sym_file_descriptor, + ACTIONS(2476), 1, + sym_test_operator, + STATE(614), 1, + aux_sym_command_repeat2, + STATE(1590), 1, + aux_sym__literal_repeat1, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, + sym_concatenation, + ACTIONS(1921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2464), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2461), 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(1417), 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(1533), 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_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, @@ -80727,40 +85657,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, - anon_sym_LT_LT_LT, + [6237] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1651), 1, aux_sym_number_token1, + ACTIONS(1653), 1, aux_sym_number_token2, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1659), 1, anon_sym_BQUOTE, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(1784), 1, + anon_sym_LT_LT_LT, + ACTIONS(1786), 1, + sym__special_character, + ACTIONS(1788), 1, + sym_test_operator, + STATE(614), 1, + aux_sym_command_repeat2, + STATE(1590), 1, + aux_sym__literal_repeat1, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, + sym_concatenation, + ACTIONS(1629), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1782), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1780), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [6179] = 8, + STATE(1417), 9, + 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(1627), 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, + [6347] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(2294), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2298), 1, sym_variable_name, - STATE(1273), 1, + STATE(1210), 1, sym_string, - ACTIONS(2267), 2, + ACTIONS(2296), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1245), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2265), 8, + ts_builtin_sym_end, + ACTIONS(2292), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80769,7 +85768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 38, + ACTIONS(1237), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80780,7 +85779,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, @@ -80808,20 +85807,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6252] = 6, + [6421] = 25, ACTIONS(3), 1, sym_comment, - STATE(1457), 1, + ACTIONS(1641), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1643), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1655), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1661), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(1784), 1, + anon_sym_LT_LT_LT, + ACTIONS(1786), 1, + sym__special_character, + ACTIONS(1788), 1, + sym_test_operator, + STATE(614), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(1479), 1, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, sym_concatenation, - ACTIONS(2273), 5, + ACTIONS(1629), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1015), 9, + ACTIONS(1663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1782), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1780), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1417), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80831,7 +85869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 39, + ACTIONS(1627), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80841,10 +85879,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, @@ -80854,37 +85889,59 @@ static const uint16_t ts_small_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, + [6529] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2346), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2348), 1, anon_sym_DOLLAR, + ACTIONS(2350), 1, sym__special_character, + ACTIONS(2352), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2354), 1, aux_sym_number_token1, + ACTIONS(2356), 1, aux_sym_number_token2, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2362), 1, anon_sym_BQUOTE, + ACTIONS(2364), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6321] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1337), 1, - aux_sym__literal_repeat1, - STATE(1670), 1, - sym_concatenation, - ACTIONS(2277), 5, - sym_file_descriptor, + ACTIONS(2370), 1, sym_variable_name, + ACTIONS(2372), 1, sym_test_operator, + ACTIONS(2374), 1, sym__brace_start, + ACTIONS(2479), 1, + aux_sym__simple_variable_name_token1, + STATE(2178), 1, + aux_sym__literal_repeat1, + STATE(7201), 1, + sym_subscript, + ACTIONS(1776), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1096), 9, + ACTIONS(2366), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2342), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(609), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1467), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80894,7 +85951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 39, + ACTIONS(1774), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80904,10 +85961,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, @@ -80917,70 +85972,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, 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, - [6390] = 22, + [6635] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2285), 1, + ACTIONS(2378), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2287), 1, + ACTIONS(2380), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2289), 1, + ACTIONS(2382), 1, anon_sym_DOLLAR, - ACTIONS(2291), 1, + ACTIONS(2384), 1, sym__special_character, - ACTIONS(2293), 1, + ACTIONS(2386), 1, anon_sym_DQUOTE, - ACTIONS(2295), 1, + ACTIONS(2388), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(2390), 1, aux_sym_number_token2, - ACTIONS(2299), 1, + ACTIONS(2392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2301), 1, + ACTIONS(2394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2396), 1, anon_sym_BQUOTE, - ACTIONS(2305), 1, + ACTIONS(2398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2309), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2311), 1, + ACTIONS(2404), 1, + sym_variable_name, + ACTIONS(2406), 1, sym_test_operator, - ACTIONS(2313), 1, + ACTIONS(2408), 1, sym__brace_start, - STATE(1464), 1, + ACTIONS(2481), 1, + aux_sym__simple_variable_name_token1, + STATE(2068), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + STATE(7204), 1, + sym_subscript, + ACTIONS(1683), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2307), 2, + ACTIONS(2400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(591), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2279), 3, + ACTIONS(2376), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1137), 9, + STATE(600), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1643), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80990,7 +86033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 22, + ACTIONS(1681), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81000,11 +86043,59 @@ 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [6741] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_DQUOTE, + ACTIONS(2290), 1, + sym_variable_name, + STATE(1112), 1, + sym_string, + ACTIONS(2288), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2284), 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(1249), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81013,56 +86104,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6491] = 23, + 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, + [6815] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(2128), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(2131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2134), 1, anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(2140), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(2143), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2146), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(2149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2152), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2049), 1, + ACTIONS(2155), 1, + anon_sym_BQUOTE, + ACTIONS(2158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, + ACTIONS(2173), 1, sym__brace_start, - ACTIONS(2317), 1, + ACTIONS(2486), 1, sym__special_character, - ACTIONS(2319), 1, + ACTIONS(2489), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2321), 1, + ACTIONS(2492), 1, sym_variable_name, - ACTIONS(2323), 1, + ACTIONS(2495), 1, sym_test_operator, - STATE(1820), 1, + STATE(2178), 1, aux_sym__literal_repeat1, - STATE(6652), 1, + STATE(7259), 1, sym_subscript, - ACTIONS(1696), 2, + ACTIONS(1795), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(2161), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2315), 3, + ACTIONS(2483), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(603), 3, + STATE(621), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1666), 9, + STATE(1859), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81072,7 +86181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 20, + ACTIONS(1793), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81092,17 +86201,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, - [6594] = 5, + [6920] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2245), 1, + ACTIONS(2502), 2, + anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(2247), 3, - anon_sym_RPAREN, + ACTIONS(2504), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, + ACTIONS(2500), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -81126,7 +86234,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(2498), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -81155,77 +86263,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [6661] = 22, + [6987] = 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(2119), 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(2311), 1, - sym_test_operator, - ACTIONS(2313), 1, - sym__brace_start, - ACTIONS(2329), 1, + ACTIONS(2123), 1, + sym_variable_name, + STATE(1129), 1, + sym_string, + ACTIONS(2121), 2, aux_sym__simple_variable_name_token1, - STATE(1464), 1, - aux_sym__literal_repeat1, - ACTIONS(2307), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2327), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(598), 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(2325), 22, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2117), 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(1249), 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, @@ -81234,75 +86312,63 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2333), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, 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, + sym_raw_string, + sym_ansi_c_string, 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, - aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - 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, - sym_arithmetic_expansion, - sym_brace_expression, + [7060] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2119), 1, + anon_sym_DQUOTE, + ACTIONS(2123), 1, + sym_variable_name, + STATE(1129), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2156), 23, + ACTIONS(2121), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2117), 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(1237), 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, @@ -81311,52 +86377,72 @@ 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, - [6861] = 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, + [7133] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2344), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2335), 1, + ACTIONS(2346), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2337), 1, + ACTIONS(2348), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, - sym__special_character, - ACTIONS(2341), 1, + ACTIONS(2352), 1, anon_sym_DQUOTE, - ACTIONS(2343), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(2347), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2351), 1, - anon_sym_BQUOTE, - ACTIONS(2353), 1, + ACTIONS(2364), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2357), 1, - sym_test_operator, - ACTIONS(2359), 1, + ACTIONS(2374), 1, sym__brace_start, - STATE(1491), 1, + ACTIONS(2508), 1, + sym__special_character, + ACTIONS(2510), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2512), 1, + sym_variable_name, + ACTIONS(2514), 1, + sym_test_operator, + STATE(2178), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(7259), 1, + sym_subscript, + ACTIONS(1776), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2355), 2, + ACTIONS(2366), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(594), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2331), 3, + ACTIONS(2506), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1165), 9, + STATE(627), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1859), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81366,7 +86452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 23, + ACTIONS(1774), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81376,10 +86462,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, @@ -81389,52 +86472,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, - [6960] = 21, + anon_sym_BQUOTE, + [7236] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 1, + ACTIONS(2518), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2520), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2370), 1, + ACTIONS(2522), 1, anon_sym_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2524), 1, sym__special_character, - ACTIONS(2376), 1, + ACTIONS(2526), 1, anon_sym_DQUOTE, - ACTIONS(2379), 1, + ACTIONS(2528), 1, aux_sym_number_token1, - ACTIONS(2382), 1, + ACTIONS(2530), 1, aux_sym_number_token2, - ACTIONS(2385), 1, + ACTIONS(2532), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2388), 1, + ACTIONS(2534), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2391), 1, + ACTIONS(2536), 1, anon_sym_BQUOTE, - ACTIONS(2394), 1, + ACTIONS(2538), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2400), 1, + ACTIONS(2542), 1, sym_test_operator, - ACTIONS(2403), 1, + ACTIONS(2544), 1, sym__brace_start, - STATE(1491), 1, + STATE(1839), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2397), 2, + ACTIONS(2540), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(594), 2, + STATE(631), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2361), 3, + ACTIONS(2516), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1165), 9, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81444,7 +86527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 23, + ACTIONS(2180), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81468,21 +86551,56 @@ 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, + [7335] = 23, ACTIONS(3), 1, sym_comment, - STATE(1501), 1, - aux_sym__literal_repeat1, - STATE(597), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, - sym_file_descriptor, + ACTIONS(2344), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2346), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2352), 1, + anon_sym_DQUOTE, + ACTIONS(2354), 1, + aux_sym_number_token1, + ACTIONS(2356), 1, + aux_sym_number_token2, + ACTIONS(2358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2360), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2364), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(2508), 1, + sym__special_character, + ACTIONS(2512), 1, sym_variable_name, + ACTIONS(2514), 1, sym_test_operator, - sym__brace_start, + ACTIONS(2546), 1, + aux_sym__simple_variable_name_token1, + STATE(2178), 1, + aux_sym__literal_repeat1, + STATE(7259), 1, + sym_subscript, + ACTIONS(1683), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1210), 9, + ACTIONS(2366), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2506), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(621), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1859), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81492,7 +86610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 38, + ACTIONS(1681), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81503,8 +86621,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, @@ -81514,38 +86630,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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [7128] = 6, + [7438] = 6, ACTIONS(3), 1, sym_comment, - STATE(1501), 1, + STATE(1549), 1, aux_sym__literal_repeat1, - STATE(597), 2, + STATE(1930), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, + ACTIONS(2550), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1210), 9, + STATE(1267), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81555,7 +86654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 38, + ACTIONS(2548), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81565,6 +86664,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, @@ -81594,131 +86694,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7197] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2409), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2412), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2415), 1, - anon_sym_DOLLAR, - ACTIONS(2418), 1, - sym__special_character, - ACTIONS(2421), 1, - anon_sym_DQUOTE, - ACTIONS(2424), 1, - aux_sym_number_token1, - ACTIONS(2427), 1, - aux_sym_number_token2, - ACTIONS(2430), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2433), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2436), 1, - anon_sym_BQUOTE, - ACTIONS(2439), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2445), 1, - sym_test_operator, - ACTIONS(2448), 1, - sym__brace_start, - STATE(1501), 1, - aux_sym__literal_repeat1, - ACTIONS(2442), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(597), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(2406), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1210), 9, - 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), 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, - [7296] = 22, + [7507] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, + ACTIONS(2558), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2560), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2464), 1, + ACTIONS(2562), 1, anon_sym_DOLLAR, - ACTIONS(2467), 1, + ACTIONS(2564), 1, sym__special_character, - ACTIONS(2470), 1, + ACTIONS(2566), 1, anon_sym_DQUOTE, - ACTIONS(2473), 1, + ACTIONS(2568), 1, aux_sym_number_token1, - ACTIONS(2476), 1, + ACTIONS(2570), 1, aux_sym_number_token2, - ACTIONS(2479), 1, + ACTIONS(2572), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2482), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2485), 1, + ACTIONS(2576), 1, anon_sym_BQUOTE, - ACTIONS(2488), 1, + ACTIONS(2578), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2494), 1, + ACTIONS(2582), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2497), 1, + ACTIONS(2584), 1, sym_test_operator, - ACTIONS(2500), 1, + ACTIONS(2586), 1, sym__brace_start, - STATE(1464), 1, + STATE(1925), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + ACTIONS(2556), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2491), 2, + ACTIONS(2580), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, + STATE(641), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2451), 3, + ACTIONS(2552), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1137), 9, + STATE(1306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81728,7 +86750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 22, + ACTIONS(2554), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81751,16 +86773,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, + [7608] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2503), 2, - anon_sym_esac, + ACTIONS(2502), 1, anon_sym_SEMI_SEMI, - ACTIONS(2505), 2, + ACTIONS(2504), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2243), 23, + ACTIONS(2500), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -81784,7 +86806,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(2498), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -81813,138 +86835,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [7464] = 23, + [7675] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(2591), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(2597), 1, 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, + ACTIONS(2600), 1, sym__special_character, - ACTIONS(2321), 1, - sym_variable_name, - ACTIONS(2323), 1, - sym_test_operator, - ACTIONS(2507), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1585), 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(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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, - [7567] = 24, - 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(2603), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(2606), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2609), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(2612), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(2615), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(2618), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(2621), 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(2627), 1, sym_test_operator, - STATE(1820), 1, + ACTIONS(2630), 1, + sym__brace_start, + STATE(1839), 1, aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1696), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(2624), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2315), 3, + STATE(631), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2588), 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(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81954,7 +86889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 19, + ACTIONS(2187), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81964,7 +86899,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,24 +86912,25 @@ 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, + [7774] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(2637), 1, sym_variable_name, - STATE(983), 1, + STATE(1348), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(2635), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ACTIONS(2633), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -82000,7 +86939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 38, + ACTIONS(1249), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82011,7 +86950,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, @@ -82039,58 +86978,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7745] = 24, + [7847] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 1, + ACTIONS(2344), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2111), 1, + ACTIONS(2346), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2114), 1, + ACTIONS(2348), 1, anon_sym_DOLLAR, - ACTIONS(2120), 1, + ACTIONS(2352), 1, anon_sym_DQUOTE, - ACTIONS(2123), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(2126), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(2129), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2132), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2135), 1, + ACTIONS(2362), 1, anon_sym_BQUOTE, - ACTIONS(2138), 1, + ACTIONS(2364), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2153), 1, + ACTIONS(2374), 1, sym__brace_start, - ACTIONS(2512), 1, + ACTIONS(2508), 1, sym__special_character, - ACTIONS(2515), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2518), 1, + ACTIONS(2512), 1, sym_variable_name, - ACTIONS(2521), 1, + ACTIONS(2514), 1, sym_test_operator, - STATE(1820), 1, + ACTIONS(2546), 1, + aux_sym__simple_variable_name_token1, + STATE(2178), 1, aux_sym__literal_repeat1, - STATE(6652), 1, + STATE(7259), 1, sym_subscript, - ACTIONS(1705), 2, + ACTIONS(1683), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2141), 2, + ACTIONS(2366), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2509), 3, + ACTIONS(2506), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(603), 3, + STATE(621), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1666), 9, + STATE(1859), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82100,7 +87039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1703), 19, + ACTIONS(1681), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82120,24 +87059,24 @@ 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, + [7952] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(2637), 1, sym_variable_name, - STATE(983), 1, + STATE(1348), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(2635), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2215), 8, + ACTIONS(2633), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -82146,7 +87085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 38, + ACTIONS(1237), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82157,7 +87096,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, @@ -82185,114 +87124,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7923] = 28, - ACTIONS(3), 1, + [8025] = 5, + ACTIONS(71), 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, - 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(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, - 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), 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, - [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, + ACTIONS(2641), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2639), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2500), 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, @@ -82303,7 +87157,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(2498), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -82332,58 +87186,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [8103] = 24, + [8092] = 6, 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, - 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(2047), 1, - anon_sym_BQUOTE, - ACTIONS(2049), 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, - sym_test_operator, - ACTIONS(2524), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, + STATE(1547), 1, aux_sym__literal_repeat1, - STATE(6652), 1, - sym_subscript, - ACTIONS(1585), 2, + STATE(1914), 1, + sym_concatenation, + ACTIONS(2645), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, 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(601), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1666), 9, + STATE(1078), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82393,7 +87209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 19, + ACTIONS(2643), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82403,7 +87219,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, @@ -82413,114 +87232,38 @@ 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(433), 1, - anon_sym_LBRACK, - ACTIONS(435), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(445), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(449), 1, anon_sym_DOLLAR, - ACTIONS(451), 1, sym__special_character, - ACTIONS(453), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, + sym_raw_string, + sym_ansi_c_string, 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(473), 1, - sym_variable_name, - 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(2528), 1, - anon_sym_LPAREN, - STATE(524), 1, - sym_command_name, - STATE(942), 1, - aux_sym_command_repeat1, - STATE(943), 1, - aux_sym__literal_repeat1, - STATE(1056), 1, - sym_concatenation, - STATE(1604), 1, - sym_variable_assignment, - STATE(4805), 1, - sym_command, - STATE(6697), 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(3491), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4789), 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(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, - [8336] = 6, + sym_word, + [8161] = 6, ACTIONS(3), 1, sym_comment, - STATE(1803), 1, + STATE(1902), 1, aux_sym__literal_repeat1, - STATE(622), 2, + STATE(643), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2158), 6, + ACTIONS(2178), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1325), 9, + STATE(1427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82530,7 +87273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 36, + ACTIONS(2176), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82541,6 +87284,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, @@ -82567,145 +87312,118 @@ static const uint16_t ts_small_parse_table[] = { 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(71), 1, + [8230] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(135), 1, + ACTIONS(1508), 1, + anon_sym_DQUOTE, + ACTIONS(2651), 1, sym_variable_name, - ACTIONS(308), 1, + STATE(1320), 1, + sym_string, + ACTIONS(2649), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2647), 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(1237), 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_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, - ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, - anon_sym_DOLLAR, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, + sym__special_character, + 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(771), 1, - sym__special_character, - 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(2532), 1, - anon_sym_LPAREN, - STATE(532), 1, - sym_command_name, - STATE(961), 1, - aux_sym_command_repeat1, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(2030), 1, - sym_variable_assignment, - STATE(4726), 1, - sym_command, - STATE(6664), 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(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(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, - [8532] = 22, + sym_word, + [8303] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2558), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2560), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2562), 1, anon_sym_DOLLAR, - ACTIONS(2542), 1, + ACTIONS(2564), 1, sym__special_character, - ACTIONS(2544), 1, + ACTIONS(2566), 1, anon_sym_DQUOTE, - ACTIONS(2546), 1, + ACTIONS(2568), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(2570), 1, aux_sym_number_token2, - ACTIONS(2550), 1, + ACTIONS(2572), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2552), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2554), 1, + ACTIONS(2576), 1, anon_sym_BQUOTE, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2560), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2562), 1, + ACTIONS(2584), 1, sym_test_operator, - ACTIONS(2564), 1, + ACTIONS(2586), 1, sym__brace_start, - STATE(1801), 1, + ACTIONS(2657), 1, + aux_sym__simple_variable_name_token1, + STATE(1925), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2558), 2, + ACTIONS(2580), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(614), 2, + ACTIONS(2655), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(629), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2534), 3, + ACTIONS(2552), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(1306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82715,7 +87433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 21, + ACTIONS(2653), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82725,6 +87443,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, @@ -82737,105 +87456,47 @@ 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, + [8404] = 8, ACTIONS(3), 1, sym_comment, - STATE(1542), 1, - aux_sym__literal_repeat1, - STATE(1709), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, + ACTIONS(1605), 1, + anon_sym_DQUOTE, + ACTIONS(2663), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1240), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1376), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - 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, - 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, - [8700] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1627), 1, - aux_sym__literal_repeat1, - STATE(1833), 1, - sym_concatenation, - ACTIONS(2277), 5, + ACTIONS(2661), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1266), 9, - 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), 38, + ACTIONS(2659), 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(1249), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82844,12 +87505,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, @@ -82861,53 +87521,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [8768] = 22, + [8477] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2672), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2675), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2678), 1, anon_sym_DOLLAR, - ACTIONS(2542), 1, + ACTIONS(2681), 1, sym__special_character, - ACTIONS(2544), 1, + ACTIONS(2684), 1, anon_sym_DQUOTE, - ACTIONS(2546), 1, + ACTIONS(2687), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(2690), 1, aux_sym_number_token2, - ACTIONS(2550), 1, + ACTIONS(2693), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2552), 1, + ACTIONS(2696), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2554), 1, + ACTIONS(2699), 1, anon_sym_BQUOTE, - ACTIONS(2556), 1, + ACTIONS(2702), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2562), 1, + ACTIONS(2708), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2711), 1, sym_test_operator, - ACTIONS(2564), 1, + ACTIONS(2714), 1, sym__brace_start, - ACTIONS(2566), 1, - aux_sym__simple_variable_name_token1, - STATE(1801), 1, + STATE(1925), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + ACTIONS(2670), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2558), 2, + ACTIONS(2705), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, + STATE(641), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2534), 3, + ACTIONS(2665), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(1306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82917,7 +87577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 21, + ACTIONS(2668), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82927,6 +87587,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, @@ -82939,21 +87600,21 @@ 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, + [8578] = 6, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, + STATE(1902), 1, aux_sym__literal_repeat1, - STATE(616), 2, + STATE(643), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2162), 5, + ACTIONS(2182), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1355), 9, + STATE(1427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82963,7 +87624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 37, + ACTIONS(2180), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82973,8 +87634,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, @@ -83001,52 +87663,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [8936] = 21, + [8647] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(2720), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(2726), 1, anon_sym_DOLLAR, - ACTIONS(2580), 1, + ACTIONS(2729), 1, sym__special_character, - ACTIONS(2583), 1, + ACTIONS(2732), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(2735), 1, aux_sym_number_token1, - ACTIONS(2589), 1, + ACTIONS(2738), 1, aux_sym_number_token2, - ACTIONS(2592), 1, + ACTIONS(2741), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, + ACTIONS(2744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, + ACTIONS(2747), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, + ACTIONS(2750), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2607), 1, + ACTIONS(2756), 1, sym_test_operator, - ACTIONS(2610), 1, + ACTIONS(2759), 1, sym__brace_start, - STATE(1814), 1, + STATE(1902), 1, aux_sym__literal_repeat1, - ACTIONS(2604), 2, + ACTIONS(2753), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(616), 2, + STATE(643), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + ACTIONS(2189), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2568), 3, + ACTIONS(2717), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1355), 9, + STATE(1427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83056,7 +87718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(2187), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83066,8 +87728,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, @@ -83078,51 +87741,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [9034] = 21, + [8746] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2617), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, - sym__special_character, - ACTIONS(2623), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(2629), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(2635), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2639), 1, - sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, sym__brace_start, - STATE(1903), 1, + ACTIONS(2766), 1, + anon_sym_LT_LT_LT, + ACTIONS(2768), 1, + sym__special_character, + ACTIONS(2770), 1, + sym_test_operator, + STATE(690), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, + sym_concatenation, + STATE(4999), 1, + sym_subshell, + ACTIONS(1456), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2637), 2, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2613), 3, + ACTIONS(2764), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2762), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(2185), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83132,19 +87809,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 22, - anon_sym_SEMI, + ACTIONS(1454), 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, @@ -83154,229 +87826,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, - [9132] = 36, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [8859] = 8, + ACTIONS(3), 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, - ACTIONS(316), 1, + ACTIONS(1605), 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, + ACTIONS(2663), 1, sym_variable_name, - ACTIONS(338), 1, + STATE(1376), 1, + sym_string, + ACTIONS(2661), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(340), 1, + sym__bare_dollar, 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(538), 1, - sym_command_name, - STATE(938), 1, - aux_sym_command_repeat1, - STATE(1237), 1, - aux_sym__literal_repeat1, - STATE(1350), 1, - sym_concatenation, - STATE(2285), 1, - sym_variable_assignment, - STATE(4726), 1, - sym_command, - STATE(6650), 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(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, + ACTIONS(2659), 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(1237), 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_RBRACE, + 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(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, - [9260] = 29, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2651), 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, - 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, + sym_raw_string, + sym_ansi_c_string, 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(702), 1, - aux_sym_command_repeat2, - STATE(2399), 1, - aux_sym__literal_repeat1, - STATE(2449), 1, - sym_concatenation, - STATE(2488), 1, - sym_herestring_redirect, - STATE(5570), 1, - sym_subshell, - 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(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_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, - [9374] = 21, + sym_word, + [8932] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(2518), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2617), 1, + ACTIONS(2520), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, + ACTIONS(2522), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(2524), 1, sym__special_character, - ACTIONS(2623), 1, + ACTIONS(2526), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, + ACTIONS(2528), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(2530), 1, aux_sym_number_token2, - ACTIONS(2629), 1, + ACTIONS(2532), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, + ACTIONS(2534), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, + ACTIONS(2536), 1, anon_sym_BQUOTE, - ACTIONS(2635), 1, + ACTIONS(2538), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2639), 1, + ACTIONS(2542), 1, sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(2544), 1, sym__brace_start, - STATE(1903), 1, + STATE(1839), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2637), 2, + ACTIONS(2540), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, + STATE(631), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2613), 3, + ACTIONS(2516), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83386,7 +87945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 22, + ACTIONS(2176), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83396,6 +87955,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, @@ -83409,51 +87969,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [9472] = 21, - ACTIONS(3), 1, + [9031] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(2639), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2641), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2500), 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, - ACTIONS(2691), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2694), 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, + ACTIONS(2498), 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(2697), 1, sym__special_character, - ACTIONS(2700), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [9098] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2346), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2352), 1, anon_sym_DQUOTE, - ACTIONS(2703), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(2706), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(2709), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2712), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2715), 1, + ACTIONS(2362), 1, anon_sym_BQUOTE, - ACTIONS(2718), 1, + ACTIONS(2364), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2724), 1, - sym_test_operator, - ACTIONS(2727), 1, + ACTIONS(2374), 1, sym__brace_start, - STATE(1903), 1, + ACTIONS(2508), 1, + sym__special_character, + ACTIONS(2512), 1, + sym_variable_name, + ACTIONS(2514), 1, + sym_test_operator, + ACTIONS(2772), 1, + aux_sym__simple_variable_name_token1, + STATE(2178), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(7259), 1, + sym_subscript, + ACTIONS(1776), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2721), 2, + ACTIONS(2366), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2685), 3, + ACTIONS(2506), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1348), 9, + STATE(633), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1859), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83463,7 +88092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(1774), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83474,8 +88103,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, @@ -83485,75 +88112,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, - [9570] = 21, + [9203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2736), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2739), 1, - anon_sym_DOLLAR, - ACTIONS(2742), 1, - sym__special_character, - ACTIONS(2745), 1, + ACTIONS(1508), 1, anon_sym_DQUOTE, - ACTIONS(2748), 1, - aux_sym_number_token1, - ACTIONS(2751), 1, - aux_sym_number_token2, - ACTIONS(2754), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2757), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2760), 1, - anon_sym_BQUOTE, - ACTIONS(2763), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2769), 1, + ACTIONS(2651), 1, + sym_variable_name, + STATE(1320), 1, + sym_string, + ACTIONS(2649), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(2772), 1, + sym__bare_dollar, sym__brace_start, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(2766), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(622), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2730), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2169), 4, - sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1325), 9, - 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), 20, + ACTIONS(2647), 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(1249), 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_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83562,22 +88161,81 @@ 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, - [9668] = 6, + 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, + [9276] = 28, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1641), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1643), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1655), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1659), 1, + anon_sym_BQUOTE, + ACTIONS(1661), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(2766), 1, + anon_sym_LT_LT_LT, + ACTIONS(2768), 1, + sym__special_character, + ACTIONS(2770), 1, + sym_test_operator, + STATE(725), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(616), 2, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + STATE(5125), 1, + sym_subshell, + ACTIONS(1420), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1355), 9, + ACTIONS(1663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2764), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2762), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2185), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83587,18 +88245,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 37, - anon_sym_SEMI, + ACTIONS(1416), 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, @@ -83608,106 +88262,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, 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, - [9736] = 36, + [9389] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(689), 1, + ACTIONS(167), 1, anon_sym_LBRACK, - ACTIONS(691), 1, + ACTIONS(171), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(701), 1, + ACTIONS(215), 1, + sym_variable_name, + ACTIONS(1093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(1095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(705), 1, + ACTIONS(1097), 1, anon_sym_DOLLAR, - ACTIONS(707), 1, + ACTIONS(1099), 1, sym__special_character, - ACTIONS(709), 1, + ACTIONS(1101), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(1105), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(1107), 1, aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(1113), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(729), 1, - sym_variable_name, - ACTIONS(731), 1, + ACTIONS(1121), 1, sym_test_operator, - ACTIONS(733), 1, + ACTIONS(1123), 1, sym__brace_start, - ACTIONS(1352), 1, + ACTIONS(1406), 1, anon_sym_LT_LT_LT, - ACTIONS(1354), 1, + ACTIONS(1408), 1, sym_file_descriptor, - ACTIONS(2775), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(2777), 1, + ACTIONS(2776), 1, anon_sym_LPAREN, - STATE(526), 1, + STATE(657), 1, sym_command_name, - STATE(949), 1, + STATE(1059), 1, aux_sym_command_repeat1, - STATE(1089), 1, + STATE(2584), 1, aux_sym__literal_repeat1, - STATE(1220), 1, + STATE(2660), 1, sym_concatenation, - STATE(1813), 1, + STATE(3180), 1, sym_variable_assignment, - STATE(4953), 1, + STATE(6054), 1, sym_command, - STATE(6673), 1, + STATE(7261), 1, sym_subscript, - ACTIONS(711), 2, + ACTIONS(1103), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(725), 2, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, + ACTIONS(1404), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3491), 2, + STATE(3937), 2, sym_file_redirect, sym_herestring_redirect, - STATE(4993), 2, + STATE(6116), 2, sym_subshell, sym_test_command, - ACTIONS(1346), 3, + ACTIONS(1400), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(1344), 5, + ACTIONS(1398), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(865), 9, + STATE(2137), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83717,32 +88354,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9864] = 8, + [9517] = 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(1761), 1, + aux_sym__literal_repeat1, + STATE(2123), 1, + sym_concatenation, + ACTIONS(2645), 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(1361), 9, + 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(2643), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83752,7 +88387,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, @@ -83765,11 +88399,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 +88416,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [9936] = 36, + [9585] = 36, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(135), 1, + sym_variable_name, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, + ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(51), 1, - sym__special_character, - 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(71), 1, - sym_comment, - ACTIONS(75), 1, - sym_variable_name, - ACTIONS(77), 1, - sym_test_operator, - ACTIONS(79), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(1352), 1, + ACTIONS(767), 1, + sym__special_character, + ACTIONS(771), 1, + sym_test_operator, + ACTIONS(1406), 1, anon_sym_LT_LT_LT, - ACTIONS(1354), 1, + ACTIONS(1408), 1, sym_file_descriptor, - ACTIONS(2532), 1, - anon_sym_LPAREN, - ACTIONS(2787), 1, + ACTIONS(2778), 1, sym_word, - STATE(528), 1, + ACTIONS(2780), 1, + anon_sym_LPAREN, + STATE(564), 1, sym_command_name, - STATE(937), 1, + STATE(1069), 1, aux_sym_command_repeat1, - STATE(1181), 1, + STATE(1422), 1, aux_sym__literal_repeat1, - STATE(1431), 1, + STATE(1614), 1, sym_concatenation, - STATE(2121), 1, + STATE(2501), 1, sym_variable_assignment, - STATE(4726), 1, + STATE(5032), 1, sym_command, - STATE(6655), 1, + STATE(7230), 1, sym_subscript, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1350), 2, + ACTIONS(769), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1404), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3491), 2, + STATE(3937), 2, sym_file_redirect, sym_herestring_redirect, - STATE(4724), 2, + STATE(5026), 2, sym_subshell, sym_test_command, - ACTIONS(1346), 3, + ACTIONS(1400), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(1344), 5, + ACTIONS(1398), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(944), 9, + STATE(1064), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83873,32 +88508,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [10064] = 8, + [9713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, - anon_sym_DQUOTE, - ACTIONS(2793), 1, - sym_variable_name, - STATE(1340), 1, - sym_string, - ACTIONS(2791), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + STATE(1769), 1, + aux_sym__literal_repeat1, + STATE(2125), 1, + sym_concatenation, + ACTIONS(2550), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2789), 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, + aux_sym_heredoc_redirect_token1, + STATE(1362), 9, + 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(2548), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83908,7 +88541,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, @@ -83921,11 +88553,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, @@ -83937,32 +88570,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10136] = 8, + [9781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, - anon_sym_DQUOTE, - ACTIONS(2793), 1, - sym_variable_name, - STATE(1340), 1, - sym_string, - ACTIONS(2791), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(2058), 1, + aux_sym__literal_repeat1, + STATE(667), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2178), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2789), 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(1628), 9, + 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(2176), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83972,10 +88604,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83985,11 +88615,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, @@ -84001,22 +88632,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10208] = 6, + [9849] = 6, ACTIONS(3), 1, sym_comment, - STATE(1803), 1, + STATE(2135), 1, aux_sym__literal_repeat1, - STATE(622), 2, + STATE(689), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2162), 6, + ACTIONS(2178), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1325), 9, + STATE(1574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84026,7 +88657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 36, + ACTIONS(2176), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84063,153 +88694,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10276] = 8, - ACTIONS(3), 1, + [9917] = 29, + ACTIONS(71), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(2776), 1, + anon_sym_LPAREN, + ACTIONS(2782), 1, + sym_word, + ACTIONS(2786), 1, + anon_sym_LT_LT_LT, + ACTIONS(2788), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2790), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2792), 1, + anon_sym_DOLLAR, + ACTIONS(2794), 1, + sym__special_character, + ACTIONS(2796), 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(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, - 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, - 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, - 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, - ACTIONS(316), 1, - anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(336), 1, - sym_variable_name, - ACTIONS(338), 1, + ACTIONS(2814), 1, sym_test_operator, - ACTIONS(340), 1, + ACTIONS(2816), 1, + sym__bare_dollar, + ACTIONS(2818), 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(778), 1, + aux_sym_command_repeat2, + STATE(2664), 1, aux_sym__literal_repeat1, - STATE(1350), 1, + STATE(2849), 1, + sym_herestring_redirect, + STATE(2908), 1, sym_concatenation, - STATE(2030), 1, - sym_variable_assignment, - STATE(4726), 1, - sym_command, - STATE(6650), 1, - sym_subscript, - ACTIONS(318), 2, + STATE(6069), 1, + sym_subshell, + ACTIONS(2784), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2798), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(332), 2, + ACTIONS(2812), 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, + ACTIONS(1416), 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(1126), 9, + STATE(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84219,115 +88768,62 @@ 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, + ACTIONS(1420), 10, 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, - 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, - 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, + [10031] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2799), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2801), 1, + ACTIONS(2826), 1, anon_sym_DOLLAR, - ACTIONS(2803), 1, + ACTIONS(2828), 1, sym__special_character, - ACTIONS(2805), 1, + ACTIONS(2830), 1, anon_sym_DQUOTE, - ACTIONS(2807), 1, + ACTIONS(2832), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(2834), 1, aux_sym_number_token2, - ACTIONS(2811), 1, + ACTIONS(2836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2813), 1, + ACTIONS(2838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2815), 1, + ACTIONS(2840), 1, anon_sym_BQUOTE, - ACTIONS(2817), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2821), 1, + ACTIONS(2846), 1, sym_test_operator, - ACTIONS(2823), 1, + ACTIONS(2848), 1, sym__brace_start, - STATE(1722), 1, + STATE(2177), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2819), 2, + ACTIONS(2844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, + STATE(660), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2795), 3, + ACTIONS(2820), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1292), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84337,7 +88833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 22, + ACTIONS(2176), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84347,7 +88843,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, @@ -84360,143 +88855,52 @@ 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, - sym_comment, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(171), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(215), 1, - sym_variable_name, - ACTIONS(1039), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, - anon_sym_DOLLAR, - ACTIONS(1045), 1, - sym__special_character, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - 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(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, - aux_sym__literal_repeat1, - STATE(2412), 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, - 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1879), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [10774] = 21, + [10129] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2799), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2801), 1, + ACTIONS(2826), 1, anon_sym_DOLLAR, - ACTIONS(2803), 1, + ACTIONS(2828), 1, sym__special_character, - ACTIONS(2805), 1, + ACTIONS(2830), 1, anon_sym_DQUOTE, - ACTIONS(2807), 1, + ACTIONS(2832), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(2834), 1, aux_sym_number_token2, - ACTIONS(2811), 1, + ACTIONS(2836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2813), 1, + ACTIONS(2838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2815), 1, + ACTIONS(2840), 1, anon_sym_BQUOTE, - ACTIONS(2817), 1, + ACTIONS(2842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2821), 1, + ACTIONS(2846), 1, sym_test_operator, - ACTIONS(2823), 1, + ACTIONS(2848), 1, sym__brace_start, - STATE(1722), 1, + STATE(2177), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2819), 2, + ACTIONS(2844), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(638), 2, + STATE(660), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2795), 3, + ACTIONS(2820), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1292), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84506,7 +88910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 22, + ACTIONS(2180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84516,7 +88920,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 +88932,52 @@ 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, + [10227] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(2853), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2833), 1, + ACTIONS(2856), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2836), 1, + ACTIONS(2859), 1, anon_sym_DOLLAR, - ACTIONS(2839), 1, + ACTIONS(2862), 1, sym__special_character, - ACTIONS(2842), 1, + ACTIONS(2865), 1, anon_sym_DQUOTE, - ACTIONS(2845), 1, + ACTIONS(2868), 1, aux_sym_number_token1, - ACTIONS(2848), 1, + ACTIONS(2871), 1, aux_sym_number_token2, - ACTIONS(2851), 1, + ACTIONS(2874), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2854), 1, + ACTIONS(2877), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2857), 1, + ACTIONS(2880), 1, anon_sym_BQUOTE, - ACTIONS(2860), 1, + ACTIONS(2883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2866), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2869), 1, + ACTIONS(2889), 1, sym_test_operator, - ACTIONS(2872), 1, + ACTIONS(2892), 1, sym__brace_start, - STATE(1801), 1, + STATE(2177), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2863), 2, + ACTIONS(2886), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, + STATE(660), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2827), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2850), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1324), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84585,7 +88987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 21, + ACTIONS(2187), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84607,143 +89009,22 @@ 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_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(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, - anon_sym_LPAREN, - ACTIONS(2875), 1, - sym_word, - STATE(581), 1, - sym_command_name, - STATE(974), 1, - aux_sym_command_repeat1, - STATE(1237), 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, - 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, - 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_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [11100] = 21, + [10325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, - 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, - 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, + STATE(2171), 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, + STATE(678), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2877), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1292), 9, + ACTIONS(2178), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1631), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84753,7 +89034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(2176), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84763,10 +89044,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, @@ -84776,63 +89055,80 @@ 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, + [10393] = 29, ACTIONS(71), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2649), 1, + ACTIONS(2776), 1, anon_sym_LPAREN, - ACTIONS(2651), 1, + ACTIONS(2782), 1, + sym_word, + ACTIONS(2786), 1, anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(2794), 1, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(2814), 1, sym_test_operator, - ACTIONS(2681), 1, + ACTIONS(2816), 1, sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(2818), 1, sym__brace_start, - STATE(695), 1, + STATE(782), 1, aux_sym_command_repeat2, - STATE(2399), 1, + STATE(2664), 1, aux_sym__literal_repeat1, - STATE(2449), 1, - sym_concatenation, - STATE(2488), 1, + STATE(2849), 1, sym_herestring_redirect, - STATE(5593), 1, + STATE(2908), 1, + sym_concatenation, + STATE(6099), 1, sym_subshell, - ACTIONS(2647), 2, + ACTIONS(2784), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2663), 2, + ACTIONS(2798), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2677), 2, + ACTIONS(2812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1400), 7, + ACTIONS(1454), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -84840,7 +89136,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(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84850,7 +89146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1402), 10, + ACTIONS(1456), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84861,50 +89157,89 @@ 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, - ACTIONS(3), 1, + [10507] = 36, + ACTIONS(71), 1, sym_comment, - ACTIONS(2924), 1, + ACTIONS(388), 1, + anon_sym_LBRACK, + ACTIONS(390), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(400), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2926), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2928), 1, + ACTIONS(404), 1, anon_sym_DOLLAR, - ACTIONS(2930), 1, + ACTIONS(406), 1, sym__special_character, - ACTIONS(2932), 1, + ACTIONS(408), 1, anon_sym_DQUOTE, - ACTIONS(2934), 1, + ACTIONS(412), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(414), 1, aux_sym_number_token2, - ACTIONS(2938), 1, + ACTIONS(416), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2940), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2942), 1, + ACTIONS(420), 1, anon_sym_BQUOTE, - ACTIONS(2944), 1, + ACTIONS(422), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2948), 1, + ACTIONS(428), 1, + sym_variable_name, + ACTIONS(430), 1, sym_test_operator, - ACTIONS(2950), 1, + ACTIONS(432), 1, sym__brace_start, - STATE(4245), 1, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2895), 1, + sym_word, + ACTIONS(2897), 1, + anon_sym_LPAREN, + STATE(554), 1, + sym_command_name, + STATE(944), 1, + aux_sym_command_repeat1, + STATE(945), 1, aux_sym__literal_repeat1, - STATE(4580), 1, + STATE(1132), 1, sym_concatenation, - ACTIONS(2273), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2922), 3, + STATE(1659), 1, + sym_variable_assignment, + STATE(5382), 1, + sym_command, + STATE(7211), 1, + sym_subscript, + ACTIONS(410), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4133), 9, + ACTIONS(424), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5381), 2, + sym_subshell, + sym_test_command, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(876), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84914,74 +89249,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 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_LT_LT_LT, - [11410] = 21, + [10635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2926), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2928), 1, - anon_sym_DOLLAR, - ACTIONS(2930), 1, - sym__special_character, - ACTIONS(2932), 1, - anon_sym_DQUOTE, - ACTIONS(2934), 1, - aux_sym_number_token1, - ACTIONS(2936), 1, - aux_sym_number_token2, - ACTIONS(2938), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2940), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2942), 1, - anon_sym_BQUOTE, - ACTIONS(2944), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2950), 1, - sym__brace_start, - ACTIONS(2954), 1, - sym_test_operator, - STATE(4198), 1, + STATE(2135), 1, aux_sym__literal_repeat1, - STATE(4643), 1, + STATE(689), 2, sym_concatenation, - ACTIONS(2277), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2182), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2952), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4165), 9, + STATE(1574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84991,56 +89274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 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_LT_LT_LT, - [11508] = 8, - 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(1197), 3, - sym_file_descriptor, - 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(1195), 38, + ACTIONS(2180), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85050,10 +89284,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, @@ -85063,11 +89294,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, @@ -85079,61 +89311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11580] = 26, + [10703] = 6, 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(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(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + STATE(2171), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(678), 2, sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1579), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2182), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - 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(1631), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85143,14 +89335,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1577), 16, + ACTIONS(2180), 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, @@ -85160,53 +89356,70 @@ 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, + 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, + [10771] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, + ACTIONS(2905), 1, anon_sym_DOLLAR, - ACTIONS(2968), 1, + ACTIONS(2907), 1, sym__special_character, - ACTIONS(2971), 1, + ACTIONS(2909), 1, anon_sym_DQUOTE, - ACTIONS(2974), 1, + ACTIONS(2911), 1, aux_sym_number_token1, - ACTIONS(2977), 1, + ACTIONS(2913), 1, aux_sym_number_token2, - ACTIONS(2980), 1, + ACTIONS(2915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, + ACTIONS(2917), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, + ACTIONS(2919), 1, anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(2921), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2995), 1, + ACTIONS(2925), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2998), 1, + ACTIONS(2927), 1, sym_test_operator, - ACTIONS(3001), 1, + ACTIONS(2929), 1, sym__brace_start, - STATE(2045), 1, + STATE(2021), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + ACTIONS(2655), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, + ACTIONS(2923), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(644), 2, + STATE(675), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2956), 3, + ACTIONS(2899), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1615), 9, + STATE(1556), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85216,7 +89429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 20, + ACTIONS(2653), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85226,8 +89439,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,51 +89451,52 @@ 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, + [10871] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(2934), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(2937), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(2940), 1, anon_sym_DOLLAR, - ACTIONS(3012), 1, + ACTIONS(2943), 1, sym__special_character, - ACTIONS(3014), 1, + ACTIONS(2946), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(2949), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2952), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(2955), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(2958), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(2961), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(2964), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3030), 1, + ACTIONS(2970), 1, sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(2973), 1, sym__brace_start, - STATE(2112), 1, + STATE(2058), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(2967), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(647), 2, + STATE(667), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3004), 3, + ACTIONS(2189), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2931), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1653), 9, + STATE(1628), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85291,7 +89506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(2187), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85301,8 +89516,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85313,61 +89528,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [11883] = 21, + [10969] = 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(2978), 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(2982), 1, + sym_variable_name, + STATE(1347), 1, + sym_string, + ACTIONS(2980), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3032), 1, sym__brace_start, - STATE(2112), 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(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(2160), 21, + ACTIONS(2976), 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(1249), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85377,8 +89563,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, @@ -85388,62 +89576,48 @@ 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, - [11980] = 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(3046), 1, sym__special_character, - ACTIONS(3049), 1, - 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(3073), 1, - sym_test_operator, - ACTIONS(3076), 1, - sym__brace_start, - 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(647), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3034), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1653), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [11041] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2978), 1, + anon_sym_DQUOTE, + ACTIONS(2982), 1, + sym_variable_name, + STATE(1347), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(2980), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2976), 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(1237), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85453,8 +89627,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, @@ -85464,108 +89640,48 @@ 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, - [12077] = 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(3091), 1, + sym_raw_string, + sym_ansi_c_string, 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(3105), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3107), 1, - sym_test_operator, - ACTIONS(3109), 1, - sym__brace_start, - 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(657), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3079), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1615), 9, - 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), 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, - [12176] = 6, + [11113] = 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(2526), 1, + anon_sym_DQUOTE, + ACTIONS(2988), 1, sym_variable_name, + STATE(1570), 1, + sym_string, + ACTIONS(2986), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 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(2984), 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(1249), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85575,8 +89691,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 +89704,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,23 +89720,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12243] = 8, + [11185] = 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, + 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(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2780), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + sym_word, + STATE(578), 1, + sym_command_name, + STATE(1068), 1, + aux_sym_command_repeat1, + STATE(1422), 1, + aux_sym__literal_repeat1, + STATE(1614), 1, + sym_concatenation, + STATE(2501), 1, + sym_variable_assignment, + STATE(5032), 1, + sym_command, + STATE(7258), 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(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5026), 2, + sym_subshell, + sym_test_command, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1236), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [11313] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(2637), 1, sym_variable_name, - STATE(1528), 1, + STATE(1348), 1, sym_string, - ACTIONS(3113), 2, + ACTIONS(2635), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3111), 8, + ACTIONS(2633), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85628,20 +89838,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + ACTIONS(1249), 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, @@ -85666,42 +89876,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12314] = 6, + [11385] = 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(1649), 1, + anon_sym_DQUOTE, + ACTIONS(2637), 1, sym_variable_name, + STATE(1348), 1, + sym_string, + ACTIONS(2635), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1422), 9, - 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), 37, + ACTIONS(2633), 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(1237), 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, @@ -85710,12 +89924,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, @@ -85727,50 +89940,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12381] = 21, + [11457] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(2995), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3121), 1, + ACTIONS(2998), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3123), 1, + ACTIONS(3001), 1, anon_sym_DOLLAR, - ACTIONS(3125), 1, + ACTIONS(3004), 1, sym__special_character, - ACTIONS(3127), 1, + ACTIONS(3007), 1, anon_sym_DQUOTE, - ACTIONS(3129), 1, + ACTIONS(3010), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(3013), 1, aux_sym_number_token2, - ACTIONS(3133), 1, + ACTIONS(3016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3135), 1, + ACTIONS(3019), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3137), 1, + ACTIONS(3022), 1, anon_sym_BQUOTE, - ACTIONS(3139), 1, + ACTIONS(3025), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3143), 1, + ACTIONS(3031), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3034), 1, sym_test_operator, - ACTIONS(3145), 1, + ACTIONS(3037), 1, sym__brace_start, - STATE(4405), 1, + STATE(2021), 1, aux_sym__literal_repeat1, - STATE(4910), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2670), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3141), 2, + ACTIONS(3028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3117), 3, + STATE(674), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2992), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4268), 9, + STATE(1556), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85780,7 +89996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 22, + ACTIONS(2668), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85790,7 +90006,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, @@ -85803,50 +90018,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, + [11557] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3121), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3123), 1, + ACTIONS(2905), 1, anon_sym_DOLLAR, - ACTIONS(3125), 1, + ACTIONS(2907), 1, sym__special_character, - ACTIONS(3127), 1, + ACTIONS(2909), 1, anon_sym_DQUOTE, - ACTIONS(3129), 1, + ACTIONS(2911), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(2913), 1, aux_sym_number_token2, - ACTIONS(3133), 1, + ACTIONS(2915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3135), 1, + ACTIONS(2917), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3137), 1, + ACTIONS(2919), 1, anon_sym_BQUOTE, - ACTIONS(3139), 1, + ACTIONS(2921), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3145), 1, - sym__brace_start, - ACTIONS(3149), 1, + ACTIONS(2927), 1, sym_test_operator, - STATE(4419), 1, + ACTIONS(2929), 1, + sym__brace_start, + ACTIONS(3040), 1, + aux_sym__simple_variable_name_token1, + STATE(2021), 1, aux_sym__literal_repeat1, - STATE(4696), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2556), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3141), 2, + ACTIONS(2923), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3147), 3, + STATE(674), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2899), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4168), 9, + STATE(1556), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85856,7 +90074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 22, + ACTIONS(2554), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85866,7 +90084,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,176 +90096,236 @@ 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, - 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, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1301), 9, - 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), 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, + [11657] = 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, - sym_raw_string, - sym_ansi_c_string, + 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [12642] = 6, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - STATE(1809), 1, - aux_sym__literal_repeat1, - STATE(2020), 1, - sym_concatenation, - ACTIONS(2277), 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(1344), 9, - 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2780), 1, + anon_sym_LPAREN, + ACTIONS(3042), 1, + sym_word, + STATE(558), 1, + sym_command_name, + STATE(1036), 1, + aux_sym_command_repeat1, + STATE(1321), 1, + aux_sym__literal_repeat1, + STATE(1602), 1, + sym_concatenation, + STATE(2210), 1, + sym_variable_assignment, + STATE(5032), 1, + sym_command, + STATE(7249), 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(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5026), 2, + sym_subshell, + sym_test_command, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, 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, + STATE(950), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [11785] = 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, + 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(336), 1, + sym_variable_name, + ACTIONS(338), 1, + sym_test_operator, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2780), 1, + anon_sym_LPAREN, + ACTIONS(2990), 1, + sym_word, + STATE(575), 1, + sym_command_name, + STATE(1006), 1, + aux_sym_command_repeat1, + STATE(1422), 1, + aux_sym__literal_repeat1, + STATE(1614), 1, + sym_concatenation, + STATE(2608), 1, + sym_variable_assignment, + STATE(5032), 1, + sym_command, + STATE(7258), 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, - [12709] = 22, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5026), 2, + sym_subshell, + sym_test_command, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1236), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [11913] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3050), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3160), 1, + ACTIONS(3053), 1, anon_sym_DOLLAR, - ACTIONS(3163), 1, + ACTIONS(3056), 1, sym__special_character, - ACTIONS(3166), 1, + ACTIONS(3059), 1, anon_sym_DQUOTE, - ACTIONS(3169), 1, + ACTIONS(3062), 1, aux_sym_number_token1, - ACTIONS(3172), 1, + ACTIONS(3065), 1, aux_sym_number_token2, - ACTIONS(3175), 1, + ACTIONS(3068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3178), 1, + ACTIONS(3071), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3181), 1, + ACTIONS(3074), 1, anon_sym_BQUOTE, - ACTIONS(3184), 1, + ACTIONS(3077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3190), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3193), 1, + ACTIONS(3083), 1, sym_test_operator, - ACTIONS(3196), 1, + ACTIONS(3086), 1, sym__brace_start, - STATE(1968), 1, + STATE(2171), 1, aux_sym__literal_repeat1, - ACTIONS(3187), 2, + ACTIONS(3080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(656), 2, + STATE(678), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2456), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2189), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3151), 3, + ACTIONS(3044), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1598), 9, + STATE(1631), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86058,7 +90335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 19, + ACTIONS(2187), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86068,6 +90345,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, @@ -86078,53 +90356,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12808] = 22, + anon_sym_LT_LT_LT, + [12011] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3087), 1, + ACTIONS(3097), 1, sym__special_character, - ACTIONS(3089), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3101), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3103), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(3109), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(3111), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3107), 1, + ACTIONS(3115), 1, sym_test_operator, - ACTIONS(3109), 1, + ACTIONS(3117), 1, sym__brace_start, - ACTIONS(3199), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, + STATE(2154), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3113), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(644), 2, + STATE(684), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3079), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3089), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1615), 9, + STATE(1595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86134,7 +90411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 20, + ACTIONS(2176), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86144,8 +90421,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, @@ -86155,23 +90434,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, + [12109] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(2526), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(2988), 1, sym_variable_name, - STATE(1528), 1, + STATE(1570), 1, sym_string, - ACTIONS(3113), 2, + ACTIONS(2986), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3111), 8, + ACTIONS(2984), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86180,7 +90459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1237), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86190,6 +90469,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, @@ -86218,52 +90498,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12978] = 21, + [12181] = 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(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(1069), 1, + sym__special_character, + ACTIONS(1075), 1, + sym_variable_name, + ACTIONS(1077), 1, + sym_test_operator, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2780), 1, + anon_sym_LPAREN, + ACTIONS(3119), 1, + sym_word, + STATE(650), 1, + sym_command_name, + STATE(1070), 1, + aux_sym_command_repeat1, + STATE(1422), 1, + aux_sym__literal_repeat1, + STATE(1614), 1, + sym_concatenation, + STATE(2501), 1, + sym_variable_assignment, + STATE(5032), 1, + sym_command, + STATE(7268), 1, + sym_subscript, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1071), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5026), 2, + sym_subshell, + sym_test_command, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1906), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [12309] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3205), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3207), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3209), 1, + ACTIONS(3097), 1, sym__special_character, - ACTIONS(3211), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3213), 1, + ACTIONS(3101), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3103), 1, aux_sym_number_token2, - ACTIONS(3217), 1, + ACTIONS(3105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3219), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3221), 1, + ACTIONS(3109), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, + ACTIONS(3111), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3227), 1, + ACTIONS(3115), 1, sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(3117), 1, sym__brace_start, - STATE(2027), 1, + STATE(2154), 1, aux_sym__literal_repeat1, - ACTIONS(3225), 2, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3113), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, + STATE(684), 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(3089), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(1595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86273,7 +90644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, + ACTIONS(2180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86283,7 +90654,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, @@ -86293,52 +90667,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [12407] = 36, + ACTIONS(71), 1, + sym_comment, + ACTIONS(689), 1, + anon_sym_LBRACK, + ACTIONS(691), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(701), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(703), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(705), 1, + anon_sym_DOLLAR, + ACTIONS(707), 1, + sym__special_character, + ACTIONS(709), 1, + anon_sym_DQUOTE, + ACTIONS(713), 1, + 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(729), 1, + sym_variable_name, + ACTIONS(731), 1, + sym_test_operator, + ACTIONS(733), 1, + sym__brace_start, + ACTIONS(1406), 1, anon_sym_LT_LT_LT, - [13075] = 21, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(3121), 1, + sym_word, + ACTIONS(3123), 1, + anon_sym_LPAREN, + STATE(557), 1, + sym_command_name, + STATE(970), 1, + aux_sym_command_repeat1, + STATE(1100), 1, + aux_sym__literal_repeat1, + STATE(1304), 1, + sym_concatenation, + STATE(2025), 1, + sym_variable_assignment, + STATE(5505), 1, + sym_command, + STATE(7215), 1, + sym_subscript, + ACTIONS(711), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(725), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5504), 2, + sym_subshell, + sym_test_command, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(907), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [12535] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3128), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3237), 1, + ACTIONS(3134), 1, anon_sym_DOLLAR, - ACTIONS(3239), 1, + ACTIONS(3137), 1, sym__special_character, - ACTIONS(3241), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3243), 1, + ACTIONS(3143), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(3146), 1, aux_sym_number_token2, - ACTIONS(3247), 1, + ACTIONS(3149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3249), 1, + ACTIONS(3152), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3251), 1, + ACTIONS(3155), 1, anon_sym_BQUOTE, - ACTIONS(3253), 1, + ACTIONS(3158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3257), 1, + ACTIONS(3164), 1, sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(3167), 1, sym__brace_start, - STATE(2110), 1, + STATE(2154), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3255), 2, + ACTIONS(3161), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, + STATE(684), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3231), 3, + ACTIONS(3125), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1524), 9, + STATE(1595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86348,7 +90813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(2187), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86358,6 +90823,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, @@ -86370,51 +90836,204 @@ 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, + [12633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + STATE(2058), 1, + aux_sym__literal_repeat1, + STATE(667), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2182), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1628), 9, + 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(2180), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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(3235), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3237), 1, anon_sym_DOLLAR, - ACTIONS(3239), 1, sym__special_character, - ACTIONS(3241), 1, anon_sym_DQUOTE, - ACTIONS(3243), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3245), 1, aux_sym_number_token2, - ACTIONS(3247), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3249), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3251), 1, anon_sym_BQUOTE, - ACTIONS(3253), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3257), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [12701] = 36, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, + sym_comment, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(819), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(821), 1, + anon_sym_DOLLAR, + ACTIONS(823), 1, + sym__special_character, + ACTIONS(825), 1, + anon_sym_DQUOTE, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(835), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(837), 1, + anon_sym_BQUOTE, + ACTIONS(839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(845), 1, + sym_variable_name, + ACTIONS(847), 1, sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(849), 1, sym__brace_start, - STATE(2110), 1, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2780), 1, + anon_sym_LPAREN, + ACTIONS(3170), 1, + sym_word, + STATE(560), 1, + sym_command_name, + STATE(1018), 1, + aux_sym_command_repeat1, + STATE(1292), 1, + aux_sym__literal_repeat1, + STATE(1617), 1, + sym_concatenation, + STATE(2277), 1, + sym_variable_assignment, + STATE(5032), 1, + sym_command, + STATE(7242), 1, + sym_subscript, + ACTIONS(827), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(841), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5026), 2, + sym_subshell, + sym_test_command, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + 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, + [12829] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3176), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3178), 1, + anon_sym_DOLLAR, + ACTIONS(3180), 1, + sym__special_character, + ACTIONS(3182), 1, + anon_sym_DQUOTE, + ACTIONS(3184), 1, + aux_sym_number_token1, + ACTIONS(3186), 1, + aux_sym_number_token2, + ACTIONS(3188), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3190), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3192), 1, + anon_sym_BQUOTE, + ACTIONS(3194), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3198), 1, + sym_test_operator, + ACTIONS(3200), 1, + sym__brace_start, + STATE(4691), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(4989), 1, + sym_concatenation, + ACTIONS(2645), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3255), 2, + ACTIONS(3196), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3231), 3, + ACTIONS(3172), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1524), 9, + STATE(4558), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86424,7 +91043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 21, + ACTIONS(2643), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86434,6 +91053,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, @@ -86446,51 +91066,51 @@ 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, + anon_sym_LT_LT_LT, + [12927] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3264), 1, + ACTIONS(3174), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3267), 1, + ACTIONS(3176), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3270), 1, + ACTIONS(3178), 1, anon_sym_DOLLAR, - ACTIONS(3273), 1, + ACTIONS(3180), 1, sym__special_character, - ACTIONS(3276), 1, + ACTIONS(3182), 1, anon_sym_DQUOTE, - ACTIONS(3279), 1, + ACTIONS(3184), 1, aux_sym_number_token1, - ACTIONS(3282), 1, + ACTIONS(3186), 1, aux_sym_number_token2, - ACTIONS(3285), 1, + ACTIONS(3188), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3288), 1, + ACTIONS(3190), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3291), 1, + ACTIONS(3192), 1, anon_sym_BQUOTE, - ACTIONS(3294), 1, + ACTIONS(3194), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3300), 1, - sym_test_operator, - ACTIONS(3303), 1, + ACTIONS(3200), 1, sym__brace_start, - STATE(2110), 1, + ACTIONS(3204), 1, + sym_test_operator, + STATE(4707), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(5000), 1, + sym_concatenation, + ACTIONS(2550), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3297), 2, + ACTIONS(3196), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(662), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3261), 3, + ACTIONS(3202), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1524), 9, + STATE(4583), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86500,7 +91120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(2548), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86510,6 +91130,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 +91143,54 @@ 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, + anon_sym_LT_LT_LT, + [13025] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, + ACTIONS(3209), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3310), 1, + ACTIONS(3212), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3312), 1, + ACTIONS(3215), 1, anon_sym_DOLLAR, - ACTIONS(3314), 1, + ACTIONS(3218), 1, sym__special_character, - ACTIONS(3316), 1, + ACTIONS(3221), 1, anon_sym_DQUOTE, - ACTIONS(3318), 1, + ACTIONS(3224), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(3227), 1, aux_sym_number_token2, - ACTIONS(3322), 1, + ACTIONS(3230), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3324), 1, + ACTIONS(3233), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3326), 1, + ACTIONS(3236), 1, anon_sym_BQUOTE, - ACTIONS(3328), 1, + ACTIONS(3239), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3332), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3334), 1, + ACTIONS(3245), 1, sym_test_operator, - ACTIONS(3336), 1, + ACTIONS(3248), 1, sym__brace_start, - STATE(1968), 1, + STATE(2135), 1, aux_sym__literal_repeat1, - ACTIONS(3330), 2, + ACTIONS(3242), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(681), 2, + STATE(689), 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, + aux_sym_for_statement_repeat1, + ACTIONS(3206), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1598), 9, + ACTIONS(2189), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86579,7 +91200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 19, + ACTIONS(2187), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86599,50 +91220,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13465] = 21, + anon_sym_LT_LT_LT, + [13123] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3342), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3344), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(3346), 1, - sym__special_character, - ACTIONS(3348), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(3350), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(3354), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3356), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3358), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(3360), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3364), 1, - sym_test_operator, - ACTIONS(3366), 1, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, sym__brace_start, - STATE(4400), 1, + ACTIONS(2766), 1, + anon_sym_LT_LT_LT, + ACTIONS(2768), 1, + sym__special_character, + ACTIONS(2770), 1, + sym_test_operator, + STATE(727), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(4835), 1, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(1629), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3362), 2, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3338), 3, + ACTIONS(2764), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2762), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4234), 9, + STATE(2185), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86652,19 +91285,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 22, - anon_sym_SEMI, + ACTIONS(1627), 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, @@ -86674,51 +91302,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, - [13562] = 21, + [13230] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3342), 1, + ACTIONS(3257), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3344), 1, + ACTIONS(3260), 1, anon_sym_DOLLAR, - ACTIONS(3346), 1, + ACTIONS(3263), 1, sym__special_character, - ACTIONS(3348), 1, + ACTIONS(3266), 1, anon_sym_DQUOTE, - ACTIONS(3350), 1, + ACTIONS(3269), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(3272), 1, aux_sym_number_token2, - ACTIONS(3354), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3356), 1, + ACTIONS(3278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3358), 1, + ACTIONS(3281), 1, anon_sym_BQUOTE, - ACTIONS(3360), 1, + ACTIONS(3284), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3366), 1, - sym__brace_start, - ACTIONS(3370), 1, + ACTIONS(3290), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3293), 1, sym_test_operator, - STATE(4336), 1, + ACTIONS(3296), 1, + sym__brace_start, + STATE(2531), 1, aux_sym__literal_repeat1, - STATE(4886), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2670), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3362), 2, + ACTIONS(3287), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3368), 3, + STATE(691), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3251), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4254), 9, + STATE(1682), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86728,7 +91358,53 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 22, + ACTIONS(2668), 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, + [13329] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + anon_sym_DQUOTE, + ACTIONS(3303), 1, + sym_variable_name, + STATE(1854), 1, + sym_string, + ACTIONS(3301), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3299), 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(1249), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86750,53 +91426,68 @@ 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, - [13659] = 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, + [13400] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 1, + ACTIONS(3307), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3378), 1, + ACTIONS(3309), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3381), 1, + ACTIONS(3311), 1, anon_sym_DOLLAR, - ACTIONS(3384), 1, + ACTIONS(3313), 1, sym__special_character, - ACTIONS(3387), 1, + ACTIONS(3315), 1, anon_sym_DQUOTE, - ACTIONS(3390), 1, + ACTIONS(3317), 1, aux_sym_number_token1, - ACTIONS(3393), 1, + ACTIONS(3319), 1, aux_sym_number_token2, - ACTIONS(3396), 1, + ACTIONS(3321), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3399), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3402), 1, + ACTIONS(3325), 1, anon_sym_BQUOTE, - ACTIONS(3405), 1, + ACTIONS(3327), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3411), 1, + ACTIONS(3331), 1, sym_test_operator, - ACTIONS(3414), 1, + ACTIONS(3333), 1, sym__brace_start, - STATE(2027), 1, + STATE(2236), 1, aux_sym__literal_repeat1, - ACTIONS(3408), 2, + ACTIONS(3329), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, + STATE(711), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + ACTIONS(2182), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3372), 3, + ACTIONS(3305), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86806,7 +91497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86827,23 +91518,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [13756] = 8, + [13497] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(3337), 1, anon_sym_DQUOTE, - ACTIONS(3421), 1, + ACTIONS(3341), 1, sym_variable_name, - STATE(1202), 1, + STATE(1476), 1, sym_string, - ACTIONS(3419), 2, + ACTIONS(3339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3417), 8, + ACTIONS(3335), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86852,7 +91543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1237), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86862,7 +91553,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, @@ -86876,6 +91566,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, @@ -86890,32 +91581,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13827] = 8, + [13568] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(3345), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3347), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3349), 1, + anon_sym_DOLLAR, + ACTIONS(3351), 1, + sym__special_character, + ACTIONS(3353), 1, anon_sym_DQUOTE, - ACTIONS(3421), 1, - sym_variable_name, - STATE(1202), 1, - sym_string, - ACTIONS(3419), 2, + ACTIONS(3355), 1, + aux_sym_number_token1, + ACTIONS(3357), 1, + aux_sym_number_token2, + ACTIONS(3359), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3363), 1, + anon_sym_BQUOTE, + ACTIONS(3365), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3369), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, + ACTIONS(3371), 1, sym_test_operator, + ACTIONS(3373), 1, 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, + STATE(2286), 1, + aux_sym__literal_repeat1, + ACTIONS(2556), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3367), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(728), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3343), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1885), 9, + 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(2554), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86925,10 +91647,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86938,38 +91658,99 @@ 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, + [13667] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3377), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3379), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3381), 1, + anon_sym_DOLLAR, + ACTIONS(3383), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(3387), 1, aux_sym_number_token1, + ACTIONS(3389), 1, aux_sym_number_token2, + ACTIONS(3391), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3393), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3395), 1, anon_sym_BQUOTE, + ACTIONS(3397), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3401), 1, + sym_test_operator, + ACTIONS(3403), 1, + sym__brace_start, + STATE(2498), 1, + aux_sym__literal_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3399), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(707), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3375), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13898] = 8, + STATE(1932), 9, + 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(2176), 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, + [13764] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(1693), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(3409), 1, sym_variable_name, - STATE(1404), 1, + STATE(1413), 1, sym_string, - ACTIONS(3425), 2, + ACTIONS(3407), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3423), 8, + ACTIONS(3405), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86978,7 +91759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1249), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87016,23 +91797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13969] = 8, + [13835] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(1693), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(3409), 1, sym_variable_name, - STATE(1404), 1, + STATE(1413), 1, sym_string, - ACTIONS(3425), 2, + ACTIONS(3407), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3423), 8, + ACTIONS(3405), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87041,7 +91822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + ACTIONS(1237), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87079,23 +91860,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14040] = 8, + [13906] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2566), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(3415), 1, sym_variable_name, - STATE(1473), 1, + STATE(1448), 1, sym_string, - ACTIONS(3431), 2, + ACTIONS(3413), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3429), 8, + ACTIONS(3411), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87104,7 +91885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1249), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87142,23 +91923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14111] = 8, + [13977] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2566), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(3415), 1, sym_variable_name, - STATE(1473), 1, + STATE(1448), 1, sym_string, - ACTIONS(3431), 2, + ACTIONS(3413), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3429), 8, + ACTIONS(3411), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87167,7 +91948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + ACTIONS(1237), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87205,52 +91986,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14182] = 21, + [14048] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 1, + ACTIONS(3420), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3205), 1, + ACTIONS(3423), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3207), 1, + ACTIONS(3426), 1, anon_sym_DOLLAR, - ACTIONS(3209), 1, + ACTIONS(3429), 1, sym__special_character, - ACTIONS(3211), 1, + ACTIONS(3432), 1, anon_sym_DQUOTE, - ACTIONS(3213), 1, + ACTIONS(3435), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3438), 1, aux_sym_number_token2, - ACTIONS(3217), 1, + ACTIONS(3441), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3219), 1, + ACTIONS(3444), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3221), 1, + ACTIONS(3447), 1, anon_sym_BQUOTE, - ACTIONS(3223), 1, + ACTIONS(3450), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3227), 1, + ACTIONS(3456), 1, sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(3459), 1, sym__brace_start, - STATE(2027), 1, + STATE(2304), 1, aux_sym__literal_repeat1, - ACTIONS(3225), 2, + ACTIONS(2189), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3453), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(666), 2, + STATE(701), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2158), 3, + ACTIONS(3417), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1835), 9, + 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(2187), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [14145] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3464), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3466), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3468), 1, + anon_sym_DOLLAR, + ACTIONS(3470), 1, + sym__special_character, + ACTIONS(3472), 1, + anon_sym_DQUOTE, + ACTIONS(3474), 1, + aux_sym_number_token1, + ACTIONS(3476), 1, + aux_sym_number_token2, + ACTIONS(3478), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3480), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3482), 1, + anon_sym_BQUOTE, + ACTIONS(3484), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3488), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3490), 1, + sym_test_operator, + ACTIONS(3492), 1, + sym__brace_start, + STATE(2459), 1, + aux_sym__literal_repeat1, + ACTIONS(3486), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(720), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2556), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3201), 3, + ACTIONS(3462), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1611), 9, + STATE(1866), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87260,7 +92119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2554), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87280,24 +92139,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, - [14279] = 8, + [14244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3498), 1, sym_variable_name, - STATE(1296), 1, + STATE(1850), 1, sym_string, - ACTIONS(3439), 2, + ACTIONS(3496), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3435), 8, + ACTIONS(3494), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87306,7 +92164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 37, + ACTIONS(1249), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87316,6 +92174,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, @@ -87329,7 +92188,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, @@ -87344,23 +92202,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14350] = 8, + [14315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3498), 1, sym_variable_name, - STATE(1296), 1, + STATE(1850), 1, sym_string, - ACTIONS(3439), 2, + ACTIONS(3496), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3435), 8, + ACTIONS(3494), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87369,7 +92227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 37, + ACTIONS(1237), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87379,6 +92237,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, @@ -87392,7 +92251,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, @@ -87407,21 +92265,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14421] = 6, + [14386] = 21, ACTIONS(3), 1, sym_comment, - STATE(1814), 1, + ACTIONS(3307), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3309), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3311), 1, + anon_sym_DOLLAR, + ACTIONS(3313), 1, + sym__special_character, + ACTIONS(3315), 1, + anon_sym_DQUOTE, + ACTIONS(3317), 1, + aux_sym_number_token1, + ACTIONS(3319), 1, + aux_sym_number_token2, + ACTIONS(3321), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3325), 1, + anon_sym_BQUOTE, + ACTIONS(3327), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3331), 1, + sym_test_operator, + ACTIONS(3333), 1, + sym__brace_start, + STATE(2236), 1, aux_sym__literal_repeat1, - STATE(678), 2, + ACTIONS(3329), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(711), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2158), 5, + ACTIONS(2178), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1663), 9, + ACTIONS(3305), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87431,7 +92320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 36, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87452,37 +92341,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [14483] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3377), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3379), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3381), 1, anon_sym_DOLLAR, + ACTIONS(3383), 1, sym__special_character, + ACTIONS(3385), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3387), 1, aux_sym_number_token1, + ACTIONS(3389), 1, aux_sym_number_token2, + ACTIONS(3391), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3393), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3395), 1, anon_sym_BQUOTE, + ACTIONS(3397), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3401), 1, + sym_test_operator, + ACTIONS(3403), 1, + sym__brace_start, + STATE(2498), 1, + aux_sym__literal_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3399), 2, 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, + STATE(707), 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(1663), 9, + ACTIONS(3375), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1932), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87492,7 +92395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 36, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87503,6 +92406,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,69 +92417,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_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, - [14555] = 21, + [14580] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(3503), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, + ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR, - ACTIONS(2583), 1, + ACTIONS(3512), 1, + sym__special_character, + ACTIONS(3515), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(3518), 1, aux_sym_number_token1, - ACTIONS(2589), 1, + ACTIONS(3521), 1, aux_sym_number_token2, - ACTIONS(2592), 1, + ACTIONS(3524), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, + ACTIONS(3527), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, + ACTIONS(3530), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, + ACTIONS(3533), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2610), 1, - sym__brace_start, - ACTIONS(3446), 1, - sym__special_character, - ACTIONS(3449), 1, + ACTIONS(3539), 1, sym_test_operator, - STATE(1814), 1, + ACTIONS(3542), 1, + sym__brace_start, + STATE(2498), 1, aux_sym__literal_repeat1, - ACTIONS(2604), 2, + ACTIONS(2189), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3536), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(678), 2, + STATE(707), 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, + ACTIONS(3500), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1663), 9, + STATE(1932), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87584,7 +92471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2187), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87595,6 +92482,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, @@ -87604,62 +92493,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, - [14652] = 26, + [14677] = 6, 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(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(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + STATE(2171), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(715), 2, sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1442), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2178), 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(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87669,14 +92517,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 16, + ACTIONS(2176), 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, @@ -87686,62 +92537,67 @@ 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, + 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, + [14744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1488), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1920), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1923), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1926), 1, + ACTIONS(3551), 1, anon_sym_DOLLAR, - ACTIONS(1932), 1, + ACTIONS(3553), 1, + sym__special_character, + ACTIONS(3555), 1, anon_sym_DQUOTE, - ACTIONS(1935), 1, + ACTIONS(3557), 1, aux_sym_number_token1, - ACTIONS(1938), 1, + ACTIONS(3559), 1, aux_sym_number_token2, - ACTIONS(1941), 1, + ACTIONS(3561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1944), 1, + ACTIONS(3563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1947), 1, + ACTIONS(3565), 1, anon_sym_BQUOTE, - ACTIONS(1950), 1, + ACTIONS(3567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1962), 1, - sym__bare_dollar, - ACTIONS(1965), 1, - sym__brace_start, - ACTIONS(3458), 1, - anon_sym_LT_LT_LT, - ACTIONS(3461), 1, - sym__special_character, - ACTIONS(3464), 1, - sym_file_descriptor, - ACTIONS(3467), 1, + ACTIONS(3571), 1, sym_test_operator, - STATE(680), 1, - aux_sym_command_repeat2, - STATE(1412), 1, + ACTIONS(3573), 1, + sym__brace_start, + STATE(4781), 1, aux_sym__literal_repeat1, - STATE(1649), 1, + STATE(5406), 1, sym_concatenation, - STATE(1654), 1, - sym_herestring_redirect, - ACTIONS(1953), 2, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3455), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3452), 3, + ACTIONS(3545), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1890), 9, + STATE(4716), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87751,14 +92607,19 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1483), 16, + ACTIONS(2643), 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, @@ -87768,54 +92629,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14868] = 22, + anon_sym_LT_LT_LT, + [14841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3312), 1, - anon_sym_DOLLAR, - ACTIONS(3314), 1, - sym__special_character, - ACTIONS(3316), 1, - anon_sym_DQUOTE, - ACTIONS(3318), 1, - aux_sym_number_token1, - ACTIONS(3320), 1, - aux_sym_number_token2, - ACTIONS(3322), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3324), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3326), 1, - anon_sym_BQUOTE, - ACTIONS(3328), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3334), 1, - sym_test_operator, - ACTIONS(3336), 1, - sym__brace_start, - ACTIONS(3470), 1, - aux_sym__simple_variable_name_token1, - STATE(1968), 1, + STATE(2164), 1, aux_sym__literal_repeat1, - ACTIONS(3330), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(656), 2, + STATE(2492), 1, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2327), 3, + ACTIONS(2645), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3306), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1598), 9, + STATE(1534), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87825,7 +92654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 19, + ACTIONS(2643), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87845,107 +92674,69 @@ 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, - 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, 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(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, + [14908] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 1, + ACTIONS(3578), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3476), 1, + ACTIONS(3581), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3478), 1, + ACTIONS(3584), 1, anon_sym_DOLLAR, - ACTIONS(3480), 1, + ACTIONS(3587), 1, sym__special_character, - ACTIONS(3482), 1, + ACTIONS(3590), 1, anon_sym_DQUOTE, - ACTIONS(3484), 1, + ACTIONS(3593), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(3596), 1, aux_sym_number_token2, - ACTIONS(3488), 1, + ACTIONS(3599), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3490), 1, + ACTIONS(3602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3492), 1, + ACTIONS(3605), 1, anon_sym_BQUOTE, - ACTIONS(3494), 1, + ACTIONS(3608), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3498), 1, + ACTIONS(3614), 1, sym_test_operator, - ACTIONS(3500), 1, + ACTIONS(3617), 1, sym__brace_start, - STATE(4662), 1, + STATE(2236), 1, aux_sym__literal_repeat1, - STATE(4979), 1, + ACTIONS(3611), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(711), 2, sym_concatenation, - ACTIONS(2273), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2189), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3472), 3, + ACTIONS(3575), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4414), 9, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87955,7 +92746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 21, + ACTIONS(2187), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87966,8 +92757,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, @@ -87977,50 +92766,21 @@ 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, + anon_sym_LT_LT_LT, + [15005] = 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(3510), 1, - sym__special_character, - 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(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, + STATE(2071), 1, aux_sym__literal_repeat1, - STATE(4549), 1, + STATE(2287), 1, sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2645), 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(3502), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4454), 9, + STATE(1449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88030,7 +92790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 21, + ACTIONS(2643), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88040,8 +92800,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88052,50 +92812,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15219] = 21, - 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, anon_sym_DQUOTE, - ACTIONS(3484), 1, + sym_raw_string, + sym_ansi_c_string, 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(3500), 1, - sym__brace_start, - ACTIONS(3534), 1, - sym_test_operator, - STATE(4607), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [15072] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2197), 1, aux_sym__literal_repeat1, - STATE(5004), 1, + STATE(2295), 1, sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2550), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3532), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4343), 9, + STATE(1499), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88105,7 +92852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, + ACTIONS(2548), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88116,8 +92863,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, @@ -88127,50 +92872,38 @@ 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, + anon_sym_LT_LT_LT, 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, + [15139] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2171), 1, aux_sym__literal_repeat1, - STATE(4609), 1, + STATE(715), 2, sym_concatenation, - ACTIONS(2277), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2182), 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(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88180,7 +92913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, + ACTIONS(2180), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88190,7 +92923,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,165 +92934,68 @@ 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, + [15206] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3050), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3053), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3059), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3062), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3065), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3071), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3074), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3086), 1, sym__brace_start, - ACTIONS(3584), 1, - aux_sym_heredoc_redirect_token1, - STATE(3541), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(3623), 1, + sym__special_character, + ACTIONS(3626), 1, + sym_test_operator, + STATE(2171), 1, aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(7133), 1, - sym__heredoc_pipeline, - STATE(7136), 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(3080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + STATE(715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2189), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(3620), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5436), 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(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88370,136 +93005,74 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [15639] = 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, - 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(3586), 1, - aux_sym_heredoc_redirect_token1, - STATE(3529), 1, - aux_sym__heredoc_command, - STATE(5338), 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, + ACTIONS(2187), 20, + 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(5446), 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_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, - [15753] = 21, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [15303] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3592), 1, + ACTIONS(3633), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3594), 1, + ACTIONS(3635), 1, anon_sym_DOLLAR, - ACTIONS(3596), 1, + ACTIONS(3637), 1, sym__special_character, - ACTIONS(3598), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(3600), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(3604), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3606), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3608), 1, + ACTIONS(3649), 1, anon_sym_BQUOTE, - ACTIONS(3610), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3614), 1, + ACTIONS(3655), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3657), 1, sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(3659), 1, sym__brace_start, - STATE(2279), 1, + STATE(2531), 1, aux_sym__literal_repeat1, - ACTIONS(3612), 2, + ACTIONS(2655), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3653), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(723), 2, + STATE(721), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2158), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3629), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1800), 9, + STATE(1682), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88509,7 +93082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 19, + ACTIONS(2653), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88519,6 +93092,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, @@ -88529,153 +93103,30 @@ 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, - 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, - 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(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, - [15911] = 8, + [15402] = 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(2016), 1, + aux_sym__literal_repeat1, + STATE(2212), 1, + sym_concatenation, + ACTIONS(2550), 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(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, - [15981] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 1, - anon_sym_DQUOTE, - ACTIONS(3624), 1, - sym_variable_name, - STATE(1625), 1, + STATE(1608), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3622), 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(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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2548), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88685,6 +93136,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, @@ -88695,11 +93147,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 +93164,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16051] = 30, + [15469] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3665), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3667), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3669), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3671), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3673), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3675), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3677), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3681), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3687), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3689), 1, sym__brace_start, - ACTIONS(3626), 1, - aux_sym_heredoc_redirect_token1, - STATE(3551), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(4815), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(5369), 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(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3685), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3661), 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(4726), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88795,162 +93217,73 @@ 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(2643), 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2177), 9, - 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(1442), 10, - 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_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [15566] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3663), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3665), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3667), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3669), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3671), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3673), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3675), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3677), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3681), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3689), 1, sym__brace_start, - ACTIONS(3628), 1, - aux_sym_heredoc_redirect_token1, - STATE(3526), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(3693), 1, + sym_test_operator, + STATE(4837), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(5252), 1, sym_concatenation, - STATE(6729), 1, - sym__heredoc_pipeline, - STATE(6759), 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(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3685), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3691), 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_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(4734), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88960,135 +93293,77 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [16387] = 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, - 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, + ACTIONS(2548), 22, + 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(5421), 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_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, - 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [15663] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3698), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3701), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3704), 1, anon_sym_DOLLAR, - ACTIONS(3640), 1, + ACTIONS(3707), 1, sym__special_character, - ACTIONS(3642), 1, + ACTIONS(3710), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3713), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3716), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3722), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(3725), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(3728), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3658), 1, + ACTIONS(3734), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3737), 1, sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(3740), 1, sym__brace_start, - STATE(2253), 1, + STATE(2459), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(3731), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, + STATE(720), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3632), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2670), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3695), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1851), 9, + STATE(1866), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89098,7 +93373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2668), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89108,7 +93383,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 +93393,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, + [15762] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - sym_word, - ACTIONS(3668), 1, - anon_sym_LT_LT_LT, - ACTIONS(3671), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3674), 1, + ACTIONS(3633), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3677), 1, + ACTIONS(3635), 1, anon_sym_DOLLAR, - ACTIONS(3680), 1, + ACTIONS(3637), 1, sym__special_character, - ACTIONS(3683), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(3689), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(3692), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(3695), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3698), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3701), 1, + ACTIONS(3649), 1, anon_sym_BQUOTE, - ACTIONS(3704), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3710), 1, - sym_file_descriptor, - ACTIONS(3713), 1, + ACTIONS(3657), 1, sym_test_operator, - ACTIONS(3716), 1, - sym__bare_dollar, - ACTIONS(3719), 1, + ACTIONS(3659), 1, sym__brace_start, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(2399), 1, + ACTIONS(3743), 1, + aux_sym__simple_variable_name_token1, + STATE(2531), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + ACTIONS(2556), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3653), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(691), 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_unset_command_repeat1, + ACTIONS(3629), 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(1682), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89201,44 +93449,19 @@ 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(2554), 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_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, @@ -89247,60 +93470,42 @@ 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, + [15861] = 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(2085), 1, + aux_sym__literal_repeat1, + STATE(2299), 1, + sym_concatenation, + ACTIONS(2550), 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), 35, + aux_sym_heredoc_redirect_token1, + STATE(1500), 9, + 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(2548), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89309,11 +93514,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, @@ -89325,67 +93531,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16847] = 27, - ACTIONS(71), 1, + [15928] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(3753), 1, sym__special_character, - ACTIONS(2661), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(3761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(3765), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2679), 1, + ACTIONS(3771), 1, sym_test_operator, - ACTIONS(2681), 1, - sym__bare_dollar, - ACTIONS(2683), 1, + ACTIONS(3773), 1, sym__brace_start, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(2399), 1, + STATE(2284), 1, aux_sym__literal_repeat1, - STATE(2449), 1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3769), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(731), 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(3745), 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(1752), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89395,62 +93585,73 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1579), 10, - sym_file_descriptor, + ACTIONS(2176), 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, - [16955] = 21, + anon_sym_LT_LT_LT, + [16025] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(3761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, + ACTIONS(3765), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(3724), 1, - sym__special_character, - ACTIONS(3726), 1, + ACTIONS(3771), 1, sym_test_operator, - STATE(4236), 1, + ACTIONS(3773), 1, + sym__brace_start, + STATE(2284), 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(2182), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3722), 3, + ACTIONS(3769), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(731), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3745), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4441), 9, + STATE(1752), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89460,7 +93661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89470,6 +93671,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, @@ -89481,81 +93683,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [17051] = 30, + [16122] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(1641), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(1643), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(1655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(1659), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(1661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, - sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(1667), 1, + sym__bare_dollar, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(3728), 1, - aux_sym_heredoc_redirect_token1, - STATE(3518), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(2766), 1, + anon_sym_LT_LT_LT, + ACTIONS(2768), 1, + sym__special_character, + ACTIONS(2770), 1, + sym_test_operator, + STATE(727), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, sym_concatenation, - STATE(7407), 1, - sym__heredoc_pipeline, - STATE(7409), 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(1633), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(2764), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2762), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5426), 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(2185), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89565,51 +93747,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [17165] = 21, + ACTIONS(1631), 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, + [16229] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3777), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3779), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3781), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3783), 1, + sym__special_character, + ACTIONS(3785), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3787), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3789), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3791), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3101), 1, + ACTIONS(3795), 1, + anon_sym_BQUOTE, + ACTIONS(3797), 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(3801), 1, sym_test_operator, - STATE(2045), 1, + ACTIONS(3803), 1, + sym__brace_start, + STATE(2304), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3799), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, + STATE(701), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3775), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89619,7 +93818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2325), 20, + ACTIONS(2176), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89630,6 +93829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89639,82 +93839,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_BQUOTE, - [17261] = 30, + anon_sym_LT_LT_LT, + [16326] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(1538), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1888), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(1891), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(1894), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(1900), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(1903), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(1906), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(1909), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(1912), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(1915), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(1918), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, + ACTIONS(1930), 1, + sym__bare_dollar, + ACTIONS(1933), 1, + sym__brace_start, + ACTIONS(3811), 1, + anon_sym_LT_LT_LT, + ACTIONS(3814), 1, + sym__special_character, + ACTIONS(3817), 1, sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3820), 1, sym_test_operator, - ACTIONS(3582), 1, - sym__brace_start, - ACTIONS(3738), 1, - aux_sym_heredoc_redirect_token1, - STATE(3535), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(727), 1, + aux_sym_command_repeat2, + STATE(1590), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + STATE(1833), 1, + sym_herestring_redirect, + STATE(1841), 1, sym_concatenation, - STATE(6921), 1, - sym__heredoc_pipeline, - STATE(6925), 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(1921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(3808), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3805), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5417), 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(2185), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89724,51 +93905,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [17375] = 21, + ACTIONS(1533), 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, + [16435] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, + ACTIONS(3826), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3746), 1, + ACTIONS(3829), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3749), 1, + ACTIONS(3832), 1, anon_sym_DOLLAR, - ACTIONS(3752), 1, + ACTIONS(3835), 1, sym__special_character, - ACTIONS(3755), 1, + ACTIONS(3838), 1, anon_sym_DQUOTE, - ACTIONS(3758), 1, + ACTIONS(3841), 1, aux_sym_number_token1, - ACTIONS(3761), 1, + ACTIONS(3844), 1, aux_sym_number_token2, - ACTIONS(3764), 1, + ACTIONS(3847), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(3850), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3770), 1, + ACTIONS(3853), 1, anon_sym_BQUOTE, - ACTIONS(3773), 1, + ACTIONS(3856), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3779), 1, + ACTIONS(3862), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3865), 1, sym_test_operator, - ACTIONS(3782), 1, + ACTIONS(3868), 1, sym__brace_start, - STATE(2253), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2670), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3776), 2, + ACTIONS(3859), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, + STATE(728), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3740), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3823), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1851), 9, + STATE(1885), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89778,7 +93978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2668), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89788,8 +93988,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89799,135 +93999,51 @@ 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, + [16534] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3554), 1, + ACTIONS(3777), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(3779), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3781), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(3783), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(3785), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(3787), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3789), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(3791), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(3793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(3795), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(3797), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(3580), 1, + ACTIONS(3801), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(3803), 1, sym__brace_start, - ACTIONS(3785), 1, - aux_sym_heredoc_redirect_token1, - STATE(3536), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + STATE(2304), 1, aux_sym__literal_repeat1, - STATE(5447), 1, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3799), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(701), 2, 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, - 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(3522), 1, - anon_sym_BQUOTE, - ACTIONS(3524), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(3724), 1, - sym__special_character, - ACTIONS(3789), 1, - sym_test_operator, - STATE(4265), 1, - aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(3526), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2277), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3787), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3775), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4476), 9, + STATE(1835), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89937,7 +94053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89948,6 +94064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89958,208 +94075,114 @@ 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, + [16631] = 8, 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, + ACTIONS(2830), 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(3578), 1, + ACTIONS(3303), 1, + sym_variable_name, + STATE(1854), 1, + sym_string, + ACTIONS(3301), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, - ACTIONS(3580), 1, sym_test_operator, - ACTIONS(3582), 1, sym__brace_start, - ACTIONS(3791), 1, - aux_sym_heredoc_redirect_token1, - STATE(3528), 1, - aux_sym__heredoc_command, - STATE(5338), 1, - aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - STATE(7248), 1, - sym__heredoc_pipeline, - STATE(7253), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3299), 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(1237), 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(5445), 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_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, - 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, - [17795] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3634), 1, + 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(3636), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3640), 1, sym__special_character, - ACTIONS(3642), 1, - 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(3658), 1, - sym_test_operator, - ACTIONS(3660), 1, - sym__brace_start, - 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(707), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3632), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1851), 9, - 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), 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, - [17891] = 20, + [16702] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3874), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(3877), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(3880), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(3883), 1, + sym__special_character, + ACTIONS(3886), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(3889), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3892), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3898), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3026), 1, + ACTIONS(3901), 1, + anon_sym_BQUOTE, + ACTIONS(3904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, + ACTIONS(3910), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(3913), 1, + sym__brace_start, + STATE(2284), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(3907), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(724), 2, + STATE(731), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, + ACTIONS(3871), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1761), 9, + STATE(1752), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90169,7 +94192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 21, + ACTIONS(2187), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90179,6 +94202,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, @@ -90190,24 +94214,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, + [16799] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3337), 1, anon_sym_DQUOTE, - ACTIONS(3803), 1, + ACTIONS(3341), 1, sym_variable_name, - STATE(1839), 1, + STATE(1476), 1, sym_string, - ACTIONS(3801), 2, + ACTIONS(3339), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3799), 8, + ACTIONS(3335), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90216,7 +94239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1249), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90239,6 +94262,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 +94277,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18055] = 21, + [16870] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3464), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3592), 1, + ACTIONS(3466), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3594), 1, + ACTIONS(3468), 1, anon_sym_DOLLAR, - ACTIONS(3596), 1, + ACTIONS(3470), 1, sym__special_character, - ACTIONS(3598), 1, + ACTIONS(3472), 1, anon_sym_DQUOTE, - ACTIONS(3600), 1, + ACTIONS(3474), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3476), 1, aux_sym_number_token2, - ACTIONS(3604), 1, + ACTIONS(3478), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3606), 1, + ACTIONS(3480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3608), 1, + ACTIONS(3482), 1, anon_sym_BQUOTE, - ACTIONS(3610), 1, + ACTIONS(3484), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3614), 1, + ACTIONS(3490), 1, sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(3492), 1, sym__brace_start, - STATE(2279), 1, + ACTIONS(3916), 1, + aux_sym__simple_variable_name_token1, + STATE(2459), 1, aux_sym__literal_repeat1, - ACTIONS(3612), 2, + ACTIONS(3486), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(723), 2, + STATE(702), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2162), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2655), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3588), 3, + ACTIONS(3462), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1800), 9, + STATE(1866), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90308,7 +94334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 19, + ACTIONS(2653), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90328,32 +94354,30 @@ 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, + [16969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_DQUOTE, - ACTIONS(3809), 1, - sym_variable_name, - STATE(1336), 1, - sym_string, - ACTIONS(3807), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + STATE(2081), 1, + aux_sym__literal_repeat1, + STATE(2536), 1, + sym_concatenation, + ACTIONS(2645), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3805), 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, + 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(2643), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90363,9 +94387,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, @@ -90375,10 +94398,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, @@ -90390,51 +94415,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18221] = 21, + [17036] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3345), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3347), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3351), 1, + sym__special_character, + ACTIONS(3353), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3355), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3357), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(3359), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3101), 1, + ACTIONS(3363), 1, + anon_sym_BQUOTE, + ACTIONS(3365), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(3732), 1, - sym__special_character, - ACTIONS(3736), 1, + ACTIONS(3371), 1, sym_test_operator, - ACTIONS(3811), 1, + ACTIONS(3373), 1, + sym__brace_start, + ACTIONS(3918), 1, aux_sym__simple_variable_name_token1, - STATE(2045), 1, + STATE(2286), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + ACTIONS(2655), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(3367), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(705), 2, + STATE(695), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + ACTIONS(3343), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(1885), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90444,7 +94471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 20, + ACTIONS(2653), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90455,6 +94482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90464,33 +94492,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_BQUOTE, - [18317] = 8, + [17135] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(3547), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3549), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3551), 1, + anon_sym_DOLLAR, + ACTIONS(3553), 1, + sym__special_character, + ACTIONS(3555), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, - sym_variable_name, - STATE(1336), 1, - sym_string, - ACTIONS(3807), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, - sym_test_operator, + ACTIONS(3557), 1, + aux_sym_number_token1, + ACTIONS(3559), 1, + aux_sym_number_token2, + ACTIONS(3561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3563), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3565), 1, + anon_sym_BQUOTE, + ACTIONS(3567), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3573), 1, sym__brace_start, - ACTIONS(3805), 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, + ACTIONS(3922), 1, + sym_test_operator, + STATE(4857), 1, + aux_sym__literal_repeat1, + STATE(5346), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3569), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3920), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4723), 9, + 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(2548), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90512,66 +94567,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, - [18387] = 21, + anon_sym_LT_LT_LT, + [17232] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(3930), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(3933), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(3936), 1, + sym__special_character, + ACTIONS(3939), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(3942), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3945), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(3948), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(3951), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(3954), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(3957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, + ACTIONS(3963), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(3966), 1, + sym__brace_start, + STATE(2558), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(3960), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(724), 2, + STATE(737), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3793), 3, + ACTIONS(3924), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1761), 9, + STATE(2074), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90581,7 +94622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2187), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90592,6 +94633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90601,24 +94643,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_LT_LT_LT, - [18483] = 8, + [17328] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(3315), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(3973), 1, sym_variable_name, - STATE(1777), 1, + STATE(1949), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(3971), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3813), 8, + ts_builtin_sym_end, + ACTIONS(3969), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90627,7 +94669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1249), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90637,7 +94679,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, @@ -90664,200 +94705,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18553] = 21, + [17398] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(3985), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3795), 1, - sym__special_character, - ACTIONS(3797), 1, + ACTIONS(4013), 1, + sym_file_descriptor, + ACTIONS(4015), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(4017), 1, + sym__brace_start, + STATE(3901), 1, + aux_sym__heredoc_command, + STATE(5842), 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(5924), 1, 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(2160), 20, - anon_sym_SEMI, + STATE(7500), 1, + sym__heredoc_pipeline, + STATE(7503), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3979), 2, 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(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18649] = 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(3732), 1, - sym__special_character, - ACTIONS(3734), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3736), 1, - sym_test_operator, - STATE(2045), 1, - aux_sym__literal_repeat1, - ACTIONS(2327), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + ACTIONS(3975), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, - 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(2325), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5925), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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, - anon_sym_LT_LT_DASH, - [18747] = 20, - 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(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(2162), 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, + STATE(5595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90867,7 +94789,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 21, + [17512] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4021), 1, + anon_sym_DQUOTE, + ACTIONS(4025), 1, + sym_variable_name, + STATE(1788), 1, + sym_string, + ACTIONS(4023), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4019), 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(1249), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90877,6 +94824,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,64 +94835,48 @@ 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_BQUOTE, - [18841] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3825), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3828), 1, - anon_sym_DOLLAR, - ACTIONS(3831), 1, sym__special_character, - ACTIONS(3834), 1, - anon_sym_DQUOTE, - ACTIONS(3837), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3840), 1, aux_sym_number_token2, - ACTIONS(3843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3846), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3849), 1, anon_sym_BQUOTE, - ACTIONS(3852), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3858), 1, - sym_test_operator, - ACTIONS(3861), 1, - sym__brace_start, - STATE(2279), 1, - aux_sym__literal_repeat1, - ACTIONS(3855), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(723), 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, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1800), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [17582] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4021), 1, + anon_sym_DQUOTE, + ACTIONS(4025), 1, + sym_variable_name, + STATE(1788), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 19, + ACTIONS(4023), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4019), 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(1237), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90954,6 +94886,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,128 +94897,65 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, - anon_sym_DOLLAR, - ACTIONS(3049), 1, - anon_sym_DQUOTE, - ACTIONS(3052), 1, + sym__special_character, + 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(3867), 1, - sym__special_character, - ACTIONS(3870), 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(724), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3864), 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(2167), 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, - [19033] = 22, + [17652] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2962), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2965), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(2971), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(2974), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(2977), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(2980), 1, + ACTIONS(3761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2983), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2986), 1, - anon_sym_BQUOTE, - ACTIONS(2989), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3001), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(3876), 1, + ACTIONS(4029), 1, sym__special_character, - ACTIONS(3879), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3882), 1, + ACTIONS(4031), 1, sym_test_operator, - STATE(2045), 1, + STATE(2284), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2992), 2, + ACTIONS(3769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(725), 2, + STATE(773), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3873), 3, + aux_sym_for_statement_repeat1, + ACTIONS(4027), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, + STATE(2106), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91095,7 +94965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2454), 19, + ACTIONS(2176), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91115,178 +94985,51 @@ 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, - sym_comment, - ACTIONS(2505), 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, - 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(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, - [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, - sym_test_operator, - 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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_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, - [19263] = 24, + [17746] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2031), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2033), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(2037), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(3761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, - anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2059), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(3893), 1, + ACTIONS(4029), 1, sym__special_character, - ACTIONS(3895), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3897), 1, - sym_variable_name, - ACTIONS(3899), 1, + ACTIONS(4031), 1, sym_test_operator, - STATE(1820), 1, + STATE(2284), 1, aux_sym__literal_repeat1, - STATE(6681), 1, - sym_subscript, - ACTIONS(1696), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + ACTIONS(3769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3891), 3, + STATE(773), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4027), 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(2106), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91296,14 +95039,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1694), 16, + ACTIONS(2180), 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 +95059,26 @@ 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, + [17840] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3315), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(3973), 1, sym_variable_name, - STATE(1724), 1, + STATE(1949), 1, sym_string, - ACTIONS(3903), 2, + ACTIONS(3971), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3901), 8, + ACTIONS(3969), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91339,7 +95087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, + ACTIONS(1237), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91375,23 +95123,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19435] = 8, + [17910] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(4035), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(4039), 1, sym_variable_name, - STATE(1657), 1, + STATE(1678), 1, sym_string, - ACTIONS(3911), 2, + ACTIONS(4037), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3907), 8, + ACTIONS(4033), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91400,7 +95148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, + ACTIONS(1249), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91410,8 +95158,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91437,101 +95185,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19505] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2114), 1, - anon_sym_DOLLAR, - ACTIONS(2120), 1, - anon_sym_DQUOTE, - ACTIONS(2123), 1, - aux_sym_number_token1, - ACTIONS(2126), 1, - aux_sym_number_token2, - ACTIONS(2129), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2135), 1, - anon_sym_BQUOTE, - ACTIONS(2138), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2153), 1, - sym__brace_start, - ACTIONS(3918), 1, - sym__special_character, - ACTIONS(3921), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3924), 1, - sym_variable_name, - ACTIONS(3927), 1, - sym_test_operator, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6681), 1, - sym_subscript, - ACTIONS(1705), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2141), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3915), 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, - 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), 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, - [19607] = 8, + [17980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(4035), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(4039), 1, sym_variable_name, - STATE(1657), 1, + STATE(1678), 1, sym_string, - ACTIONS(3911), 2, + ACTIONS(4037), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3907), 8, + ACTIONS(4033), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91540,7 +95210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1237), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91550,8 +95220,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91577,23 +95247,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19677] = 8, + [18050] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(1855), 1, anon_sym_DQUOTE, - ACTIONS(3803), 1, + ACTIONS(4045), 1, sym_variable_name, - STATE(1839), 1, + STATE(1497), 1, sym_string, - ACTIONS(3801), 2, + ACTIONS(4043), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3799), 8, + ACTIONS(4041), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91602,7 +95272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, + ACTIONS(1249), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91639,23 +95309,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19747] = 8, + [18120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(4049), 1, anon_sym_DQUOTE, - ACTIONS(3889), 1, + ACTIONS(4053), 1, sym_variable_name, - STATE(1503), 1, + STATE(1901), 1, sym_string, - ACTIONS(3887), 2, + ACTIONS(4051), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3885), 8, + ts_builtin_sym_end, + ACTIONS(4047), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91664,7 +95335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 36, + ACTIONS(1249), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91675,8 +95346,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, @@ -91687,6 +95356,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, @@ -91701,23 +95371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19817] = 8, + [18190] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(4049), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(4053), 1, sym_variable_name, - STATE(1777), 1, + STATE(1901), 1, sym_string, - ACTIONS(3815), 2, + ACTIONS(4051), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3813), 8, + ts_builtin_sym_end, + ACTIONS(4047), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91726,7 +95397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 36, + ACTIONS(1237), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91736,7 +95407,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, @@ -91763,96 +95433,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19887] = 22, + [18260] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(3732), 1, - sym__special_character, - ACTIONS(3736), 1, - sym_test_operator, - ACTIONS(3930), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, - aux_sym__literal_repeat1, - ACTIONS(2283), 2, + ACTIONS(4013), 1, sym_file_descriptor, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(4055), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + STATE(3913), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(7941), 1, + sym__heredoc_pipeline, + STATE(7942), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3979), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(721), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3730), 3, + ACTIONS(3975), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1876), 9, - 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), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5929), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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, - anon_sym_LT_LT_DASH, - [19985] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1825), 1, - aux_sym__literal_repeat1, - STATE(2047), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1667), 9, + STATE(5595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91862,119 +95517,136 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 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, + [18374] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, + ACTIONS(3995), 1, sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3999), 1, aux_sym_number_token1, + ACTIONS(4001), 1, aux_sym_number_token2, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, anon_sym_BQUOTE, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [20051] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, - anon_sym_DQUOTE, - ACTIONS(3905), 1, - sym_variable_name, - STATE(1724), 1, - sym_string, - ACTIONS(3903), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 4, + ACTIONS(4013), 1, sym_file_descriptor, + ACTIONS(4015), 1, sym_test_operator, + ACTIONS(4017), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3901), 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, + ACTIONS(4057), 1, + aux_sym_heredoc_redirect_token1, + STATE(3923), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(7949), 1, + sym__heredoc_pipeline, + STATE(7953), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3979), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5949), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [18488] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4063), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4065), 1, + anon_sym_DOLLAR, + ACTIONS(4067), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4069), 1, + anon_sym_DQUOTE, + ACTIONS(4071), 1, aux_sym_number_token1, + ACTIONS(4073), 1, aux_sym_number_token2, + ACTIONS(4075), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4077), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4079), 1, anon_sym_BQUOTE, + ACTIONS(4081), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4085), 1, + sym_test_operator, + ACTIONS(4087), 1, + sym__brace_start, + STATE(2602), 1, + aux_sym__literal_repeat1, + ACTIONS(4083), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [20121] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1885), 1, - aux_sym__literal_repeat1, - STATE(2158), 1, + STATE(762), 2, sym_concatenation, - ACTIONS(2277), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2178), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1674), 9, + ACTIONS(4059), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2019), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91984,7 +95656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 36, + ACTIONS(2176), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92004,75 +95676,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [18584] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, + ACTIONS(3995), 1, sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3999), 1, aux_sym_number_token1, + ACTIONS(4001), 1, aux_sym_number_token2, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, anon_sym_BQUOTE, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [20187] = 24, - 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(4013), 1, + sym_file_descriptor, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(4089), 1, + aux_sym_heredoc_redirect_token1, + STATE(3967), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(8023), 1, + sym__heredoc_pipeline, + STATE(8025), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3979), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5959), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [18698] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(2039), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(2043), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2045), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2047), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(2049), 1, + ACTIONS(4009), 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, - sym_test_operator, - ACTIONS(3932), 1, - aux_sym__simple_variable_name_token1, - STATE(1820), 1, - aux_sym__literal_repeat1, - STATE(6681), 1, - sym_subscript, - ACTIONS(1585), 2, + ACTIONS(4013), 1, sym_file_descriptor, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(4091), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2051), 2, + STATE(3994), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(8033), 1, + sym__heredoc_pipeline, + STATE(8034), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3979), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3891), 3, + ACTIONS(3975), 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(5941), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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(5595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92082,14 +95844,43 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1583), 16, + [18812] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(4097), 1, + sym_variable_name, + STATE(1967), 1, + sym_string, + ACTIONS(4095), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4093), 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(1249), 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, @@ -92099,10 +95890,28 @@ 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, + 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, + [18882] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(801), 24, + ACTIONS(2504), 1, + ts_builtin_sym_end, + ACTIONS(2500), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -92110,7 +95919,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -92127,7 +95935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(517), 28, + ACTIONS(2498), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -92156,24 +95964,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [20349] = 8, + [18944] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3938), 1, + ACTIONS(4097), 1, sym_variable_name, - STATE(1838), 1, + STATE(1967), 1, sym_string, - ACTIONS(3936), 2, + ACTIONS(4095), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3934), 8, + ACTIONS(4093), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92182,7 +95989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1237), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92192,6 +95999,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, @@ -92203,6 +96011,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, @@ -92217,51 +96026,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20418] = 21, + [19014] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4061), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(4063), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(4065), 1, anon_sym_DOLLAR, - ACTIONS(3948), 1, + ACTIONS(4067), 1, sym__special_character, - ACTIONS(3950), 1, + ACTIONS(4069), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(4071), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4073), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(4075), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4077), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(4079), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(4081), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(4085), 1, sym_test_operator, - ACTIONS(3968), 1, + ACTIONS(4087), 1, sym__brace_start, - STATE(4368), 1, + STATE(2602), 1, aux_sym__literal_repeat1, - STATE(4735), 1, - sym_concatenation, - ACTIONS(3964), 2, + ACTIONS(4083), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2277), 3, + STATE(762), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2182), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3940), 3, + ACTIONS(4059), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4635), 9, + STATE(2019), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92271,7 +96081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 19, + ACTIONS(2180), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92291,93 +96101,60 @@ 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, + [19110] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 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, - sym_test_operator, - sym__brace_start, - 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, + ACTIONS(4101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4103), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4105), 1, + anon_sym_DOLLAR, + ACTIONS(4107), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + ACTIONS(4111), 1, aux_sym_number_token1, + ACTIONS(4113), 1, aux_sym_number_token2, + ACTIONS(4115), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4117), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4119), 1, anon_sym_BQUOTE, + ACTIONS(4121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4125), 1, + sym_test_operator, + ACTIONS(4127), 1, + sym__brace_start, + STATE(5001), 1, + aux_sym__literal_repeat1, + STATE(5443), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4099), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [20582] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 1, - anon_sym_DQUOTE, - ACTIONS(3980), 1, - sym_variable_name, - STATE(1912), 1, + STATE(4904), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3978), 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, - 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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2643), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92387,8 +96164,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, @@ -92398,47 +96176,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, + [19206] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4103), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4105), 1, + anon_sym_DOLLAR, + ACTIONS(4107), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + ACTIONS(4111), 1, aux_sym_number_token1, + ACTIONS(4113), 1, aux_sym_number_token2, + ACTIONS(4115), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4117), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4119), 1, anon_sym_BQUOTE, + ACTIONS(4121), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4127), 1, + sym__brace_start, + ACTIONS(4131), 1, + sym_test_operator, + STATE(5005), 1, + aux_sym__literal_repeat1, + STATE(5492), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4123), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4129), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [20651] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 1, - anon_sym_DQUOTE, - ACTIONS(3986), 1, - sym_variable_name, - STATE(1710), 1, + STATE(4822), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3984), 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(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), 35, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2548), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92448,8 +96239,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, @@ -92459,79 +96251,110 @@ 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, + [19302] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2639), 1, + ts_builtin_sym_end, + ACTIONS(2500), 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(2498), 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, - [20720] = 25, - ACTIONS(71), 1, + [19364] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - sym_word, - ACTIONS(3991), 1, + ACTIONS(4136), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3994), 1, + ACTIONS(4139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3997), 1, + ACTIONS(4142), 1, anon_sym_DOLLAR, - ACTIONS(4000), 1, + ACTIONS(4145), 1, sym__special_character, - ACTIONS(4003), 1, + ACTIONS(4148), 1, anon_sym_DQUOTE, - ACTIONS(4009), 1, + ACTIONS(4151), 1, aux_sym_number_token1, - ACTIONS(4012), 1, + ACTIONS(4154), 1, aux_sym_number_token2, - ACTIONS(4015), 1, + ACTIONS(4157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4018), 1, + ACTIONS(4160), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4163), 1, anon_sym_BQUOTE, - ACTIONS(4024), 1, + ACTIONS(4166), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4030), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4033), 1, - sym_variable_name, - ACTIONS(4036), 1, + ACTIONS(4172), 1, sym_test_operator, - ACTIONS(4039), 1, + ACTIONS(4175), 1, sym__brace_start, - STATE(2610), 1, + STATE(2602), 1, aux_sym__literal_repeat1, - STATE(6637), 1, - sym_subscript, - ACTIONS(4006), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4027), 2, + ACTIONS(4169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 3, - sym_variable_assignment, + STATE(762), 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(2189), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4133), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2019), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92541,44 +96364,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [20823] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3316), 1, - anon_sym_DQUOTE, - ACTIONS(3938), 1, - sym_variable_name, - STATE(1838), 1, - sym_string, - ACTIONS(3936), 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(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(1183), 34, + ACTIONS(2187), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92598,39 +96384,23 @@ 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, - [20892] = 8, + [19460] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 1, + ACTIONS(3785), 1, anon_sym_DQUOTE, - ACTIONS(4048), 1, + ACTIONS(4182), 1, sym_variable_name, - STATE(2111), 1, + STATE(1983), 1, sym_string, - ACTIONS(4046), 2, + ACTIONS(4180), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4042), 8, + ACTIONS(4178), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92639,18 +96409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1249), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92659,6 +96430,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, @@ -92674,195 +96446,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20961] = 8, + [19530] = 30, 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, - 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(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, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, aux_sym_number_token1, + ACTIONS(4001), 1, aux_sym_number_token2, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, anon_sym_BQUOTE, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - 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, + ACTIONS(4013), 1, sym_file_descriptor, + ACTIONS(4015), 1, sym_test_operator, + ACTIONS(4017), 1, 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, + ACTIONS(4184), 1, + aux_sym_heredoc_redirect_token1, + STATE(4051), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(8136), 1, + sym__heredoc_pipeline, + STATE(8137), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3979), 2, 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(3983), 2, 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, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [21099] = 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(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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5935), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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, - 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, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [19644] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2247), 1, - anon_sym_BQUOTE, - ACTIONS(2243), 22, + ACTIONS(857), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -92882,10 +96553,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(569), 29, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -92893,6 +96565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_while, anon_sym_until, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_function, @@ -92914,24 +96587,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [21229] = 8, + [19704] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(3785), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(4182), 1, sym_variable_name, - STATE(1273), 1, + STATE(1983), 1, sym_string, - ACTIONS(2267), 2, + ACTIONS(4180), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2265), 8, + ACTIONS(4178), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92940,17 +96612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1237), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92975,112 +96649,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21298] = 8, + [19774] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 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, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4013), 1, sym_file_descriptor, + ACTIONS(4015), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4017), 1, 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, + ACTIONS(4186), 1, + aux_sym_heredoc_redirect_token1, + STATE(3988), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(7632), 1, + sym__heredoc_pipeline, + STATE(7633), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3979), 2, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5944), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 8, 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, - aux_sym_heredoc_redirect_token1, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [19888] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, aux_sym_number_token1, + ACTIONS(4001), 1, aux_sym_number_token2, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, anon_sym_BQUOTE, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4013), 1, + sym_file_descriptor, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(4188), 1, + aux_sym_heredoc_redirect_token1, + STATE(3995), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(7641), 1, + sym__heredoc_pipeline, + STATE(7642), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3979), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [21367] = 21, + STATE(5947), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [20002] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(3765), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(3767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(4058), 1, + ACTIONS(4029), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4031), 1, sym_test_operator, - STATE(2253), 1, + STATE(2284), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(3769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, + STATE(773), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(4027), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(2106), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93090,7 +96871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 19, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93110,49 +96891,52 @@ 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, + [20098] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3654), 1, + ACTIONS(3765), 1, + anon_sym_BQUOTE, + ACTIONS(3767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(4058), 1, + ACTIONS(4029), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4031), 1, sym_test_operator, - STATE(2253), 1, + STATE(2284), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(3769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, + STATE(773), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(4027), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(2106), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93162,7 +96946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 20, + ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93182,50 +96966,127 @@ static 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, + anon_sym_LT_LT_LT, + [20194] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(4198), 1, + sym__special_character, + ACTIONS(4200), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3654), 1, + ACTIONS(4210), 1, + anon_sym_BQUOTE, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, - sym__brace_start, - ACTIONS(4058), 1, - sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4216), 1, sym_test_operator, - STATE(2253), 1, + ACTIONS(4218), 1, + sym__brace_start, + STATE(4704), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + STATE(4812), 1, + sym_concatenation, + ACTIONS(4214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2645), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(4190), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4811), 9, + 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(2643), 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, + [20290] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4198), 1, + sym__special_character, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4210), 1, + anon_sym_BQUOTE, + ACTIONS(4212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(4222), 1, + sym_test_operator, + STATE(4706), 1, + aux_sym__literal_repeat1, + STATE(4819), 1, + sym_concatenation, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(2550), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4220), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(4818), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93235,7 +97096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 20, + ACTIONS(2548), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93255,52 +97116,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_BQUOTE, - [21648] = 21, + anon_sym_LT_LT_LT, + [20386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3874), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3636), 1, + ACTIONS(3877), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3638), 1, + ACTIONS(3880), 1, anon_sym_DOLLAR, - ACTIONS(3642), 1, + ACTIONS(3886), 1, anon_sym_DQUOTE, - ACTIONS(3644), 1, + ACTIONS(3889), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3892), 1, aux_sym_number_token2, - ACTIONS(3648), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3650), 1, + ACTIONS(3898), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3652), 1, + ACTIONS(3901), 1, anon_sym_BQUOTE, - ACTIONS(3654), 1, + ACTIONS(3904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3660), 1, + ACTIONS(3913), 1, sym__brace_start, - ACTIONS(4058), 1, + ACTIONS(4227), 1, sym__special_character, - ACTIONS(4060), 1, + ACTIONS(4230), 1, sym_test_operator, - STATE(2253), 1, + STATE(2284), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3656), 2, + ACTIONS(3907), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(765), 2, + STATE(773), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4056), 3, + ACTIONS(4224), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1931), 9, + STATE(2106), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93310,7 +97171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 19, + ACTIONS(2187), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93330,23 +97191,25 @@ 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, + anon_sym_LT_LT_LT, + [20482] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(2119), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(2123), 1, sym_variable_name, - STATE(1710), 1, + STATE(1129), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(2121), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(2117), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93355,19 +97218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 35, - anon_sym_SEMI, + ACTIONS(1249), 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, @@ -93377,6 +97239,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,126 +97254,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21812] = 25, - ACTIONS(71), 1, + [20552] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - sym_word, - ACTIONS(4064), 1, + ACTIONS(2119), 1, + anon_sym_DQUOTE, + ACTIONS(2123), 1, + sym_variable_name, + STATE(1129), 1, + sym_string, + ACTIONS(2121), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2117), 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(1237), 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_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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, - 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(4090), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4092), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [20622] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1855), 1, + anon_sym_DQUOTE, + ACTIONS(4045), 1, sym_variable_name, - ACTIONS(4094), 1, + STATE(1497), 1, + sym_string, + ACTIONS(4043), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(4096), 1, sym__brace_start, - STATE(2610), 1, - aux_sym__literal_repeat1, - STATE(6637), 1, - sym_subscript, - ACTIONS(4074), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4088), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(779), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1583), 7, + ACTIONS(4041), 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(1237), 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, - STATE(2321), 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, + 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, + [20692] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(4237), 1, + sym_variable_name, + STATE(2035), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1585), 10, + ACTIONS(4235), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4233), 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(1249), 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, - [21915] = 20, - ACTIONS(3), 1, + 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, + [20762] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(2782), 1, + sym_word, + ACTIONS(2786), 1, + anon_sym_LT_LT_LT, + ACTIONS(2788), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(2794), 1, + sym__special_character, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3524), 1, + ACTIONS(2808), 1, + anon_sym_BQUOTE, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(4100), 1, - sym__special_character, - ACTIONS(4102), 1, + ACTIONS(2814), 1, sym_test_operator, - STATE(4236), 1, + ACTIONS(2816), 1, + sym__bare_dollar, + ACTIONS(2818), 1, + sym__brace_start, + STATE(780), 1, + aux_sym_command_repeat2, + STATE(2664), 1, aux_sym__literal_repeat1, - STATE(4549), 1, + STATE(2849), 1, + sym_herestring_redirect, + STATE(2908), 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(4098), 3, + ACTIONS(2784), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2798), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4495), 9, + ACTIONS(2812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1631), 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(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93520,34 +97510,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 21, - anon_sym_SEMI, + ACTIONS(1633), 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, - anon_sym_BQUOTE, - [22008] = 4, + [20870] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2505), 1, - anon_sym_BQUOTE, - ACTIONS(2243), 22, + ACTIONS(857), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -93555,6 +97532,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -93567,10 +97545,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(569), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -93599,48 +97578,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [22069] = 20, - ACTIONS(3), 1, + [20930] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(4239), 1, + sym_word, + ACTIONS(4245), 1, + anon_sym_LT_LT_LT, + ACTIONS(4248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(4251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(4257), 1, + sym__special_character, + ACTIONS(4260), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(4266), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(4269), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(4272), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(4275), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3524), 1, + ACTIONS(4278), 1, + anon_sym_BQUOTE, + ACTIONS(4281), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, - sym__brace_start, - ACTIONS(4100), 1, - sym__special_character, - ACTIONS(4106), 1, + ACTIONS(4287), 1, + sym_file_descriptor, + ACTIONS(4290), 1, sym_test_operator, - STATE(4265), 1, + ACTIONS(4293), 1, + sym__bare_dollar, + ACTIONS(4296), 1, + sym__brace_start, + STATE(780), 1, + aux_sym_command_repeat2, + STATE(2664), 1, aux_sym__literal_repeat1, - STATE(4609), 1, + STATE(2849), 1, + sym_herestring_redirect, + STATE(2908), 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(4104), 3, + ACTIONS(4242), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4263), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4497), 9, + ACTIONS(4284), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1533), 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(1538), 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(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93650,7 +97660,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 21, + [21040] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3385), 1, + anon_sym_DQUOTE, + ACTIONS(4237), 1, + sym_variable_name, + STATE(2035), 1, + sym_string, + ACTIONS(4235), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4233), 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(1237), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93661,6 +97696,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, @@ -93670,53 +97707,82 @@ static const uint16_t 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, + 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, - [22162] = 21, - ACTIONS(3), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [21110] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(3743), 1, + ACTIONS(2782), 1, + sym_word, + ACTIONS(2786), 1, + anon_sym_LT_LT_LT, + ACTIONS(2788), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3746), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3749), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(3755), 1, + ACTIONS(2794), 1, + sym__special_character, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(3758), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(3761), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(3764), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3767), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3770), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(3773), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3782), 1, - sym__brace_start, - ACTIONS(4111), 1, - sym__special_character, - ACTIONS(4114), 1, + ACTIONS(2814), 1, sym_test_operator, - STATE(2253), 1, + ACTIONS(2816), 1, + sym__bare_dollar, + ACTIONS(2818), 1, + sym__brace_start, + STATE(780), 1, + aux_sym_command_repeat2, + STATE(2664), 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(765), 2, + STATE(2849), 1, + sym_herestring_redirect, + STATE(2908), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4108), 3, + ACTIONS(2784), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2798), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1931), 9, + ACTIONS(2812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1627), 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(2468), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93726,80 +97792,43 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 19, - anon_sym_SEMI, + ACTIONS(1629), 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, - [22257] = 21, + [21218] = 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(2909), 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(4119), 1, - sym__special_character, - ACTIONS(4121), 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(4117), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4568), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(4303), 1, + sym_variable_name, + STATE(1910), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(4301), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4299), 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(1249), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93809,8 +97838,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, @@ -93820,23 +97850,38 @@ 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, + 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, + [21288] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(2909), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(4303), 1, sym_variable_name, - STATE(1912), 1, + STATE(1910), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(4301), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(4299), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93845,7 +97890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 35, + ACTIONS(1237), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93855,8 +97900,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, @@ -93881,50 +97927,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22421] = 21, + [21358] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4119), 1, - sym__special_character, - ACTIONS(4125), 1, + ACTIONS(4013), 1, + sym_file_descriptor, + ACTIONS(4015), 1, sym_test_operator, - STATE(4368), 1, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(4305), 1, + aux_sym_heredoc_redirect_token1, + STATE(3922), 1, + aux_sym__heredoc_command, + STATE(5842), 1, aux_sym__literal_repeat1, - STATE(4735), 1, + STATE(5924), 1, sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + STATE(7792), 1, + sym__heredoc_pipeline, + STATE(7793), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3979), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4123), 3, + ACTIONS(3975), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4572), 9, + STATE(5915), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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(5595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93934,71 +98011,135 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, - anon_sym_SEMI, + [21472] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4013), 1, + sym_file_descriptor, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(4307), 1, + aux_sym_heredoc_redirect_token1, + STATE(3916), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + STATE(7799), 1, + sym__heredoc_pipeline, + STATE(8208), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3979), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5920), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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, - [22516] = 21, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [21586] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(3633), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3635), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, - anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(3659), 1, sym__brace_start, - ACTIONS(4129), 1, + ACTIONS(4311), 1, sym__special_character, - ACTIONS(4131), 1, + ACTIONS(4313), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4315), 1, sym_test_operator, - STATE(4236), 1, + STATE(2531), 1, aux_sym__literal_repeat1, - STATE(4549), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2655), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(3653), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4127), 3, + STATE(805), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4309), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4625), 9, + STATE(2176), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94008,7 +98149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(2653), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94028,51 +98169,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, - [22611] = 21, + anon_sym_BQUOTE, + [21682] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3506), 1, + ACTIONS(3633), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3508), 1, + ACTIONS(3635), 1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(3514), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(3518), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3522), 1, + ACTIONS(3649), 1, anon_sym_BQUOTE, - ACTIONS(3524), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3530), 1, + ACTIONS(3659), 1, sym__brace_start, - ACTIONS(4129), 1, + ACTIONS(4311), 1, sym__special_character, - ACTIONS(4135), 1, + ACTIONS(4315), 1, sym_test_operator, - STATE(4265), 1, + ACTIONS(4317), 1, + aux_sym__simple_variable_name_token1, + STATE(2531), 1, aux_sym__literal_repeat1, - STATE(4609), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2556), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3526), 2, + ACTIONS(3653), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4133), 3, + STATE(790), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4309), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4627), 9, + STATE(2176), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94082,7 +98226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(2554), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94102,52 +98246,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, - [22706] = 21, + [21780] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(4325), 1, anon_sym_DOLLAR, - ACTIONS(3948), 1, + ACTIONS(4327), 1, sym__special_character, - ACTIONS(3950), 1, + ACTIONS(4329), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(4339), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4345), 1, sym_test_operator, - STATE(4348), 1, + ACTIONS(4347), 1, + sym__brace_start, + STATE(2621), 1, aux_sym__literal_repeat1, - STATE(4860), 1, - sym_concatenation, - ACTIONS(3964), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2273), 3, + ACTIONS(2178), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4137), 3, + ACTIONS(4343), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(798), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4319), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4637), 9, + STATE(2051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94157,7 +98300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 19, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94167,6 +98310,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, @@ -94177,32 +98321,63 @@ 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, + [21876] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(3254), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3257), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3260), 1, + anon_sym_DOLLAR, + ACTIONS(3266), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, - sym_variable_name, - STATE(1694), 1, - sym_string, - ACTIONS(4143), 2, + ACTIONS(3269), 1, + aux_sym_number_token1, + ACTIONS(3272), 1, + aux_sym_number_token2, + ACTIONS(3275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3281), 1, + anon_sym_BQUOTE, + ACTIONS(3284), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3296), 1, + sym__brace_start, + ACTIONS(4352), 1, + sym__special_character, + ACTIONS(4355), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, + ACTIONS(4358), 1, 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(1195), 35, + STATE(2531), 1, + aux_sym__literal_repeat1, + ACTIONS(2670), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3287), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(790), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4349), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2176), 9, + 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(2668), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94212,7 +98387,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, @@ -94223,47 +98397,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, + [21974] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4325), 1, + anon_sym_DOLLAR, + ACTIONS(4327), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4339), 1, anon_sym_BQUOTE, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4345), 1, + sym_test_operator, + ACTIONS(4347), 1, + sym__brace_start, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(798), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4319), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [22870] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2037), 1, - anon_sym_DQUOTE, - ACTIONS(4145), 1, - sym_variable_name, - STATE(1694), 1, + STATE(2051), 9, + sym_arithmetic_expansion, + sym_brace_expression, 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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94284,47 +98472,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, + [22070] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(4202), 1, aux_sym_number_token1, + ACTIONS(4204), 1, aux_sym_number_token2, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4210), 1, anon_sym_BQUOTE, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(4363), 1, + sym__special_character, + ACTIONS(4365), 1, + sym_test_operator, + STATE(4704), 1, + aux_sym__literal_repeat1, + STATE(4812), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4361), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [22939] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3014), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, - sym_variable_name, - STATE(1777), 1, + STATE(4916), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3815), 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, - 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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2643), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94334,6 +98535,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, @@ -94344,49 +98546,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, anon_sym_LT_LT_LT, + [22166] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(4202), 1, aux_sym_number_token1, + ACTIONS(4204), 1, aux_sym_number_token2, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4210), 1, anon_sym_BQUOTE, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(4363), 1, + sym__special_character, + ACTIONS(4369), 1, + sym_test_operator, + STATE(4706), 1, + aux_sym__literal_repeat1, + STATE(4819), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4367), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23008] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2071), 1, - anon_sym_DQUOTE, - ACTIONS(3974), 1, - sym_variable_name, - STATE(1616), 1, + STATE(4918), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3972), 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(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(1195), 34, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2548), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94396,6 +98610,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, @@ -94406,57 +98621,76 @@ 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, + [22262] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2346), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2352), 1, + anon_sym_DQUOTE, + ACTIONS(2354), 1, aux_sym_number_token1, + ACTIONS(2356), 1, aux_sym_number_token2, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2362), 1, anon_sym_BQUOTE, + ACTIONS(2364), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(4373), 1, + sym__special_character, + ACTIONS(4375), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4377), 1, + sym_variable_name, + ACTIONS(4379), 1, + sym_test_operator, + STATE(2178), 1, + aux_sym__literal_repeat1, + STATE(7269), 1, + sym_subscript, + ACTIONS(1683), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2366), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4371), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23077] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 1, - anon_sym_DQUOTE, - ACTIONS(3913), 1, - sym_variable_name, - STATE(1657), 1, + STATE(796), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2627), 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(1197), 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(1195), 35, - anon_sym_SEMI, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1681), 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, @@ -94466,48 +98700,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, - anon_sym_LT_LT_LT, + [22364] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4385), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4387), 1, + anon_sym_DOLLAR, + ACTIONS(4389), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4391), 1, + anon_sym_DQUOTE, + ACTIONS(4393), 1, aux_sym_number_token1, + ACTIONS(4395), 1, aux_sym_number_token2, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4401), 1, anon_sym_BQUOTE, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4407), 1, + sym_test_operator, + ACTIONS(4409), 1, + sym__brace_start, + STATE(2558), 1, + aux_sym__literal_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(737), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4381), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23146] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3909), 1, - anon_sym_DQUOTE, - ACTIONS(3913), 1, - sym_variable_name, - STATE(1657), 1, + STATE(2074), 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), 35, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94518,6 +98765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94527,136 +98775,129 @@ 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, + [22460] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2131), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2134), 1, + anon_sym_DOLLAR, + ACTIONS(2140), 1, + anon_sym_DQUOTE, + ACTIONS(2143), 1, aux_sym_number_token1, + ACTIONS(2146), 1, aux_sym_number_token2, + ACTIONS(2149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2152), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2155), 1, anon_sym_BQUOTE, + ACTIONS(2158), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [23215] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2243), 23, - sym_file_descriptor, + ACTIONS(2173), 1, + sym__brace_start, + ACTIONS(4414), 1, + sym__special_character, + ACTIONS(4417), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4420), 1, sym_variable_name, + ACTIONS(4423), 1, 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, + STATE(2178), 1, + aux_sym__literal_repeat1, + STATE(7269), 1, + sym_subscript, + ACTIONS(1795), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2161), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2241), 28, - anon_sym_for, - anon_sym_select, + ACTIONS(4411), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(796), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2627), 9, + 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(1793), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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_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, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [23274] = 25, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [22562] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, - sym_word, - ACTIONS(4064), 1, + ACTIONS(4383), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(4385), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, + ACTIONS(4387), 1, anon_sym_DOLLAR, - ACTIONS(4070), 1, + ACTIONS(4389), 1, sym__special_character, - ACTIONS(4072), 1, + ACTIONS(4391), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(4397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(4401), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(4403), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4092), 1, - sym_variable_name, - ACTIONS(4094), 1, + ACTIONS(4407), 1, sym_test_operator, - ACTIONS(4096), 1, + ACTIONS(4409), 1, sym__brace_start, - ACTIONS(4147), 1, - aux_sym__simple_variable_name_token1, - STATE(2610), 1, + STATE(2558), 1, aux_sym__literal_repeat1, - STATE(6637), 1, - sym_subscript, - ACTIONS(4074), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4088), 2, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 3, - sym_variable_assignment, + STATE(737), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1694), 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(4381), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2074), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94666,43 +98907,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1696), 10, - sym_file_descriptor, + ACTIONS(2180), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23377] = 8, + [22658] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(4429), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4435), 1, + anon_sym_DOLLAR, + ACTIONS(4438), 1, + sym__special_character, + ACTIONS(4441), 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, - sym_file_descriptor, + ACTIONS(4444), 1, + aux_sym_number_token1, + ACTIONS(4447), 1, + aux_sym_number_token2, + ACTIONS(4450), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4453), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4456), 1, + anon_sym_BQUOTE, + ACTIONS(4459), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4465), 1, sym_test_operator, + ACTIONS(4468), 1, 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), 35, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2189), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4462), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(798), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4426), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2051), 9, + 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(2187), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94712,6 +98992,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, @@ -94722,55 +99003,72 @@ 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, + [22754] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(4202), 1, aux_sym_number_token1, + ACTIONS(4204), 1, aux_sym_number_token2, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4210), 1, anon_sym_BQUOTE, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(4473), 1, + sym__special_character, + ACTIONS(4475), 1, + sym_test_operator, + STATE(4812), 1, + sym_concatenation, + STATE(5131), 1, + aux_sym__literal_repeat1, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4471), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23446] = 6, - 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, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 42, + STATE(4944), 9, + 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(2643), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94780,60 +99078,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [22850] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4196), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4200), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4202), 1, aux_sym_number_token1, + ACTIONS(4204), 1, aux_sym_number_token2, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4210), 1, anon_sym_BQUOTE, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(4473), 1, + sym__special_character, + ACTIONS(4479), 1, + sym_test_operator, + STATE(4819), 1, + sym_concatenation, + STATE(5139), 1, + aux_sym__literal_repeat1, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4477), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23510] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4163), 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, - 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, + STATE(4946), 9, + 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(2548), 21, 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94841,57 +99151,119 @@ 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, + [22946] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3633), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3635), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3639), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3641), 1, aux_sym_number_token1, + ACTIONS(3643), 1, aux_sym_number_token2, + ACTIONS(3645), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3649), 1, anon_sym_BQUOTE, + ACTIONS(3651), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3659), 1, + sym__brace_start, + ACTIONS(4311), 1, + sym__special_character, + ACTIONS(4315), 1, + sym_test_operator, + ACTIONS(4481), 1, + aux_sym__simple_variable_name_token1, + STATE(2531), 1, + aux_sym__literal_repeat1, + ACTIONS(2655), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3653), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(788), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4309), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23582] = 7, + STATE(2176), 9, + 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(2653), 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, + [23044] = 6, 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, + STATE(2081), 1, + aux_sym__literal_repeat1, + STATE(2536), 1, + sym_concatenation, + ACTIONS(2645), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + STATE(1862), 9, + 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(2643), 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_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, @@ -94917,32 +99289,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23648] = 8, + [23110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - anon_sym_DQUOTE, - ACTIONS(3980), 1, - sym_variable_name, - STATE(1912), 1, - sym_string, - ACTIONS(3978), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(2016), 1, + aux_sym__literal_repeat1, + STATE(2212), 1, + sym_concatenation, + ACTIONS(2550), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3976), 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, + STATE(1872), 9, + 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(2548), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94962,10 +99332,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, @@ -94977,47 +99349,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23716] = 13, + [23176] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(2344), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2346), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2352), 1, + anon_sym_DQUOTE, + ACTIONS(2354), 1, + aux_sym_number_token1, + ACTIONS(2356), 1, + aux_sym_number_token2, + ACTIONS(2358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2360), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2362), 1, + anon_sym_BQUOTE, + ACTIONS(2364), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(4373), 1, + sym__special_character, + ACTIONS(4377), 1, sym_variable_name, - ACTIONS(4175), 1, - aux_sym_heredoc_redirect_token1, - STATE(6669), 1, + ACTIONS(4379), 1, + sym_test_operator, + ACTIONS(4483), 1, + aux_sym__simple_variable_name_token1, + STATE(2178), 1, + aux_sym__literal_repeat1, + STATE(7269), 1, sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4169), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4171), 2, + ACTIONS(1776), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2366), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4371), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(794), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2627), 9, + 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(1774), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4173), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4159), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 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, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - 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, @@ -95025,74 +99426,52 @@ 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, - [23794] = 22, - ACTIONS(71), 1, + anon_sym_LT_LT_DASH, + [23278] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, - sym_word, - ACTIONS(4180), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4183), 1, + ACTIONS(3633), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4186), 1, + ACTIONS(3635), 1, anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym__special_character, - ACTIONS(4192), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(4198), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(4201), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(4204), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4207), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4210), 1, - anon_sym_BQUOTE, - ACTIONS(4213), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4219), 1, - sym_test_operator, - ACTIONS(4222), 1, + ACTIONS(3659), 1, sym__brace_start, - STATE(2496), 1, + ACTIONS(4311), 1, + sym__special_character, + ACTIONS(4315), 1, + sym_test_operator, + ACTIONS(4317), 1, + aux_sym__simple_variable_name_token1, + STATE(2531), 1, aux_sym__literal_repeat1, - ACTIONS(4195), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4216), 2, + ACTIONS(2556), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3653), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(786), 2, + STATE(790), 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(2283), 9, + aux_sym_unset_command_repeat1, + ACTIONS(4309), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2176), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95102,37 +99481,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 13, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2554), 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, + anon_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, - [23890] = 8, + anon_sym_BQUOTE, + [23374] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(4489), 1, sym_variable_name, - STATE(1912), 1, + STATE(2093), 1, sym_string, - ACTIONS(3978), 2, + ACTIONS(4487), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 8, + ACTIONS(4485), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95141,7 +99527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1249), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95151,6 +99537,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, @@ -95176,58 +99563,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23958] = 20, + [23443] = 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(4329), 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(3962), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4227), 1, - sym__special_character, - ACTIONS(4229), 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(4225), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4650), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(4495), 1, + sym_variable_name, + STATE(2253), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 20, + ACTIONS(4493), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4491), 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(1237), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95237,6 +99598,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, @@ -95247,51 +99609,79 @@ 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, - [24050] = 21, - ACTIONS(3), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [23512] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4497), 1, + sym_word, + ACTIONS(4499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(4503), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(4505), 1, + sym__special_character, + ACTIONS(4507), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(4511), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4513), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(4515), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4517), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(4519), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(4521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4233), 1, - sym__special_character, - ACTIONS(4235), 1, + ACTIONS(4525), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4527), 1, + sym_variable_name, + ACTIONS(4529), 1, sym_test_operator, - STATE(4348), 1, + ACTIONS(4531), 1, + sym__brace_start, + STATE(3082), 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(4231), 3, + STATE(7207), 1, + sym_subscript, + ACTIONS(4509), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4876), 9, + ACTIONS(4523), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(817), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1774), 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(2663), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95301,70 +99691,62 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 19, - anon_sym_SEMI, + ACTIONS(1776), 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, - [24144] = 21, + [23615] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4429), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(4432), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(4435), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(4441), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(4444), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4447), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(4450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4453), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3960), 1, + ACTIONS(4456), 1, anon_sym_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(4459), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, + ACTIONS(4468), 1, sym__brace_start, - ACTIONS(4233), 1, + ACTIONS(4536), 1, sym__special_character, - ACTIONS(4239), 1, + ACTIONS(4539), 1, sym_test_operator, - STATE(4368), 1, + STATE(2621), 1, aux_sym__literal_repeat1, - STATE(4735), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(4462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4237), 3, + STATE(809), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4533), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4880), 9, + STATE(2438), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95374,7 +99756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 19, + ACTIONS(2187), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95394,48 +99776,51 @@ 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, + [23710] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3944), 1, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3946), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(3950), 1, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3952), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3956), 1, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3958), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3962), 1, + ACTIONS(4562), 1, + anon_sym_BQUOTE, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3968), 1, - sym__brace_start, - ACTIONS(4227), 1, - sym__special_character, - ACTIONS(4243), 1, + ACTIONS(4568), 1, sym_test_operator, - STATE(4368), 1, + ACTIONS(4570), 1, + sym__brace_start, + STATE(4836), 1, aux_sym__literal_repeat1, - STATE(4735), 1, + STATE(5044), 1, sym_concatenation, - ACTIONS(2277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3964), 2, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4241), 3, + ACTIONS(2645), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4542), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4654), 9, + STATE(5043), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95445,7 +99830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 20, + ACTIONS(2643), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95465,25 +99850,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, - [24330] = 8, + [23805] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, + ACTIONS(4574), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(4578), 1, sym_variable_name, - STATE(2251), 1, + STATE(2530), 1, sym_string, - ACTIONS(4249), 2, + ACTIONS(4576), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 4, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(4245), 8, + ACTIONS(4572), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95492,7 +99876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 33, + ACTIONS(1249), 34, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -95501,6 +99885,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_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -95526,47 +99911,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24398] = 13, + [23874] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(4574), 1, + anon_sym_DQUOTE, + ACTIONS(4578), 1, sym_variable_name, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - STATE(6669), 1, - sym_subscript, - 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, - STATE(4159), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + STATE(2530), 1, + sym_string, + ACTIONS(4576), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - 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(4153), 27, + ACTIONS(4572), 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(1237), 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, @@ -95574,12 +99956,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, @@ -95591,96 +99972,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24476] = 6, - ACTIONS(71), 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, - 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, - [24540] = 6, + [23943] = 8, 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, + ACTIONS(4069), 1, + anon_sym_DQUOTE, + ACTIONS(4584), 1, sym_variable_name, + STATE(2543), 1, + sym_string, + ACTIONS(4582), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, + sym_file_descriptor, 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, + ts_builtin_sym_end, + ACTIONS(4580), 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(1249), 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, @@ -95690,12 +100018,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, @@ -95707,39 +100033,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24604] = 6, + [24012] = 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(4069), 1, + anon_sym_DQUOTE, + ACTIONS(4584), 1, + sym_variable_name, + STATE(2543), 1, + sym_string, + ACTIONS(4582), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 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(4580), 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(1237), 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 +100079,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 +100094,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24668] = 6, + [24081] = 8, 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, + ACTIONS(3353), 1, + anon_sym_DQUOTE, + ACTIONS(4590), 1, sym_variable_name, + STATE(2129), 1, + sym_string, + ACTIONS(4588), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, 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(2160), 33, + ACTIONS(4586), 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(1249), 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95806,12 +100140,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, @@ -95823,52 +100155,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24732] = 21, + [24150] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2574), 1, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(2583), 1, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(2589), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(2592), 1, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, + ACTIONS(4562), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2610), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(4262), 1, - sym__special_character, - ACTIONS(4265), 1, + ACTIONS(4594), 1, sym_test_operator, - STATE(1814), 1, + STATE(4881), 1, aux_sym__literal_repeat1, - ACTIONS(2604), 2, + STATE(5075), 1, + sym_concatenation, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(798), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + ACTIONS(2550), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4259), 3, + ACTIONS(4592), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2287), 9, + STATE(5074), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95878,14 +100209,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 17, + ACTIONS(2548), 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,137 +100229,64 @@ static const uint16_t 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, - ACTIONS(3), 1, + [24245] = 25, + 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(1191), 4, - 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, - 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(4497), 1, + sym_word, + ACTIONS(4499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4501), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4503), 1, + anon_sym_DOLLAR, + ACTIONS(4505), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4507), 1, + anon_sym_DQUOTE, + ACTIONS(4511), 1, aux_sym_number_token1, + ACTIONS(4513), 1, aux_sym_number_token2, + ACTIONS(4515), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4517), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4519), 1, anon_sym_BQUOTE, + ACTIONS(4521), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24894] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 1, + ACTIONS(4527), 1, sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(4161), 2, + ACTIONS(4529), 1, sym_test_operator, + ACTIONS(4531), 1, 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4596), 1, + aux_sym__simple_variable_name_token1, + STATE(3082), 1, + aux_sym__literal_repeat1, + STATE(7207), 1, + sym_subscript, + ACTIONS(4509), 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(4523), 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, + STATE(825), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1681), 7, 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, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2283), 9, + STATE(2663), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96035,79 +100296,55 @@ 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, + ACTIONS(1683), 10, 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, + [24348] = 8, 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, + ACTIONS(3353), 1, + anon_sym_DQUOTE, + ACTIONS(4590), 1, + sym_variable_name, + STATE(2129), 1, + sym_string, + ACTIONS(4588), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 42, + ACTIONS(4586), 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(1237), 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_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96116,12 +100353,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, @@ -96133,37 +100368,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25092] = 6, + [24417] = 8, 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, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(2637), 1, + sym_variable_name, + STATE(1348), 1, + sym_string, + ACTIONS(2635), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 42, - anon_sym_SEMI, + ACTIONS(2633), 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(1249), 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_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, @@ -96174,12 +100413,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, @@ -96191,37 +100429,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25156] = 6, + [24486] = 8, 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, + ACTIONS(1649), 1, + anon_sym_DQUOTE, + ACTIONS(2637), 1, + sym_variable_name, + STATE(1348), 1, + sym_string, + ACTIONS(2635), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, - anon_sym_SEMI, + ACTIONS(2633), 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(1237), 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_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, @@ -96232,12 +100474,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, @@ -96249,39 +100490,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25220] = 6, + [24555] = 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(1225), 5, + ACTIONS(4391), 1, + anon_sym_DQUOTE, + ACTIONS(4602), 1, + sym_variable_name, + STATE(2292), 1, + sym_string, + ACTIONS(4600), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 42, + ACTIONS(4598), 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(1249), 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_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96290,12 +100536,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, @@ -96307,23 +100551,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25284] = 8, + [24624] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(4021), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(4025), 1, sym_variable_name, - STATE(1694), 1, + STATE(1788), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(4023), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4141), 8, + ACTIONS(4019), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96332,7 +100576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1249), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96353,6 +100597,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, @@ -96367,23 +100612,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25352] = 8, + [24693] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(4391), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4602), 1, sym_variable_name, - STATE(1710), 1, + STATE(2292), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(4600), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(4598), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96392,7 +100637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 34, + ACTIONS(1237), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96403,6 +100648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -96427,23 +100673,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25420] = 8, + [24762] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(4021), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(4025), 1, sym_variable_name, - STATE(1710), 1, + STATE(1788), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(4023), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(4019), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96452,7 +100698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 34, + ACTIONS(1237), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96473,6 +100719,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, @@ -96487,98 +100734,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25488] = 8, - ACTIONS(3), 1, + [24831] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(4604), 1, + sym_word, + ACTIONS(4607), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4610), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOLLAR, + ACTIONS(4616), 1, + sym__special_character, + ACTIONS(4619), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, - sym_variable_name, - STATE(1694), 1, - sym_string, - ACTIONS(4143), 2, + ACTIONS(4625), 1, + aux_sym_number_token1, + ACTIONS(4628), 1, + aux_sym_number_token2, + ACTIONS(4631), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4634), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4637), 1, + anon_sym_BQUOTE, + ACTIONS(4640), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4646), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, - sym_file_descriptor, + ACTIONS(4649), 1, + sym_variable_name, + ACTIONS(4652), 1, sym_test_operator, + ACTIONS(4655), 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(1183), 34, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3082), 1, + aux_sym__literal_repeat1, + STATE(7207), 1, + sym_subscript, + ACTIONS(4622), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4643), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(825), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1793), 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, + STATE(2663), 9, + 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(1795), 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, - aux_sym_heredoc_redirect_token1, + [24934] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4325), 1, + anon_sym_DOLLAR, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(4660), 1, + sym__special_character, + ACTIONS(4662), 1, + sym_test_operator, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(809), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4658), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25556] = 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(4282), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 41, + STATE(2438), 9, + 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(2176), 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, @@ -96587,51 +100884,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, + anon_sym_BQUOTE, + [25027] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4325), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4329), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(4660), 1, + sym__special_character, + ACTIONS(4662), 1, + sym_test_operator, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(809), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4658), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25619] = 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), 43, + STATE(2438), 9, + 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(2180), 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, @@ -96640,52 +100957,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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [25676] = 3, + [25120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(3639), 1, + anon_sym_DQUOTE, + ACTIONS(4489), 1, + sym_variable_name, + STATE(2093), 1, + sym_string, + ACTIONS(4487), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 43, + ACTIONS(4485), 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(1237), 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_LPAREN, - 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, @@ -96694,13 +101004,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, @@ -96712,38 +101019,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25733] = 6, + [25189] = 8, 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, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(4097), 1, + sym_variable_name, + STATE(1967), 1, + sym_string, + ACTIONS(4095), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 41, + ACTIONS(4093), 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(1249), 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, @@ -96752,12 +101064,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, @@ -96769,159 +101080,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25796] = 13, - ACTIONS(3), 1, + [25258] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 1, + ACTIONS(2639), 1, + anon_sym_BQUOTE, + ACTIONS(2500), 22, + sym_file_descriptor, sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - STATE(4174), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2503), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(4161), 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(4153), 27, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - 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_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, - [25873] = 6, - 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, - sym_file_descriptor, - 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, + ACTIONS(2498), 28, + anon_sym_for, + anon_sym_select, 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_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, - 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, + [25319] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4548), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4552), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4554), 1, aux_sym_number_token1, + ACTIONS(4556), 1, aux_sym_number_token2, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4562), 1, anon_sym_BQUOTE, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(4666), 1, + sym__special_character, + ACTIONS(4668), 1, + sym_test_operator, + STATE(4836), 1, + aux_sym__literal_repeat1, + STATE(5044), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4664), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25936] = 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(4305), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 41, + STATE(5161), 9, + 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(2643), 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_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, @@ -96930,55 +101211,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, + [25414] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4548), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4552), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4554), 1, aux_sym_number_token1, + ACTIONS(4556), 1, aux_sym_number_token2, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4562), 1, anon_sym_BQUOTE, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(4666), 1, + sym__special_character, + ACTIONS(4672), 1, + sym_test_operator, + STATE(4881), 1, + aux_sym__literal_repeat1, + STATE(5075), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4670), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [25999] = 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(4309), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 41, + STATE(5165), 9, + 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(2548), 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_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, @@ -96987,55 +101285,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, - 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, - [26062] = 6, + [25509] = 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(4313), 5, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(4097), 1, + sym_variable_name, + STATE(1967), 1, + sym_string, + ACTIONS(4095), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 41, + ACTIONS(4093), 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(1237), 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, @@ -97044,12 +101330,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, @@ -97061,38 +101346,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26125] = 6, + [25578] = 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(2352), 1, + anon_sym_DQUOTE, + ACTIONS(4678), 1, + sym_variable_name, + STATE(1848), 1, + sym_string, + ACTIONS(4676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, + ACTIONS(4674), 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(1237), 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_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, @@ -97101,12 +101392,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,57 +101407,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26188] = 22, - ACTIONS(71), 1, + [25647] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, - sym_word, - ACTIONS(4323), 1, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(4329), 1, - sym__special_character, - ACTIONS(4331), 1, + ACTIONS(4200), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(4210), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, - sym_test_operator, - ACTIONS(4351), 1, + ACTIONS(4218), 1, sym__brace_start, - STATE(2630), 1, + ACTIONS(4475), 1, + sym_test_operator, + ACTIONS(4680), 1, + sym__special_character, + STATE(4704), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4347), 2, + STATE(4812), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(829), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2156), 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(2382), 9, + ACTIONS(4471), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4944), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97178,137 +101460,71 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2158), 12, - sym_file_descriptor, + ACTIONS(2643), 20, + anon_sym_SEMI, 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, - [26283] = 22, - ACTIONS(71), 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, - 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, + 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, - 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_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, - [26378] = 21, + [25742] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3040), 1, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3043), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(3049), 1, + ACTIONS(4200), 1, anon_sym_DQUOTE, - ACTIONS(3052), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3055), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3058), 1, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3061), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3064), 1, + ACTIONS(4210), 1, anon_sym_BQUOTE, - ACTIONS(3067), 1, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3076), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(4356), 1, - sym__special_character, - ACTIONS(4359), 1, + ACTIONS(4479), 1, sym_test_operator, - STATE(2112), 1, + ACTIONS(4680), 1, + sym__special_character, + STATE(4706), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(4819), 1, + sym_concatenation, + ACTIONS(2550), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3070), 2, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4353), 3, + ACTIONS(4477), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2413), 9, + STATE(4946), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97318,14 +101534,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 17, + ACTIONS(2548), 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, @@ -97336,91 +101555,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26471] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2458), 1, - aux_sym__literal_repeat1, - STATE(2661), 1, - sym_concatenation, - STATE(2228), 9, - 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, - 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(2273), 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, - [26534] = 3, + [25837] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(2316), 1, + anon_sym_DQUOTE, + ACTIONS(4686), 1, + sym_variable_name, + STATE(1705), 1, + sym_string, + ACTIONS(4684), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 43, + ts_builtin_sym_end, + ACTIONS(4682), 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(1249), 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, @@ -97429,13 +101601,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, @@ -97447,34 +101616,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26591] = 3, + [25906] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(4192), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4206), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, sym__brace_start, + ACTIONS(4690), 1, + sym__special_character, + ACTIONS(4692), 1, + sym_test_operator, + STATE(4704), 1, + aux_sym__literal_repeat1, + STATE(4812), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 43, + ACTIONS(4214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4688), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4774), 9, + 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(2643), 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, @@ -97484,55 +101688,45 @@ 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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [26648] = 6, + [25999] = 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(1225), 5, + ACTIONS(2316), 1, + anon_sym_DQUOTE, + ACTIONS(4686), 1, + sym_variable_name, + STATE(1705), 1, + sym_string, + ACTIONS(4684), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ts_builtin_sym_end, + ACTIONS(4682), 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(1237), 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, @@ -97541,12 +101735,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, @@ -97558,51 +101750,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26711] = 21, + [26068] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, + ACTIONS(4562), 1, anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(4364), 1, + ACTIONS(4696), 1, sym__special_character, - ACTIONS(4366), 1, + ACTIONS(4698), 1, sym_test_operator, - STATE(2112), 1, + STATE(5044), 1, + sym_concatenation, + STATE(5275), 1, aux_sym__literal_repeat1, - ACTIONS(2162), 2, + ACTIONS(2645), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4362), 3, + ACTIONS(4694), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2413), 9, + STATE(5182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97612,14 +101803,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2160), 17, + ACTIONS(2643), 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97629,39 +101824,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, - [26804] = 6, + [26163] = 21, 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(4370), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(4544), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4546), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4558), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4562), 1, + anon_sym_BQUOTE, + ACTIONS(4564), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4570), 1, sym__brace_start, + ACTIONS(4696), 1, + sym__special_character, + ACTIONS(4702), 1, + sym_test_operator, + STATE(5075), 1, + sym_concatenation, + STATE(5282), 1, + aux_sym__literal_repeat1, + ACTIONS(2550), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 41, + ACTIONS(4566), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4700), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5186), 9, + 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(2548), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97670,74 +101898,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, 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, - [26867] = 22, - ACTIONS(71), 1, + [26258] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 1, - sym_word, - ACTIONS(4375), 1, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4378), 1, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4381), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(4384), 1, - sym__special_character, - ACTIONS(4387), 1, + ACTIONS(4200), 1, anon_sym_DQUOTE, - ACTIONS(4393), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(4396), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(4399), 1, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4402), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4405), 1, - anon_sym_BQUOTE, - ACTIONS(4408), 1, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4414), 1, - sym_test_operator, - ACTIONS(4417), 1, + ACTIONS(4218), 1, sym__brace_start, - STATE(2630), 1, + ACTIONS(4690), 1, + sym__special_character, + ACTIONS(4706), 1, + sym_test_operator, + STATE(4706), 1, aux_sym__literal_repeat1, - ACTIONS(4390), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4411), 2, + STATE(4819), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(829), 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(2382), 9, + ACTIONS(4704), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4970), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97747,52 +101949,66 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 12, - sym_file_descriptor, + ACTIONS(2548), 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_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, - [26962] = 7, + anon_sym_BQUOTE, + [26351] = 8, 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(2386), 1, + anon_sym_DQUOTE, + ACTIONS(4712), 1, + sym_variable_name, + STATE(1708), 1, + sym_string, + ACTIONS(4710), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + ACTIONS(4708), 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(1249), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97801,12 +102017,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, @@ -97818,38 +102032,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27027] = 6, + [26420] = 8, 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, + ACTIONS(2386), 1, + anon_sym_DQUOTE, + ACTIONS(4712), 1, + sym_variable_name, + STATE(1708), 1, + sym_string, + ACTIONS(4710), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 41, + ACTIONS(4708), 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(1237), 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_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97858,12 +102078,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, @@ -97875,34 +102093,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27090] = 3, + [26489] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(3472), 1, + anon_sym_DQUOTE, + ACTIONS(4718), 1, + sym_variable_name, + STATE(2034), 1, + sym_string, + ACTIONS(4716), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 43, + ts_builtin_sym_end, + ACTIONS(4714), 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(1249), 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, @@ -97911,13 +102139,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, @@ -97929,38 +102154,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27147] = 6, + [26558] = 8, 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(3472), 1, + anon_sym_DQUOTE, + ACTIONS(4718), 1, + sym_variable_name, + STATE(2034), 1, + sym_string, + ACTIONS(4716), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 41, + ts_builtin_sym_end, + ACTIONS(4714), 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(1237), 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_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, @@ -97969,12 +102200,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, @@ -97986,34 +102215,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27210] = 3, + [26627] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4495), 1, + sym_variable_name, + STATE(2253), 1, + sym_string, + ACTIONS(4493), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 43, + ACTIONS(4491), 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(1249), 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_LPAREN, - 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, @@ -98022,13 +102261,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, @@ -98040,203 +102276,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27267] = 6, - ACTIONS(3), 1, + [26696] = 3, + ACTIONS(71), 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, + ACTIONS(2500), 23, 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, - anon_sym_PIPE_PIPE, - 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_LPAREN_LPAREN, 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_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, + ACTIONS(2498), 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, - [27330] = 3, - ACTIONS(3), 1, + [26755] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(2504), 1, + anon_sym_BQUOTE, + ACTIONS(2500), 22, 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, - anon_sym_PIPE_PIPE, - 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_LPAREN_LPAREN, 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_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, - 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, - [27387] = 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), 43, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + ACTIONS(2498), 28, + anon_sym_for, + anon_sym_select, 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_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, - 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, + [26816] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4325), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4329), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4339), 1, anon_sym_BQUOTE, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(4660), 1, + sym__special_character, + ACTIONS(4662), 1, + sym_test_operator, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(809), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4658), 3, + sym_raw_string, + sym_ansi_c_string, 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, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 41, + STATE(2438), 9, + 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(2176), 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, @@ -98245,55 +102463,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [26911] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4325), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4329), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4339), 1, anon_sym_BQUOTE, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(4660), 1, + sym__special_character, + ACTIONS(4662), 1, + sym_test_operator, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(809), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4658), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [27507] = 6, + STATE(2438), 9, + 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(2180), 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, + [27006] = 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(4443), 5, + ACTIONS(2352), 1, + anon_sym_DQUOTE, + ACTIONS(4678), 1, + sym_variable_name, + STATE(1848), 1, + sym_string, + ACTIONS(4676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 41, + ACTIONS(4674), 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(1249), 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_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, @@ -98302,12 +102583,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, @@ -98319,38 +102598,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27570] = 6, + [27075] = 8, 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, + ACTIONS(3639), 1, + anon_sym_DQUOTE, + ACTIONS(4489), 1, + sym_variable_name, + STATE(2093), 1, + sym_string, + ACTIONS(4487), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(4485), 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(1249), 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_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, @@ -98359,12 +102643,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, @@ -98376,34 +102658,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27633] = 3, + [27143] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4730), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ACTIONS(4734), 1, + sym_variable_name, + STATE(7214), 1, + sym_subscript, + ACTIONS(4722), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4724), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4726), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(4728), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_LT_LT_DASH, + STATE(4591), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2641), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + ACTIONS(4720), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98411,11 +102706,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, @@ -98430,15 +102723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27690] = 6, + [27221] = 6, ACTIONS(71), 1, sym_comment, - STATE(2634), 1, + STATE(2776), 1, aux_sym__literal_repeat1, - STATE(850), 2, + STATE(856), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2335), 9, + STATE(2607), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98448,7 +102741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 12, + ACTIONS(2180), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -98457,11 +102750,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, sym_word, - ACTIONS(2158), 25, + ACTIONS(2182), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -98470,6 +102764,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, @@ -98478,7 +102773,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, @@ -98487,88 +102781,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27753] = 22, - ACTIONS(3), 1, + [27285] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(4737), 1, + sym_word, + ACTIONS(4740), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(4743), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(4746), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(4749), 1, + sym__special_character, + ACTIONS(4752), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(4758), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4761), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(4764), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, + ACTIONS(4770), 1, anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(4773), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(4447), 1, - sym__special_character, - ACTIONS(4449), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4451), 1, + ACTIONS(4779), 1, sym_test_operator, - STATE(2045), 1, + ACTIONS(4782), 1, + sym__brace_start, + STATE(2776), 1, aux_sym__literal_repeat1, - ACTIONS(2327), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(4755), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4776), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(851), 2, + STATE(856), 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(2325), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 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, - [27848] = 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, + STATE(2607), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98578,53 +102841,64 @@ static const uint16_t ts_small_parse_table[] = { 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(2189), 13, 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, + [27381] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4562), 1, anon_sym_BQUOTE, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [27911] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2544), 1, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(4698), 1, + sym_test_operator, + ACTIONS(4785), 1, + sym__special_character, + STATE(4836), 1, aux_sym__literal_repeat1, - STATE(2677), 1, + STATE(5044), 1, sym_concatenation, - STATE(2250), 9, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4566), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4694), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5182), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98634,83 +102908,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 13, + ACTIONS(2643), 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_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, - 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_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, + [27475] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4552), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4562), 1, anon_sym_BQUOTE, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(4702), 1, + sym_test_operator, + ACTIONS(4785), 1, + sym__special_character, + STATE(4881), 1, + aux_sym__literal_repeat1, + STATE(5075), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27974] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4298), 1, - sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4174), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 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(4700), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5186), 9, + 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(2548), 19, 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_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, @@ -98718,34 +103000,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, - 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, - [28045] = 3, + anon_sym_LT_LT_DASH, + [27569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(4787), 1, + aux_sym_concatenation_token1, + ACTIONS(4789), 1, sym__concat, + STATE(878), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 43, + ACTIONS(1271), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98774,7 +103045,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, @@ -98789,34 +103059,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28102] = 3, + [27633] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4495), 1, + sym_variable_name, + STATE(2253), 1, + sym_string, + ACTIONS(4493), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ACTIONS(4491), 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(1237), 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, @@ -98825,13 +103104,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, @@ -98843,38 +103119,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28159] = 6, + [27701] = 8, 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(2352), 1, + anon_sym_DQUOTE, + ACTIONS(4678), 1, + sym_variable_name, + STATE(1848), 1, + sym_string, + ACTIONS(4676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(237), 41, + ACTIONS(4674), 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(1249), 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_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, @@ -98883,12 +103164,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, @@ -98900,57 +103179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28222] = 22, - ACTIONS(71), 1, + [27769] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - sym_word, - ACTIONS(4456), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4459), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4462), 1, - anon_sym_DOLLAR, - ACTIONS(4465), 1, - sym__special_character, - ACTIONS(4468), 1, - anon_sym_DQUOTE, - ACTIONS(4474), 1, - aux_sym_number_token1, - ACTIONS(4477), 1, - aux_sym_number_token2, - ACTIONS(4480), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4486), 1, - anon_sym_BQUOTE, - ACTIONS(4489), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4495), 1, - sym_test_operator, - ACTIONS(4498), 1, - sym__brace_start, - STATE(2634), 1, + STATE(2171), 1, aux_sym__literal_repeat1, - ACTIONS(4471), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4492), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(850), 2, + STATE(869), 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(2335), 9, + ACTIONS(2178), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(2624), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98960,83 +103203,76 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 12, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2176), 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, - [28317] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2959), 1, 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, + [27833] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, + anon_sym_DQUOTE, + ACTIONS(4678), 1, + sym_variable_name, + STATE(1848), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2454), 16, + ACTIONS(4676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4674), 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(1237), 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, @@ -99046,32 +103282,56 @@ 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, + 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, + [27901] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(4793), 1, + anon_sym_DQUOTE, + ACTIONS(4797), 1, + sym_variable_name, + STATE(2614), 1, + sym_string, + ACTIONS(4795), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 43, - anon_sym_SEMI, + ACTIONS(4791), 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(1249), 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, @@ -99085,10 +103345,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, @@ -99100,32 +103357,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28469] = 3, + [27969] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(4793), 1, + anon_sym_DQUOTE, + ACTIONS(4797), 1, + sym_variable_name, + STATE(2614), 1, + sym_string, + ACTIONS(4795), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 43, - anon_sym_SEMI, + ACTIONS(4791), 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(1237), 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, @@ -99139,10 +103405,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, @@ -99154,51 +103417,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28526] = 21, + [28037] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3008), 1, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3010), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(3014), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3016), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3020), 1, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3022), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3024), 1, - anon_sym_BQUOTE, - ACTIONS(3026), 1, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3032), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(4364), 1, + ACTIONS(4801), 1, sym__special_character, - ACTIONS(4366), 1, + ACTIONS(4803), 1, sym_test_operator, - STATE(2112), 1, + STATE(4836), 1, aux_sym__literal_repeat1, - ACTIONS(2158), 2, + STATE(5044), 1, + sym_concatenation, + ACTIONS(2645), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3028), 2, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(822), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4362), 3, + ACTIONS(4799), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2413), 9, + STATE(5198), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99208,14 +103468,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2156), 17, + ACTIONS(2643), 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, @@ -99225,47 +103488,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, - [28619] = 13, + anon_sym_BQUOTE, + [28129] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(3639), 1, + anon_sym_DQUOTE, + ACTIONS(4489), 1, sym_variable_name, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - STATE(6702), 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, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + STATE(2093), 1, + sym_string, + ACTIONS(4487), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 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, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + ACTIONS(4485), 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(1237), 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, @@ -99273,12 +103533,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, @@ -99290,38 +103549,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28696] = 6, + [28197] = 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, + STATE(2171), 1, + aux_sym__literal_repeat1, + STATE(869), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2182), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 41, - anon_sym_SEMI, + STATE(2624), 9, + 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(2180), 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, @@ -99347,34 +103607,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28759] = 3, + [28261] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3047), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3050), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3053), 1, + anon_sym_DOLLAR, + ACTIONS(3059), 1, + anon_sym_DQUOTE, + ACTIONS(3062), 1, + aux_sym_number_token1, + ACTIONS(3065), 1, + aux_sym_number_token2, + ACTIONS(3068), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3071), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3074), 1, + anon_sym_BQUOTE, + ACTIONS(3077), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3086), 1, sym__brace_start, + ACTIONS(4808), 1, + sym__special_character, + ACTIONS(4811), 1, + sym_test_operator, + STATE(2171), 1, + aux_sym__literal_repeat1, + ACTIONS(3080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(869), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2189), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 43, - anon_sym_SEMI, + ACTIONS(4805), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2624), 9, + 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(2187), 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_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, @@ -99384,34 +103680,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, - 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, - [28816] = 3, + [28355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(4787), 1, + aux_sym_concatenation_token1, + ACTIONS(4789), 1, sym__concat, + STATE(878), 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(1312), 43, + ACTIONS(237), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99440,7 +103724,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, @@ -99455,34 +103738,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28873] = 3, + [28419] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4734), 1, + sym_variable_name, + ACTIONS(4818), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, - anon_sym_SEMI, + STATE(7214), 1, + sym_subscript, + ACTIONS(4724), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4726), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(4728), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_LT_LT_DASH, + ACTIONS(4814), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4591), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4816), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + ACTIONS(4720), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99490,11 +103786,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, @@ -99509,27 +103803,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28930] = 9, + [28497] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, + ACTIONS(4734), 1, sym_variable_name, - STATE(6702), 1, + STATE(7214), 1, sym_subscript, - ACTIONS(4161), 2, + ACTIONS(4732), 2, sym_test_operator, sym__brace_start, - ACTIONS(4268), 2, + ACTIONS(4820), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4174), 2, + STATE(4591), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(4358), 3, + STATE(4744), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 17, + ACTIONS(4720), 17, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -99547,56 +103841,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3), 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), 43, + ACTIONS(4726), 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_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, @@ -99605,52 +103864,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, - 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, - [29056] = 3, + [28567] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4495), 1, + sym_variable_name, + STATE(2253), 1, + sym_string, + ACTIONS(4493), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 43, + ACTIONS(4491), 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(1249), 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, @@ -99659,13 +103909,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, @@ -99677,53 +103924,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29113] = 22, + [28635] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3083), 1, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3085), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(3089), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3091), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3095), 1, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3097), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3099), 1, - anon_sym_BQUOTE, - ACTIONS(3101), 1, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3109), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(4447), 1, + ACTIONS(4801), 1, sym__special_character, - ACTIONS(4451), 1, + ACTIONS(4824), 1, sym_test_operator, - ACTIONS(4521), 1, - aux_sym__simple_variable_name_token1, - STATE(2045), 1, + STATE(4881), 1, aux_sym__literal_repeat1, - ACTIONS(2283), 2, + STATE(5075), 1, + sym_concatenation, + ACTIONS(2550), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3103), 2, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(843), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4445), 3, + ACTIONS(4822), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2393), 9, + STATE(5202), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99733,14 +103975,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2281), 16, + ACTIONS(2548), 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, @@ -99750,38 +103995,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [29208] = 6, + anon_sym_BQUOTE, + [28727] = 10, ACTIONS(3), 1, sym_comment, - STATE(1825), 1, - aux_sym__literal_repeat1, - STATE(2047), 1, - sym_concatenation, - ACTIONS(2273), 5, - sym_file_descriptor, + ACTIONS(4734), 1, sym_variable_name, + ACTIONS(4828), 1, + aux_sym_heredoc_redirect_token1, + STATE(7214), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4591), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, sym_test_operator, 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, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 10, + 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(4720), 27, 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, @@ -99789,7 +104041,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, @@ -99807,22 +104058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29271] = 6, + [28799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4787), 1, aux_sym_concatenation_token1, - ACTIONS(4425), 1, + ACTIONS(4789), 1, sym__concat, - STATE(833), 1, + STATE(880), 1, aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 41, + ACTIONS(1287), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99834,6 +104085,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, @@ -99864,38 +104116,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29334] = 6, + [28863] = 7, ACTIONS(3), 1, sym_comment, - STATE(1885), 1, - aux_sym__literal_repeat1, - STATE(2158), 1, - sym_concatenation, - ACTIONS(2277), 5, + ACTIONS(4787), 1, + aux_sym_concatenation_token1, + ACTIONS(4789), 1, + sym__concat, + ACTIONS(4830), 1, + anon_sym_LPAREN, + STATE(880), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(2293), 9, - 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), 33, + ACTIONS(1287), 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, @@ -99921,17 +104175,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29397] = 3, + [28929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(4787), 1, + aux_sym_concatenation_token1, + ACTIONS(4833), 1, sym__concat, + STATE(881), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 43, + ACTIONS(1281), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99960,70 +104219,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, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [29454] = 13, - 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4525), 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(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, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100038,14 +104233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29530] = 6, + [28993] = 6, ACTIONS(71), 1, sym_comment, - STATE(2611), 1, + STATE(2776), 1, aux_sym__literal_repeat1, - STATE(2833), 1, + STATE(856), 2, sym_concatenation, - STATE(2419), 9, + aux_sym_for_statement_repeat1, + STATE(2607), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -100055,7 +104251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 12, + ACTIONS(2176), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -100064,11 +104260,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, sym_word, - ACTIONS(2277), 25, + ACTIONS(2178), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -100077,6 +104274,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, @@ -100085,7 +104283,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, @@ -100094,258 +104291,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [29592] = 22, - ACTIONS(71), 1, + [29057] = 6, + ACTIONS(3), 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, - anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, - anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, - anon_sym_BQUOTE, - ACTIONS(4560), 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, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 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, - 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(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, - 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, - anon_sym_DOLLAR, - ACTIONS(4544), 1, - sym__special_character, - ACTIONS(4546), 1, - anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, - anon_sym_BQUOTE, - ACTIONS(4560), 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, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 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, - 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(2162), 11, + ACTIONS(4787), 1, + aux_sym_concatenation_token1, + ACTIONS(4835), 1, + sym__concat, + STATE(881), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, 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, - [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, - 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__bare_dollar, 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, - 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, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 8, + ACTIONS(1275), 42, 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_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, @@ -100353,6 +104331,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 +104349,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29944] = 8, + [29121] = 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(4837), 1, + aux_sym_concatenation_token1, + ACTIONS(4840), 1, + sym__concat, + STATE(881), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 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(1261), 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_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100416,7 +104393,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 +104407,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30010] = 8, + [29185] = 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(1191), 3, + ACTIONS(4843), 1, + aux_sym_concatenation_token1, + ACTIONS(4846), 1, + sym__concat, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 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(1261), 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_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100474,7 +104450,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,95 +104464,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30076] = 23, - ACTIONS(71), 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, - 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_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, - [30172] = 6, + [29248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(4849), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(4851), 1, sym__concat, - STATE(883), 1, + STATE(915), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(1271), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100586,8 +104491,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, @@ -100615,22 +104521,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30234] = 6, + [29311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4857), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4859), 1, sym__concat, - STATE(907), 1, + STATE(905), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(4855), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 40, + ACTIONS(4853), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100641,6 +104547,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, @@ -100671,41 +104578,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30296] = 6, - ACTIONS(3), 1, + [29374] = 6, + 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(4439), 5, + STATE(3035), 1, + aux_sym__literal_repeat1, + STATE(886), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2749), 9, + 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(2180), 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(2182), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 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, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -100713,91 +104626,66 @@ 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, - [30358] = 30, + [29437] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(4861), 1, + sym_word, + ACTIONS(4864), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(4867), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, + ACTIONS(4870), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, + ACTIONS(4873), 1, + sym__special_character, + ACTIONS(4876), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(4882), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(4885), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(4888), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(4891), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(4894), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(4897), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1067), 1, + ACTIONS(4903), 1, sym_test_operator, - ACTIONS(1069), 1, + ACTIONS(4906), 1, sym__brace_start, - ACTIONS(1352), 1, - anon_sym_LT_LT_LT, - ACTIONS(1354), 1, - sym_file_descriptor, - ACTIONS(2825), 1, - sym_word, - ACTIONS(4669), 1, - sym__special_character, - ACTIONS(4671), 1, - sym_variable_name, - STATE(619), 1, - sym_command_name, - STATE(2307), 1, + STATE(3035), 1, aux_sym__literal_repeat1, - STATE(2412), 1, - sym_concatenation, - STATE(6656), 1, - sym_subscript, - ACTIONS(1049), 2, + ACTIONS(4879), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1063), 2, + ACTIONS(4900), 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, + STATE(886), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 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(1879), 9, + STATE(2749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -100807,22 +104695,35 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [30468] = 6, + ACTIONS(2189), 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, + [29532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4849), 1, aux_sym_concatenation_token1, - ACTIONS(4667), 1, + ACTIONS(4851), 1, sym__concat, - STATE(907), 1, + STATE(915), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(276), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 40, + ACTIONS(237), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100833,6 +104734,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, @@ -100863,22 +104765,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30530] = 6, + [29595] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4909), 1, + sym_word, + ACTIONS(4911), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4913), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4915), 1, + anon_sym_DOLLAR, + ACTIONS(4917), 1, + sym__special_character, + ACTIONS(4919), 1, + anon_sym_DQUOTE, + ACTIONS(4923), 1, + aux_sym_number_token1, + ACTIONS(4925), 1, + aux_sym_number_token2, + ACTIONS(4927), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4929), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4931), 1, + anon_sym_BQUOTE, + ACTIONS(4933), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4937), 1, + sym_test_operator, + ACTIONS(4939), 1, + sym__brace_start, + STATE(2941), 1, + aux_sym__literal_repeat1, + ACTIONS(4921), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4935), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(901), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2180), 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(2734), 9, + 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(2182), 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, + [29690] = 3, ACTIONS(3), 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, + ACTIONS(1316), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 40, + ACTIONS(1314), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100889,6 +104859,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, @@ -100905,6 +104877,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, @@ -100919,22 +104892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30592] = 6, + [29747] = 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(1263), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 40, + ACTIONS(1261), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100946,8 +104914,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 +104931,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 +104946,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, + [29804] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4627), 1, + ACTIONS(4909), 1, sym_word, - ACTIONS(4629), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(4913), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4633), 1, + ACTIONS(4915), 1, anon_sym_DOLLAR, - ACTIONS(4635), 1, + ACTIONS(4917), 1, sym__special_character, - ACTIONS(4637), 1, + ACTIONS(4919), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, + ACTIONS(4923), 1, aux_sym_number_token1, - ACTIONS(4643), 1, + ACTIONS(4925), 1, aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(4927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, + ACTIONS(4929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(4931), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4657), 1, + ACTIONS(4937), 1, sym_test_operator, - ACTIONS(4659), 1, + ACTIONS(4939), 1, sym__brace_start, - ACTIONS(4675), 1, - aux_sym__simple_variable_name_token1, - STATE(2831), 1, + STATE(2941), 1, aux_sym__literal_repeat1, - ACTIONS(4639), 2, + ACTIONS(4921), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4653), 2, + ACTIONS(4935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(933), 2, + STATE(901), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2325), 7, + aux_sym_for_statement_repeat1, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -101086,7 +104996,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(2734), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -101096,33 +105006,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2327), 10, + ACTIONS(2178), 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, + [29899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(4677), 1, - sym__concat, - STATE(895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1368), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 40, + ACTIONS(1366), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101134,8 +105041,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, @@ -101149,6 +105058,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, @@ -101163,20 +105073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30880] = 5, + [29956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - sym__special_character, - STATE(887), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1304), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(1302), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101205,7 +105112,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, @@ -101218,17 +105127,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30940] = 3, + [30013] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2789), 1, + aux_sym__literal_repeat1, + STATE(3116), 1, + sym_concatenation, + STATE(2609), 9, + 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(2643), 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(2645), 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, + [30076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1324), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 42, + ACTIONS(1322), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101239,6 +105205,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 +105238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30996] = 3, + [30133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1312), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + ACTIONS(1310), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101292,6 +105259,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 +105292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31052] = 3, + [30190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 42, + ACTIONS(1306), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101345,6 +105313,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, @@ -101377,17 +105346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31108] = 3, + [30247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, sym__concat, + STATE(904), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(4941), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101415,7 +105389,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, @@ -101430,17 +105403,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31164] = 3, + [30310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, sym__concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(4945), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101468,7 +105446,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, @@ -101483,33 +105460,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31220] = 3, + [30373] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4949), 1, + sym_variable_name, + STATE(7217), 1, + sym_subscript, + ACTIONS(4732), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4820), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 42, + STATE(4752), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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(4726), 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, @@ -101518,35 +105520,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [30442] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4952), 1, + sym_word, + ACTIONS(4955), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4958), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4961), 1, anon_sym_DOLLAR, + ACTIONS(4964), 1, sym__special_character, + ACTIONS(4967), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4973), 1, aux_sym_number_token1, + ACTIONS(4976), 1, aux_sym_number_token2, + ACTIONS(4979), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4982), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4985), 1, anon_sym_BQUOTE, + ACTIONS(4988), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4994), 1, + sym_test_operator, + ACTIONS(4997), 1, + sym__brace_start, + STATE(2941), 1, + aux_sym__literal_repeat1, + ACTIONS(4970), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [31276] = 3, + STATE(901), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 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(2734), 9, + 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(2189), 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, + [30537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1320), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 42, + ACTIONS(1318), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101557,6 +105614,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, @@ -101589,22 +105647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31332] = 6, + [30594] = 3, 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(1332), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1330), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101616,8 +105669,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, @@ -101631,6 +105686,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, @@ -101645,17 +105701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31394] = 3, + [30651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(5000), 1, sym__concat, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 42, + ACTIONS(1281), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101666,7 +105727,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, @@ -101683,7 +105744,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, @@ -101698,17 +105758,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31450] = 3, + [30714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(5002), 1, sym__concat, + STATE(882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 42, + ACTIONS(1275), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101719,7 +105784,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, @@ -101736,7 +105801,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 +105815,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31506] = 3, + [30777] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(3874), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3877), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3880), 1, + anon_sym_DOLLAR, + ACTIONS(3886), 1, + anon_sym_DQUOTE, + ACTIONS(3889), 1, + aux_sym_number_token1, + ACTIONS(3892), 1, + aux_sym_number_token2, + ACTIONS(3895), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3898), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3901), 1, + anon_sym_BQUOTE, + ACTIONS(3904), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3913), 1, + sym__brace_start, + ACTIONS(5007), 1, + sym__special_character, + ACTIONS(5010), 1, + sym_test_operator, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(2189), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3907), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(906), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5004), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2758), 9, + 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(2187), 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, + [30870] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4849), 1, + aux_sym_concatenation_token1, + ACTIONS(4851), 1, sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 42, + ACTIONS(1287), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101789,7 +105930,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 +105944,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31562] = 3, + [30933] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(4849), 1, + aux_sym_concatenation_token1, + ACTIONS(4851), 1, sym__concat, + ACTIONS(5013), 1, + anon_sym_LPAREN, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(1287), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101825,7 +105972,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, @@ -101842,7 +105988,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,32 +106002,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31618] = 8, + [30998] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(3747), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3755), 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, - sym_test_operator, + ACTIONS(3757), 1, + aux_sym_number_token1, + ACTIONS(3759), 1, + aux_sym_number_token2, + ACTIONS(3761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3765), 1, + anon_sym_BQUOTE, + ACTIONS(3767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3773), 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, + ACTIONS(5018), 1, + sym__special_character, + ACTIONS(5020), 1, + sym_test_operator, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3769), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(906), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5016), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2758), 9, + 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(2176), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -101899,56 +106073,44 @@ 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, - [31684] = 8, + [31091] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, - anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(4828), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4949), 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(1191), 3, + STATE(7217), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4752), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 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, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4720), 27, 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, @@ -101956,12 +106118,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, - 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, @@ -101973,17 +106135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31750] = 3, + [31162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(1358), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -101995,6 +106157,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, @@ -102026,17 +106189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31806] = 3, + [31219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1356), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + ACTIONS(1354), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102047,6 +106210,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, @@ -102079,17 +106243,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31862] = 3, + [31276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, sym__concat, + STATE(904), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 42, + ACTIONS(1271), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102117,7 +106286,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, @@ -102132,17 +106300,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31918] = 3, + [31339] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(3631), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3635), 1, + anon_sym_DOLLAR, + ACTIONS(3639), 1, + anon_sym_DQUOTE, + ACTIONS(3641), 1, + aux_sym_number_token1, + ACTIONS(3643), 1, + aux_sym_number_token2, + ACTIONS(3645), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3647), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3649), 1, + anon_sym_BQUOTE, + ACTIONS(3651), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3659), 1, + sym__brace_start, + ACTIONS(5024), 1, + sym__special_character, + ACTIONS(5026), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5028), 1, + sym_test_operator, + STATE(2531), 1, + aux_sym__literal_repeat1, + ACTIONS(2556), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3653), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(922), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(5022), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2751), 9, + 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(2554), 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, + [31434] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4849), 1, + aux_sym_concatenation_token1, + ACTIONS(5030), 1, sym__concat, + STATE(919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 42, + ACTIONS(1281), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102170,7 +106416,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,17 +106430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31974] = 3, + [31497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1328), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 42, + ACTIONS(1326), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102207,6 +106452,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, @@ -102238,22 +106484,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32030] = 6, + [31554] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4849), 1, aux_sym_concatenation_token1, - ACTIONS(4688), 1, + ACTIONS(5032), 1, sym__concat, - STATE(911), 1, + STATE(919), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1277), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 40, + ACTIONS(1275), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102264,6 +106510,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, @@ -102294,17 +106541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32092] = 3, + [31617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1344), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(1342), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102315,6 +106562,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, @@ -102347,17 +106595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32148] = 3, + [31674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5034), 1, + aux_sym_concatenation_token1, + ACTIONS(5037), 1, sym__concat, + STATE(919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 42, + ACTIONS(1261), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102368,7 +106621,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, @@ -102385,7 +106638,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 +106652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32204] = 6, + [31737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4690), 1, - sym__concat, - STATE(911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1336), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 40, + ACTIONS(1334), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102426,6 +106673,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, @@ -102442,6 +106691,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, @@ -102456,22 +106706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32266] = 6, + [31794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - aux_sym_concatenation_token1, - ACTIONS(4695), 1, - sym__concat, - STATE(911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1340), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1338), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102482,6 +106727,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, @@ -102498,6 +106745,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, @@ -102512,37 +106760,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32328] = 6, + [31851] = 22, 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(1225), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3254), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3257), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3260), 1, + anon_sym_DOLLAR, + ACTIONS(3266), 1, + anon_sym_DQUOTE, + ACTIONS(3269), 1, + aux_sym_number_token1, + ACTIONS(3272), 1, + aux_sym_number_token2, + ACTIONS(3275), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3281), 1, + anon_sym_BQUOTE, + ACTIONS(3284), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3296), 1, sym__brace_start, + ACTIONS(5043), 1, + sym__special_character, + ACTIONS(5046), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5049), 1, + sym_test_operator, + STATE(2531), 1, + aux_sym__literal_repeat1, + ACTIONS(2670), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, - anon_sym_SEMI, + ACTIONS(3287), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(922), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(5040), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2751), 9, + 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(2668), 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_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, @@ -102551,34 +106833,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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, + [31946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, sym__concat, + STATE(904), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + ACTIONS(5052), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102589,7 +106859,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, @@ -102606,7 +106876,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, @@ -102621,17 +106890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32446] = 3, + [32009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 42, + ACTIONS(1362), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102643,6 +106912,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, @@ -102674,17 +106944,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32502] = 3, + [32066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, sym__concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 42, + ACTIONS(5056), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102712,7 +106987,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, @@ -102727,17 +107001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32558] = 3, + [32129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(1346), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102748,6 +107022,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, @@ -102780,17 +107055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32614] = 3, + [32186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1352), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 42, + ACTIONS(1350), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102801,6 +107076,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, @@ -102833,17 +107109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32670] = 3, + [32243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(1346), 43, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102854,6 +107130,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, @@ -102886,90 +107163,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32726] = 3, - ACTIONS(3), 1, + [32300] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 42, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2877), 1, + aux_sym__literal_repeat1, + STATE(3143), 1, + sym_concatenation, + STATE(2628), 9, + 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(2548), 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, - [32782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 6, + ACTIONS(2550), 25, 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, anon_sym_PIPE_PIPE, 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, @@ -102977,32 +107212,30 @@ 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, - [32838] = 3, + [32363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, sym__concat, + STATE(904), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5062), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 42, + ACTIONS(5060), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103013,7 +107246,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, @@ -103030,7 +107263,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 +107277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32894] = 3, + [32426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, sym__concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5066), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(5064), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103083,7 +107320,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 +107334,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32950] = 3, + [32489] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4949), 1, + sym_variable_name, + ACTIONS(5074), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + STATE(7217), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5068), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5072), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LT_LT_DASH, + STATE(4752), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(2641), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103132,11 +107381,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,14 +107398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33006] = 6, + [32566] = 6, ACTIONS(71), 1, sym_comment, - STATE(2609), 1, + STATE(3035), 1, aux_sym__literal_repeat1, - STATE(3008), 1, + STATE(886), 2, sym_concatenation, - STATE(2408), 9, + aux_sym_for_statement_repeat1, + STATE(2749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -103168,7 +107416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 12, + ACTIONS(2176), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -103181,7 +107429,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2273), 25, + ACTIONS(2178), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -103207,40 +107455,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [33068] = 8, + [32629] = 6, 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(4857), 1, + aux_sym_concatenation_token1, + ACTIONS(4859), 1, + sym__concat, + STATE(904), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5078), 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(5076), 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, @@ -103249,11 +107495,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, @@ -103265,32 +107512,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33134] = 8, + [32692] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(3631), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3633), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3635), 1, + anon_sym_DOLLAR, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, - sym_variable_name, - STATE(1777), 1, - sym_string, - ACTIONS(3815), 2, + ACTIONS(3641), 1, + aux_sym_number_token1, + ACTIONS(3643), 1, + aux_sym_number_token2, + ACTIONS(3645), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3647), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3649), 1, + anon_sym_BQUOTE, + ACTIONS(3651), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3659), 1, + sym__brace_start, + ACTIONS(5024), 1, + sym__special_character, + ACTIONS(5028), 1, + sym_test_operator, + ACTIONS(5080), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + STATE(2531), 1, + aux_sym__literal_repeat1, + ACTIONS(2655), 2, sym_file_descriptor, - sym_test_operator, - 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(3653), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(914), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(5022), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2751), 9, + 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(2653), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -103307,49 +107585,38 @@ 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, - [33200] = 3, + [32787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + STATE(2081), 1, + aux_sym__literal_repeat1, + STATE(2536), 1, + sym_concatenation, + ACTIONS(2645), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 42, - anon_sym_SEMI, + STATE(2629), 9, + 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(2643), 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, @@ -103361,7 +107628,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, @@ -103376,33 +107642,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33256] = 3, + [32850] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3747), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + aux_sym_number_token1, + ACTIONS(3759), 1, + aux_sym_number_token2, + ACTIONS(3761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3765), 1, + anon_sym_BQUOTE, + ACTIONS(3767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3773), 1, sym__brace_start, + ACTIONS(5018), 1, + sym__special_character, + ACTIONS(5020), 1, + sym_test_operator, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, - anon_sym_SEMI, + ACTIONS(3769), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(906), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5016), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2758), 9, + 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(2180), 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, @@ -103412,50 +107714,38 @@ 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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [33312] = 3, + [32943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + STATE(2016), 1, + aux_sym__literal_repeat1, + STATE(2212), 1, + sym_concatenation, + ACTIONS(2550), 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(2633), 9, + 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(2548), 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, @@ -103467,7 +107757,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, @@ -103482,33 +107771,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33368] = 3, + [33006] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4949), 1, + sym_variable_name, + ACTIONS(5084), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, - anon_sym_SEMI, + STATE(7217), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5072), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_LT_LT_DASH, + ACTIONS(5082), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4752), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4816), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103516,11 +107818,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, @@ -103535,23 +107835,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33424] = 6, + [33083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(5086), 1, aux_sym_concatenation_token1, - ACTIONS(4700), 1, + ACTIONS(5088), 1, sym__concat, - STATE(945), 1, + STATE(1053), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + 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(1223), 39, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103591,33 +107891,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33486] = 3, + [33145] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5090), 1, + sym_variable_name, + STATE(7198), 1, + sym_subscript, + ACTIONS(4732), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + STATE(4865), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4820), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 42, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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(4726), 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, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [33213] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5095), 1, + anon_sym_DQUOTE, + ACTIONS(5099), 1, + sym_variable_name, + STATE(2674), 1, + sym_string, + ACTIONS(5097), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5093), 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(1249), 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, @@ -103629,10 +107996,65 @@ 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, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [33279] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5095), 1, anon_sym_DQUOTE, + ACTIONS(5099), 1, + sym_variable_name, + STATE(2674), 1, + sym_string, + ACTIONS(5097), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5093), 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(1237), 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, @@ -103644,59 +108066,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33542] = 23, + [33345] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(4702), 1, - sym_word, - ACTIONS(4705), 1, + ACTIONS(400), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4708), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4711), 1, + ACTIONS(404), 1, anon_sym_DOLLAR, - ACTIONS(4714), 1, - sym__special_character, - ACTIONS(4717), 1, + ACTIONS(408), 1, anon_sym_DQUOTE, - ACTIONS(4723), 1, + ACTIONS(412), 1, aux_sym_number_token1, - ACTIONS(4726), 1, + ACTIONS(414), 1, aux_sym_number_token2, - ACTIONS(4729), 1, + ACTIONS(416), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4732), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4735), 1, + ACTIONS(420), 1, anon_sym_BQUOTE, - ACTIONS(4738), 1, + ACTIONS(422), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4744), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4747), 1, + ACTIONS(430), 1, sym_test_operator, - ACTIONS(4750), 1, + ACTIONS(432), 1, sym__brace_start, - STATE(2831), 1, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2895), 1, + sym_word, + ACTIONS(5101), 1, + sym__special_character, + ACTIONS(5103), 1, + sym_variable_name, + STATE(555), 1, + sym_command_name, + STATE(945), 1, aux_sym__literal_repeat1, - ACTIONS(4720), 2, + STATE(1132), 1, + sym_concatenation, + STATE(7199), 1, + sym_subscript, + ACTIONS(410), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4741), 2, + ACTIONS(424), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(933), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2454), 7, - anon_sym_PIPE, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, 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, + STATE(876), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -103706,28 +108146,20 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [33638] = 3, + [33455] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(5105), 1, + sym__special_character, + STATE(951), 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(1300), 42, + ACTIONS(237), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103739,6 +108171,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, @@ -103755,9 +108188,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, @@ -103770,17 +108201,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33694] = 3, + [33515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5107), 1, + aux_sym_concatenation_token1, + ACTIONS(5109), 1, sym__concat, + STATE(949), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1281), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103793,8 +108229,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103808,7 +108243,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, @@ -103823,17 +108257,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33750] = 3, + [33577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5107), 1, + aux_sym_concatenation_token1, + ACTIONS(5111), 1, sym__concat, + STATE(949), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1275), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103846,8 +108285,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103861,7 +108299,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, @@ -103876,202 +108313,93 @@ 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, + [33639] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(77), 1, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5115), 1, + sym__concat, + STATE(975), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, 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(5056), 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, 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, 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, + [33701] = 6, 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(5117), 1, + aux_sym_concatenation_token1, + ACTIONS(5120), 1, + sym__concat, + STATE(949), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, sym_file_descriptor, 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(1261), 40, 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104079,6 +108407,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, @@ -104096,41 +108425,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34096] = 8, + [33763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, - anon_sym_DQUOTE, - ACTIONS(4763), 1, - sym_variable_name, - STATE(2498), 1, - sym_string, - ACTIONS(4761), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(5086), 1, + aux_sym_concatenation_token1, + ACTIONS(5088), 1, + sym__concat, + STATE(1004), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4757), 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1287), 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_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104142,7 +108467,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, @@ -104154,41 +108481,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34162] = 8, + [33825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, - anon_sym_DQUOTE, - ACTIONS(4763), 1, - sym_variable_name, - STATE(2498), 1, - sym_string, - ACTIONS(4761), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(5123), 1, + sym__special_character, + STATE(951), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4757), 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(1370), 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_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104200,7 +108523,8 @@ 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_DOLLAR, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -104212,100 +108536,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, + [33885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, - sym__special_character, - STATE(887), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 5, + ACTIONS(1316), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 41, + ACTIONS(1314), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104316,7 +108557,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, @@ -104334,7 +108574,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 +108589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34398] = 6, + [33941] = 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(1263), 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(1261), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104374,8 +108610,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 +108627,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 +108642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34460] = 6, + [33997] = 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(1368), 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(1366), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104430,8 +108663,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 +108680,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 +108695,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34522] = 21, + [34053] = 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(1304), 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(1302), 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, @@ -104530,69 +108730,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, + [34109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, @@ -104601,69 +108783,51 @@ 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, + [34165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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, @@ -104672,117 +108836,58 @@ 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, + aux_sym_concatenation_token1, 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, - sym_test_operator, - ACTIONS(733), 1, - sym__brace_start, - ACTIONS(1352), 1, - 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, - 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, - 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(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(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, + sym_word, + [34221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, - aux_sym_concatenation_token1, - ACTIONS(4788), 1, - sym__concat, - STATE(968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(4021), 1, + anon_sym_DQUOTE, + ACTIONS(4025), 1, + sym_variable_name, + STATE(1788), 1, + sym_string, + ACTIONS(4023), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, - anon_sym_SEMI, + ACTIONS(4019), 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(1249), 32, anon_sym_PIPE_PIPE, 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, @@ -104791,12 +108896,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, @@ -104808,22 +108912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34970] = 6, + [34287] = 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(4370), 5, + ACTIONS(1308), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 40, + ACTIONS(1306), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104834,6 +108933,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, @@ -104850,6 +108950,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, @@ -104864,37 +108965,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35032] = 6, + [34343] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(910), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, + ACTIONS(4021), 1, + anon_sym_DQUOTE, + ACTIONS(4025), 1, + sym_variable_name, + STATE(1788), 1, + sym_string, + ACTIONS(4023), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 40, - anon_sym_SEMI, + ACTIONS(4019), 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(1237), 32, anon_sym_PIPE_PIPE, 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, @@ -104903,12 +109007,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, @@ -104920,42 +109023,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35094] = 13, + [34409] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4533), 1, - sym_variable_name, - ACTIONS(4792), 1, + ACTIONS(2641), 1, + anon_sym_RPAREN, + ACTIONS(5074), 1, aux_sym_heredoc_redirect_token1, - STATE(6675), 1, + ACTIONS(5130), 1, + sym_variable_name, + STATE(7202), 1, sym_subscript, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4527), 2, + ACTIONS(5126), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(4341), 2, + STATE(4900), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4790), 3, + ACTIONS(5068), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4645), 3, + STATE(5155), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + ACTIONS(4720), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -104983,25 +109086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35170] = 7, + [34485] = 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(1316), 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(1314), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105012,7 +109107,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 +109124,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 +109139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35234] = 6, + [34541] = 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(1263), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 40, + ACTIONS(1261), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105067,8 +109161,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, @@ -105082,6 +109177,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 +109192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35296] = 6, + [34597] = 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(1368), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + ACTIONS(1366), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105123,8 +109214,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, @@ -105138,6 +109230,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 +109245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35358] = 7, + [34653] = 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(1304), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(1302), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105180,8 +109266,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, @@ -105195,6 +109283,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 +109298,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35422] = 13, + [34709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, + ACTIONS(1324), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4616), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(4157), 2, + ACTIONS(1322), 42, + 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_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, - 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, + anon_sym_LT_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, + [34765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4513), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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 +109385,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 +109404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35498] = 6, + [34821] = 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(1332), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 40, + ACTIONS(1330), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105298,6 +109425,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 +109442,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 +109457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35560] = 6, + [34877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - aux_sym_concatenation_token1, - ACTIONS(4667), 1, - sym__concat, - STATE(910), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4305), 5, + ACTIONS(1312), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 40, + ACTIONS(1310), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105354,6 +109478,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, @@ -105370,6 +109495,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, @@ -105384,77 +109510,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35622] = 30, + [34933] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + ACTIONS(705), 1, anon_sym_DOLLAR, - ACTIONS(316), 1, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_test_operator, - ACTIONS(1352), 1, + ACTIONS(733), 1, + sym__brace_start, + ACTIONS(1406), 1, anon_sym_LT_LT_LT, - ACTIONS(1354), 1, + ACTIONS(1408), 1, sym_file_descriptor, - ACTIONS(2530), 1, + ACTIONS(3121), 1, sym_word, - ACTIONS(4671), 1, + ACTIONS(5103), 1, sym_variable_name, - ACTIONS(4799), 1, + ACTIONS(5133), 1, sym__special_character, - STATE(530), 1, + STATE(556), 1, sym_command_name, - STATE(1237), 1, + STATE(1100), 1, aux_sym__literal_repeat1, - STATE(1350), 1, + STATE(1304), 1, sym_concatenation, - STATE(6656), 1, + STATE(7199), 1, sym_subscript, - ACTIONS(332), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(773), 2, + ACTIONS(711), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1350), 2, + ACTIONS(725), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3116), 2, + STATE(3377), 2, sym_variable_assignment, aux_sym_command_repeat1, - STATE(3491), 2, + STATE(3937), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(1346), 3, + ACTIONS(1400), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(1344), 5, + ACTIONS(1398), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(956), 9, + STATE(907), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -105464,31 +109590,45 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [35732] = 9, + [35043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 1, - sym_variable_name, - STATE(6675), 1, - sym_subscript, - ACTIONS(4161), 2, + ACTIONS(1308), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4341), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4268), 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(4153), 17, + ACTIONS(1306), 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, + 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, @@ -105503,18 +109643,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(4157), 19, + [35099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5135), 1, + sym__concat, + STATE(976), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, @@ -105523,23 +109682,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [35800] = 6, + 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, + [35161] = 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(276), 6, + ACTIONS(1360), 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(237), 39, + ACTIONS(1358), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105550,8 +109720,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, @@ -105565,6 +109737,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 +109752,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35862] = 22, - ACTIONS(71), 1, + [35217] = 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(1356), 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(1354), 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_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, - [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, + [35273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5137), 1, + sym__concat, + STATE(976), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, 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(1275), 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(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_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, 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, + [35335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(5139), 1, aux_sym_concatenation_token1, - ACTIONS(4874), 1, + ACTIONS(5142), 1, sym__concat, - STATE(968), 1, + STATE(976), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1263), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105894,8 +109887,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, @@ -105923,45 +109917,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36300] = 13, + [35397] = 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(1320), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4290), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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_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, @@ -105969,9 +109951,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,174 +109970,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36376] = 30, - ACTIONS(71), 1, + [35453] = 3, + ACTIONS(3), 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, + ACTIONS(1332), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(340), 1, + sym__bare_dollar, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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(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_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(4883), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4886), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4889), 1, sym__special_character, - ACTIONS(4892), 1, anon_sym_DQUOTE, - ACTIONS(4898), 1, + sym_raw_string, + sym_ansi_c_string, 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, + sym_word, + [35509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(4097), 1, sym_variable_name, - STATE(2500), 1, + STATE(1967), 1, sym_string, - ACTIONS(1197), 2, - sym__concat, - sym_test_operator, - ACTIONS(4929), 2, + ACTIONS(4095), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4093), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -106162,56 +110048,56 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1249), 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, - [36646] = 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, + 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, + [35575] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(4097), 1, sym_variable_name, - STATE(2500), 1, + STATE(1967), 1, sym_string, - ACTIONS(1191), 2, - sym__concat, - sym_test_operator, - ACTIONS(4929), 2, + ACTIONS(4095), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4093), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -106220,182 +110106,66 @@ 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(1237), 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, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2271), 17, + [35641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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, @@ -106405,68 +110175,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, 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, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3512), 1, + sym__special_character, 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(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, + [35697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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, @@ -106476,17 +110228,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [37006] = 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, + [35753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1336), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1334), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106529,17 +110298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37062] = 3, + [35809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1340), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 41, + ACTIONS(1338), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106550,9 +110319,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, @@ -106581,41 +110351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37117] = 8, + [35865] = 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(1364), 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(1362), 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_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106624,9 +110386,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 +110404,22 @@ 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, + [35921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5113), 1, aux_sym_concatenation_token1, - ACTIONS(4961), 1, + ACTIONS(5115), 1, sym__concat, - STATE(994), 1, + STATE(972), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1271), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106778,8 +110430,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, @@ -106807,17 +110460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37373] = 3, + [35983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(1358), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106829,8 +110482,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 +110513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37428] = 3, + [36039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1356), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 42, + ACTIONS(1354), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106880,7 +110535,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, @@ -106897,6 +110551,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, @@ -106911,27 +110566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37483] = 6, + [36095] = 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(1348), 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(1346), 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, @@ -106941,6 +110592,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, @@ -106952,6 +110604,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,27 +110619,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37544] = 6, + [36151] = 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(1352), 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(1350), 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, @@ -106996,6 +110645,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, @@ -107007,6 +110657,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,27 +110672,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37605] = 6, + [36207] = 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(1348), 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(1346), 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, @@ -107051,6 +110698,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, @@ -107062,6 +110710,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 +110725,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37666] = 6, + [36263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_concatenation_token1, - ACTIONS(4977), 1, - sym__concat, - STATE(990), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1328), 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(1326), 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, @@ -107114,8 +110760,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, @@ -107129,38 +110777,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, - [37727] = 6, + [36319] = 3, 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, + ACTIONS(1344), 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(1342), 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, @@ -107169,8 +110813,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, @@ -107184,38 +110830,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, - [37788] = 6, + [36375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 1, - aux_sym_concatenation_token1, - ACTIONS(4984), 1, - sym__concat, - STATE(990), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1336), 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(1334), 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, @@ -107224,8 +110866,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, @@ -107239,38 +110883,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, - [37849] = 6, + [36431] = 3, 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(1225), 5, + ACTIONS(1340), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1338), 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, @@ -107282,6 +110922,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, @@ -107296,36 +110937,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37910] = 6, + [36487] = 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(1225), 5, + ACTIONS(1364), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1362), 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, @@ -107334,8 +110972,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, @@ -107349,47 +110989,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, - [37971] = 13, + [36543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4997), 1, - sym_variable_name, - 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, + ACTIONS(1348), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4991), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 42, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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(4153), 26, + 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, @@ -107397,9 +111024,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, @@ -107409,26 +111038,22 @@ 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, - [38046] = 6, + [36599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, - aux_sym_concatenation_token1, - ACTIONS(5003), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1352), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1350), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107439,8 +111064,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, @@ -107454,6 +111081,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, @@ -107468,20 +111096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38107] = 5, + [36655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1348), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1346), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107492,7 +111117,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, @@ -107509,7 +111134,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, @@ -107522,17 +111149,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38166] = 3, + [36711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5115), 1, sym__concat, + STATE(972), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5062), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(5060), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107543,9 +111175,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, @@ -107559,7 +111191,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,17 +111205,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38221] = 3, + [36773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5115), 1, sym__concat, + STATE(975), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5066), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, + ACTIONS(5064), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -107595,9 +111231,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, @@ -107611,7 +111247,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, @@ -107626,324 +111261,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38276] = 22, - ACTIONS(71), 1, + [36835] = 10, + ACTIONS(3), 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, - anon_sym_DOLLAR, - ACTIONS(5017), 1, - sym__special_character, - ACTIONS(5019), 1, - anon_sym_DQUOTE, - ACTIONS(5023), 1, - aux_sym_number_token1, - ACTIONS(5025), 1, - aux_sym_number_token2, - ACTIONS(5027), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, - anon_sym_BQUOTE, - ACTIONS(5033), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, + ACTIONS(4828), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5130), 1, + sym_variable_name, + STATE(7202), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4900), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(5039), 1, sym__brace_start, - STATE(3136), 1, - aux_sym__literal_repeat1, - ACTIONS(5021), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1000), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2156), 7, - anon_sym_PIPE, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4720), 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(2655), 9, - 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), 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, - [38369] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5009), 1, - sym_word, - ACTIONS(5011), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, sym__special_character, - ACTIONS(5019), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5025), 1, aux_sym_number_token2, - ACTIONS(5027), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, anon_sym_BQUOTE, - ACTIONS(5033), 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, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1000), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2160), 7, + sym_word, + [36905] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5149), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2655), 9, - 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), 10, - sym_file_descriptor, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, + 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, - [38462] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5041), 1, - sym_word, - ACTIONS(5044), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5047), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5050), 1, anon_sym_DOLLAR, - ACTIONS(5053), 1, sym__special_character, - ACTIONS(5056), 1, anon_sym_DQUOTE, - ACTIONS(5062), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5065), 1, aux_sym_number_token2, - ACTIONS(5068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5071), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5074), 1, anon_sym_BQUOTE, - ACTIONS(5077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5083), 1, - sym_test_operator, - ACTIONS(5086), 1, - sym__brace_start, - STATE(3136), 1, - aux_sym__literal_repeat1, - ACTIONS(5059), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1000), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, + sym_word, + [36981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 1, + aux_sym_concatenation_token1, + ACTIONS(5156), 1, + sym__concat, + STATE(1052), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 6, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2655), 9, - 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), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, 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, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38555] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5089), 1, - sym_word, - ACTIONS(5091), 1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, sym__special_character, - ACTIONS(5099), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5105), 1, aux_sym_number_token2, - ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5117), 1, - sym_test_operator, - ACTIONS(5119), 1, - sym__brace_start, - STATE(5261), 1, - aux_sym__literal_repeat1, - STATE(5482), 1, - sym_concatenation, - ACTIONS(5101), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2271), 7, + sym_word, + [37043] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5158), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5141), 9, - 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), 11, - sym_file_descriptor, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [38648] = 8, - 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(1197), 3, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 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(1195), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -107951,11 +111486,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, - 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, @@ -107967,56 +111503,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38713] = 22, + [37119] = 30, ACTIONS(71), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(312), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, - sym__special_character, - ACTIONS(5099), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(338), 1, + sym_test_operator, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(5121), 1, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2990), 1, sym_word, - ACTIONS(5125), 1, - sym_test_operator, - STATE(5279), 1, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5160), 1, + sym__special_character, + STATE(577), 1, + sym_command_name, + STATE(1422), 1, aux_sym__literal_repeat1, - STATE(5506), 1, + STATE(1614), 1, sym_concatenation, - ACTIONS(5115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5123), 2, + STATE(7199), 1, + sym_subscript, + ACTIONS(318), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2275), 7, - anon_sym_PIPE, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5148), 9, + STATE(1236), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -108026,52 +111583,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2277), 11, + [37229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5115), 1, + sym__concat, + STATE(972), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5078), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5076), 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, + anon_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, - [38806] = 8, + 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, + [37291] = 6, 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, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5115), 1, + sym__concat, + STATE(975), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4855), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(4853), 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, @@ -108080,10 +111678,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, @@ -108095,20 +111695,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38871] = 5, + [37353] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5127), 1, + ACTIONS(5090), 1, + sym_variable_name, + ACTIONS(5162), 1, + ts_builtin_sym_end, + ACTIONS(5168), 1, + aux_sym_heredoc_redirect_token1, + STATE(7198), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4865), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5164), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, sym__special_character, - STATE(1005), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 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, + sym_word, + [37429] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5107), 1, + aux_sym_concatenation_token1, + ACTIONS(5170), 1, + sym__concat, + STATE(946), 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(1316), 40, + ACTIONS(237), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108121,8 +111786,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108137,6 +111801,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, @@ -108149,23 +111814,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38930] = 8, + [37491] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(5174), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(5178), 1, sym_variable_name, - STATE(1710), 1, + STATE(2893), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(5176), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(5172), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -108174,7 +111839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 31, + ACTIONS(1249), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108183,6 +111848,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, @@ -108191,7 +111857,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, @@ -108206,23 +111872,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38995] = 8, + [37557] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(5174), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(5178), 1, sym_variable_name, - STATE(1710), 1, + STATE(2893), 1, sym_string, - ACTIONS(3984), 2, + ACTIONS(5176), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3982), 8, + ACTIONS(5172), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -108231,7 +111897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 31, + ACTIONS(1237), 32, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -108240,6 +111906,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, @@ -108248,7 +111915,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, @@ -108263,36 +111930,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39060] = 6, + [37623] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(5182), 1, sym__concat, - STATE(985), 1, + STATE(1021), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1273), 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(1271), 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 +111986,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39121] = 6, + [37685] = 13, 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(4439), 5, - sym_file_descriptor, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, sym_variable_name, + ACTIONS(5184), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(5145), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -108355,7 +112032,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, @@ -108373,17 +112049,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39182] = 3, + [37761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5107), 1, + aux_sym_concatenation_token1, + ACTIONS(5170), 1, sym__concat, + STATE(947), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 41, + ACTIONS(1287), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108394,9 +112075,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108410,7 +112091,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, @@ -108425,17 +112105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39237] = 3, + [37823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(5107), 1, + aux_sym_concatenation_token1, + ACTIONS(5170), 1, sym__concat, + ACTIONS(5186), 1, + anon_sym_LPAREN, + STATE(947), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 41, + ACTIONS(1287), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108447,8 +112134,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108462,7 +112148,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, @@ -108477,32 +112162,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39292] = 3, + [37887] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5189), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 41, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -108510,11 +112208,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, @@ -108529,32 +112225,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39347] = 3, - ACTIONS(3), 1, + [37963] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(819), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(821), 1, + anon_sym_DOLLAR, + ACTIONS(825), 1, + anon_sym_DQUOTE, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(835), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(837), 1, + anon_sym_BQUOTE, + ACTIONS(839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(847), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(849), 1, sym__brace_start, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(3170), 1, + sym_word, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5191), 1, + sym__special_character, + STATE(566), 1, + sym_command_name, + STATE(1292), 1, + aux_sym__literal_repeat1, + STATE(1617), 1, + sym_concatenation, + STATE(7199), 1, + sym_subscript, + ACTIONS(827), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(841), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + 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, + [38073] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, - anon_sym_SEMI, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5193), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -108562,11 +112351,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, @@ -108581,32 +112368,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39402] = 3, + [38149] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5195), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -108614,11 +112414,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, @@ -108633,36 +112431,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39457] = 6, + [38225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(5197), 1, sym__concat, - STATE(986), 1, + STATE(1042), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + ACTIONS(1283), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 39, + ACTIONS(1281), 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, @@ -108688,44 +112487,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39518] = 6, + [38287] = 9, 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(4309), 5, - sym_file_descriptor, + ACTIONS(5130), 1, sym_variable_name, + STATE(7202), 1, + sym_subscript, + ACTIONS(4732), 2, sym_test_operator, sym__brace_start, + ACTIONS(4820), 2, + sym_file_descriptor, 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_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, + STATE(4900), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 17, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -108743,32 +112525,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39579] = 3, - ACTIONS(3), 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), 41, + ACTIONS(4726), 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_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, @@ -108777,10 +112546,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [38355] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5199), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108795,32 +112609,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39634] = 3, + [38431] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5201), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 41, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -108828,11 +112655,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, @@ -108847,36 +112672,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39689] = 6, + [38507] = 13, 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(4313), 5, - sym_file_descriptor, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, sym_variable_name, + ACTIONS(5203), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(5145), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -108884,7 +112718,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, @@ -108902,36 +112735,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39750] = 6, + [38583] = 13, 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(5132), 5, - sym_file_descriptor, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, sym_variable_name, + ACTIONS(5205), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 39, + ACTIONS(5145), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -108939,7 +112781,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, @@ -108957,36 +112798,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39811] = 6, + [38659] = 13, 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(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, sym_variable_name, + ACTIONS(5207), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 39, + ACTIONS(5145), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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 +112844,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,40 +112861,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39872] = 8, + [38735] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(2639), 1, + ts_builtin_sym_end, + ACTIONS(5090), 1, sym_variable_name, - STATE(1912), 1, - sym_string, - ACTIONS(3978), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, + ACTIONS(5211), 1, + aux_sym_heredoc_redirect_token1, + STATE(7198), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4865), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 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, + ACTIONS(5209), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -109053,11 +112907,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, - 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, @@ -109069,40 +112924,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39937] = 8, + [38811] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, sym_variable_name, - STATE(1912), 1, - sym_string, - ACTIONS(3978), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(5213), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3976), 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(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -109110,11 +112970,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, - 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, @@ -109126,32 +112987,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40002] = 3, + [38887] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5215), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -109159,11 +113033,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, @@ -109178,32 +113050,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40057] = 3, + [38963] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, - anon_sym_SEMI, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5217), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -109211,11 +113096,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, @@ -109230,36 +113113,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40112] = 6, + [39039] = 13, 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(4519), 5, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5219), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109267,7 +113159,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, @@ -109285,20 +113176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40173] = 5, + [39115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5221), 1, + sym__concat, + STATE(1042), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 40, + ACTIONS(1275), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109309,10 +113202,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, @@ -109327,6 +113219,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,36 +113232,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40232] = 6, + [39177] = 13, 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(4305), 5, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5223), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 39, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109376,7 +113278,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, @@ -109394,36 +113295,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40293] = 5, + [39253] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5225), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 40, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -109431,11 +113341,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, @@ -109448,84 +113358,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40352] = 3, - ACTIONS(3), 1, + [39329] = 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, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(77), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(79), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(3042), 1, + sym_word, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5227), 1, + sym__special_character, + STATE(562), 1, + sym_command_name, + STATE(1321), 1, + aux_sym__literal_repeat1, + STATE(1602), 1, + sym_concatenation, + STATE(7199), 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(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, 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, + STATE(950), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39439] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4325), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4329), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4339), 1, anon_sym_BQUOTE, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(5231), 1, + sym__special_character, + ACTIONS(5233), 1, + sym_test_operator, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1039), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5229), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [40407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, - anon_sym_SEMI, + STATE(2875), 9, + 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(2176), 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_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, @@ -109534,55 +113509,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_LT_LT_LT, + [39531] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4323), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4325), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4329), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4335), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4339), 1, anon_sym_BQUOTE, + ACTIONS(4341), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(5231), 1, + sym__special_character, + ACTIONS(5233), 1, + sym_test_operator, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4343), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1039), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5229), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [40462] = 7, - 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, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, - anon_sym_SEMI, + STATE(2875), 9, + 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(2180), 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_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109591,49 +113580,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_LT_LT_LT, + [39623] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4432), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4435), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4441), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4444), 1, aux_sym_number_token1, + ACTIONS(4447), 1, aux_sym_number_token2, + ACTIONS(4450), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4453), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4456), 1, anon_sym_BQUOTE, + ACTIONS(4459), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4468), 1, + sym__brace_start, + ACTIONS(5238), 1, + sym__special_character, + ACTIONS(5241), 1, + sym_test_operator, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(2189), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4462), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1039), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5235), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [40525] = 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), 41, - anon_sym_SEMI, + STATE(2875), 9, + 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(2187), 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_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, @@ -109642,87 +113651,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [39715] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5244), 1, + sym_word, + ACTIONS(5246), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5248), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5250), 1, anon_sym_DOLLAR, + ACTIONS(5252), 1, sym__special_character, + ACTIONS(5254), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5258), 1, aux_sym_number_token1, + ACTIONS(5260), 1, aux_sym_number_token2, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5264), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5266), 1, anon_sym_BQUOTE, + ACTIONS(5268), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [40580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5272), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5274), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3364), 1, + aux_sym__literal_repeat1, + ACTIONS(5256), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5270), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1048), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2176), 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(2780), 9, + 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(2178), 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, + [39809] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5244), 1, + sym_word, + ACTIONS(5246), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5248), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5250), 1, anon_sym_DOLLAR, + ACTIONS(5252), 1, sym__special_character, + ACTIONS(5254), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5258), 1, aux_sym_number_token1, + ACTIONS(5260), 1, aux_sym_number_token2, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5264), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5266), 1, anon_sym_BQUOTE, + ACTIONS(5268), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5272), 1, + sym_test_operator, + ACTIONS(5274), 1, + sym__brace_start, + STATE(3364), 1, + aux_sym__literal_repeat1, + ACTIONS(5256), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5270), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [40635] = 3, + STATE(1048), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2180), 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(2780), 9, + 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(2182), 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, + [39903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5276), 1, + aux_sym_concatenation_token1, + ACTIONS(5279), 1, sym__concat, + STATE(1042), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109733,9 +113821,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, @@ -109749,7 +113837,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, @@ -109764,173 +113851,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40690] = 3, + [39965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5284), 1, + anon_sym_DQUOTE, + ACTIONS(5288), 1, + sym_variable_name, + STATE(2777), 1, + sym_string, + ACTIONS(1251), 2, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, - anon_sym_SEMI, + ACTIONS(5286), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5282), 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(1249), 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [40745] = 3, + [40031] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5284), 1, + anon_sym_DQUOTE, + ACTIONS(5288), 1, + sym_variable_name, + STATE(2777), 1, + sym_string, + ACTIONS(1245), 2, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 41, - anon_sym_SEMI, + ACTIONS(5286), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5282), 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(1237), 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, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, + [40097] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5290), 1, + sym_word, + ACTIONS(5292), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5294), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5296), 1, anon_sym_DOLLAR, + ACTIONS(5298), 1, sym__special_character, + ACTIONS(5300), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5304), 1, aux_sym_number_token1, + ACTIONS(5306), 1, aux_sym_number_token2, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5310), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5312), 1, anon_sym_BQUOTE, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [40800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5318), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5320), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5697), 1, + aux_sym__literal_repeat1, + STATE(5937), 1, + sym_concatenation, + ACTIONS(5302), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5316), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2643), 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(5533), 9, + 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(2645), 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, + [40191] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5292), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5294), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5296), 1, anon_sym_DOLLAR, + ACTIONS(5298), 1, sym__special_character, + ACTIONS(5300), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5304), 1, aux_sym_number_token1, + ACTIONS(5306), 1, aux_sym_number_token2, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5310), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5312), 1, anon_sym_BQUOTE, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5320), 1, + sym__brace_start, + ACTIONS(5322), 1, + sym_word, + ACTIONS(5326), 1, + sym_test_operator, + STATE(5704), 1, + aux_sym__literal_repeat1, + STATE(5948), 1, + sym_concatenation, + ACTIONS(5316), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [40855] = 3, + ACTIONS(5324), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2548), 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(5542), 9, + 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(2550), 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, + [40285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5086), 1, + aux_sym_concatenation_token1, + ACTIONS(5088), 1, sym__concat, + STATE(1053), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 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(1271), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109941,9 +114138,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, @@ -109957,7 +114153,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,32 +114167,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40910] = 3, + [40347] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5328), 1, + sym_word, + ACTIONS(5331), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5334), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5337), 1, + anon_sym_DOLLAR, + ACTIONS(5340), 1, + sym__special_character, + ACTIONS(5343), 1, + anon_sym_DQUOTE, + ACTIONS(5349), 1, + aux_sym_number_token1, + ACTIONS(5352), 1, + aux_sym_number_token2, + ACTIONS(5355), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5361), 1, + anon_sym_BQUOTE, + ACTIONS(5364), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5370), 1, + sym_test_operator, + ACTIONS(5373), 1, + sym__brace_start, + STATE(3364), 1, + aux_sym__literal_repeat1, + ACTIONS(5346), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5367), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1048), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 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(2780), 9, + 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(2189), 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, + [40441] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(4828), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_LT_LT_DASH, + ACTIONS(4720), 27, 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, @@ -110005,11 +114282,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, @@ -110024,36 +114299,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40965] = 3, - ACTIONS(3), 1, + [40511] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 6, + STATE(3102), 1, + aux_sym__literal_repeat1, + STATE(3307), 1, + sym_concatenation, + STATE(2743), 9, + 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(2643), 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(2645), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, 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_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, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -110061,51 +114346,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, - [41020] = 3, - ACTIONS(3), 1, + [40573] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 7, + STATE(3107), 1, + aux_sym__literal_repeat1, + STATE(3355), 1, + sym_concatenation, + STATE(2759), 9, + 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(2548), 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(2550), 25, 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(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_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, @@ -110113,33 +114402,32 @@ 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, - [41075] = 3, + [40635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, - sym_file_descriptor, + ACTIONS(5376), 1, + aux_sym_concatenation_token1, + ACTIONS(5379), 1, sym__concat, + STATE(1052), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1261), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110165,7 +114453,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, @@ -110180,18 +114467,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41130] = 3, + [40697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, + ACTIONS(5086), 1, + aux_sym_concatenation_token1, + ACTIONS(5382), 1, sym__concat, + STATE(1052), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1281), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110217,7 +114509,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, @@ -110232,240 +114523,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41185] = 9, + [40759] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5149), 1, + ACTIONS(5384), 1, + sym_word, + ACTIONS(5386), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5388), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5390), 1, + anon_sym_DOLLAR, + ACTIONS(5392), 1, + sym__special_character, + ACTIONS(5394), 1, anon_sym_DQUOTE, - ACTIONS(5151), 1, + ACTIONS(5398), 1, + aux_sym_number_token1, + ACTIONS(5400), 1, + aux_sym_number_token2, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5153), 1, + ACTIONS(5404), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5155), 1, + ACTIONS(5406), 1, anon_sym_BQUOTE, - ACTIONS(5157), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2337), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5145), 14, - anon_sym_EQ, + ACTIONS(5412), 1, + sym_test_operator, + ACTIONS(5414), 1, + sym__brace_start, + STATE(3177), 1, + aux_sym__literal_repeat1, + ACTIONS(5396), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5410), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1056), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2176), 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_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, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2854), 9, + 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(2178), 11, 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, - anon_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, + [40853] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5384), 1, + sym_word, + ACTIONS(5386), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5388), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5390), 1, anon_sym_DOLLAR, + ACTIONS(5392), 1, sym__special_character, + ACTIONS(5394), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5398), 1, aux_sym_number_token1, + ACTIONS(5400), 1, aux_sym_number_token2, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5404), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5406), 1, anon_sym_BQUOTE, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5412), 1, + sym_test_operator, + ACTIONS(5414), 1, + sym__brace_start, + STATE(3177), 1, + aux_sym__literal_repeat1, + ACTIONS(5396), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5410), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [41307] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(4157), 2, + STATE(1056), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2180), 7, 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(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, 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, + STATE(2854), 9, + 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(2182), 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, + [40947] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5416), 1, + sym_word, + ACTIONS(5419), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5422), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5425), 1, anon_sym_DOLLAR, + ACTIONS(5428), 1, sym__special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5437), 1, aux_sym_number_token1, + ACTIONS(5440), 1, aux_sym_number_token2, + ACTIONS(5443), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5446), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5449), 1, anon_sym_BQUOTE, + ACTIONS(5452), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [41380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, - sym__concat, + ACTIONS(5458), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5461), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3177), 1, + aux_sym__literal_repeat1, + ACTIONS(5434), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5455), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1056), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 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(2854), 9, + 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(2189), 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, + [41041] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5464), 1, + sym_word, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5468), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5470), 1, anon_sym_DOLLAR, + ACTIONS(5472), 1, sym__special_character, + ACTIONS(5474), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5478), 1, aux_sym_number_token1, + ACTIONS(5480), 1, aux_sym_number_token2, + ACTIONS(5482), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5484), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5486), 1, anon_sym_BQUOTE, + ACTIONS(5488), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5492), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5494), 1, + sym_test_operator, + ACTIONS(5496), 1, + sym__brace_start, + STATE(3189), 1, + aux_sym__literal_repeat1, + ACTIONS(5476), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5490), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [41435] = 3, + STATE(1062), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2653), 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(2895), 9, + 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(2655), 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, + [41137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5182), 1, sym__concat, + STATE(1021), 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(1308), 41, + ACTIONS(237), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110492,7 +114854,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, @@ -110507,44 +114868,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41490] = 3, - ACTIONS(3), 1, + [41199] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 7, - sym_file_descriptor, - sym__concat, + ACTIONS(1093), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1095), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1097), 1, + anon_sym_DOLLAR, + ACTIONS(1101), 1, + anon_sym_DQUOTE, + ACTIONS(1105), 1, + aux_sym_number_token1, + ACTIONS(1107), 1, + aux_sym_number_token2, + ACTIONS(1109), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1113), 1, + anon_sym_BQUOTE, + ACTIONS(1115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1121), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(1123), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2774), 1, + sym_word, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5498), 1, + sym__special_character, + STATE(662), 1, + sym_command_name, + STATE(2584), 1, + aux_sym__literal_repeat1, + STATE(2660), 1, + sym_concatenation, + STATE(7199), 1, + sym_subscript, + ACTIONS(1103), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, 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, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + STATE(2137), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41309] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 1, + sym_variable_name, + STATE(7206), 1, + sym_subscript, + ACTIONS(4732), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4820), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -110559,32 +114986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41545] = 3, - ACTIONS(3), 1, - sym_comment, - 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(1300), 40, + ACTIONS(4726), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110593,50 +115007,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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [41600] = 3, + [41377] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5153), 1, + sym_variable_name, + ACTIONS(5500), 1, + anon_sym_RBRACE, + STATE(7206), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4964), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 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(1312), 40, + ACTIONS(5145), 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(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -110644,11 +115053,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, @@ -110663,23 +115070,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41655] = 6, + [41453] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5464), 1, + sym_word, + ACTIONS(5466), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5468), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5470), 1, + anon_sym_DOLLAR, + ACTIONS(5472), 1, + sym__special_character, + ACTIONS(5474), 1, + anon_sym_DQUOTE, + ACTIONS(5478), 1, + aux_sym_number_token1, + ACTIONS(5480), 1, + aux_sym_number_token2, + ACTIONS(5482), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5484), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5486), 1, + anon_sym_BQUOTE, + ACTIONS(5488), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5494), 1, + sym_test_operator, + ACTIONS(5496), 1, + sym__brace_start, + ACTIONS(5502), 1, + aux_sym__simple_variable_name_token1, + STATE(3189), 1, + aux_sym__literal_repeat1, + ACTIONS(5476), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5490), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1067), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2554), 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(2895), 9, + 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(2556), 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, + [41549] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5086), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5088), 1, sym__concat, - STATE(1114), 1, + ACTIONS(5504), 1, + anon_sym_LPAREN, + STATE(1004), 1, aux_sym_concatenation_repeat1, - ACTIONS(4519), 6, + ACTIONS(1294), 6, 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(1287), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110718,17 +115200,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41716] = 3, + [41613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5182), 1, sym__concat, + STATE(1033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(1287), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110755,7 +115242,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 +115256,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41771] = 6, + [41675] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(1299), 1, + anon_sym_LPAREN, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5182), 1, sym__concat, - STATE(1115), 1, + STATE(1033), 1, aux_sym_concatenation_repeat1, - ACTIONS(4305), 6, + ACTIONS(1294), 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(1287), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -110797,6 +115284,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,33 +115313,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41832] = 3, + [41739] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(4816), 1, + anon_sym_RPAREN, + ACTIONS(5084), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5130), 1, + sym_variable_name, + STATE(7202), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5126), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4900), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 42, + ACTIONS(5082), 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(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -110859,7 +115359,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, @@ -110877,214 +115376,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41887] = 8, - ACTIONS(3), 1, + [41815] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(5507), 1, + sym_word, + ACTIONS(5510), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5513), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5516), 1, + anon_sym_DOLLAR, + ACTIONS(5519), 1, + sym__special_character, + ACTIONS(5522), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, - sym_variable_name, - STATE(2581), 1, - sym_string, - ACTIONS(5176), 2, + ACTIONS(5528), 1, + aux_sym_number_token1, + ACTIONS(5531), 1, + aux_sym_number_token2, + ACTIONS(5534), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5537), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5540), 1, + anon_sym_BQUOTE, + ACTIONS(5543), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5549), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1197), 3, - sym_file_descriptor, + ACTIONS(5552), 1, sym_test_operator, + ACTIONS(5555), 1, 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(1195), 31, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3189), 1, + aux_sym__literal_repeat1, + ACTIONS(5525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5546), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1067), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2668), 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(2895), 9, + 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(2670), 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, + [41911] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + 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(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2990), 1, + sym_word, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5160), 1, + sym__special_character, + STATE(574), 1, + sym_command_name, + STATE(1422), 1, + aux_sym__literal_repeat1, + STATE(1614), 1, + sym_concatenation, + STATE(7199), 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, - [41952] = 8, - ACTIONS(3), 1, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1236), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [42021] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(5174), 1, + 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(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, - sym_file_descriptor, - sym_test_operator, + 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(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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(771), 1, + sym_test_operator, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(2778), 1, + sym_word, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5558), 1, + sym__special_character, + STATE(565), 1, + sym_command_name, + STATE(1422), 1, + aux_sym__literal_repeat1, + STATE(1614), 1, + sym_concatenation, + STATE(7199), 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(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 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, + STATE(1064), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [42131] = 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(1077), 1, + sym_test_operator, + ACTIONS(1406), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + sym_file_descriptor, + ACTIONS(3119), 1, + sym_word, + ACTIONS(5103), 1, + sym_variable_name, + ACTIONS(5560), 1, sym__special_character, + STATE(644), 1, + sym_command_name, + STATE(1422), 1, + aux_sym__literal_repeat1, + STATE(1614), 1, + sym_concatenation, + STATE(7199), 1, + sym_subscript, + ACTIONS(332), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1071), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1404), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1400), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1398), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1906), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [42241] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(4202), 1, aux_sym_number_token1, + ACTIONS(4204), 1, aux_sym_number_token2, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4210), 1, anon_sym_BQUOTE, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(5564), 1, + sym__special_character, + ACTIONS(5566), 1, + sym_test_operator, + STATE(4704), 1, + aux_sym__literal_repeat1, + STATE(4812), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5562), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [42017] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_test_operator, - ACTIONS(4927), 1, - anon_sym_DQUOTE, - ACTIONS(4931), 1, - sym_variable_name, - STATE(2500), 1, + STATE(5612), 9, + sym_arithmetic_expansion, + sym_brace_expression, 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_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2643), 17, 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_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_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111092,115 +115758,110 @@ 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, + [42333] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4194), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4196), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4200), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4202), 1, aux_sym_number_token1, + ACTIONS(4204), 1, aux_sym_number_token2, + ACTIONS(4206), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4210), 1, anon_sym_BQUOTE, + ACTIONS(4212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(5564), 1, + sym__special_character, + ACTIONS(5570), 1, + sym_test_operator, + STATE(4706), 1, + aux_sym__literal_repeat1, + STATE(4819), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5568), 3, + sym_raw_string, + sym_ansi_c_string, 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, + STATE(5614), 9, + sym_arithmetic_expansion, + sym_brace_expression, 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, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2548), 17, 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, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [42425] = 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(5107), 1, + aux_sym_concatenation_token1, + ACTIONS(5170), 1, + sym__concat, + STATE(946), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, sym_file_descriptor, 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(1195), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111209,9 +115870,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 +115887,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42285] = 6, + [42487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(5113), 1, aux_sym_concatenation_token1, - ACTIONS(4989), 1, + ACTIONS(5115), 1, sym__concat, - STATE(988), 1, + STATE(972), 1, aux_sym_concatenation_repeat1, - ACTIONS(5186), 5, + ACTIONS(4943), 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(4941), 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, @@ -111261,6 +115926,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 +115942,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, - [42346] = 6, + [42549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(5113), 1, aux_sym_concatenation_token1, - ACTIONS(4989), 1, + ACTIONS(5115), 1, sym__concat, - STATE(989), 1, + STATE(975), 1, aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + ACTIONS(4947), 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(4945), 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, @@ -111316,6 +115982,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 +115998,43 @@ static const uint16_t 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, + [42611] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 1, + ACTIONS(5090), 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, + STATE(7198), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4865), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 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(1183), 31, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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(4720), 27, 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, @@ -111374,11 +116042,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, @@ -111390,17 +116059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42472] = 3, + [42681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5113), 1, + aux_sym_concatenation_token1, + ACTIONS(5115), 1, sym__concat, + STATE(972), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(5052), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111411,9 +116085,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, @@ -111427,7 +116101,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,32 +116115,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42527] = 3, + [42743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, sym__concat, + STATE(1096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 41, + ACTIONS(2176), 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, @@ -111479,7 +116156,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, @@ -111494,17 +116170,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42582] = 3, + [42804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1182), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5078), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 41, + ACTIONS(5076), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111515,7 +116196,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, @@ -111531,7 +116211,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,17 +116225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42637] = 3, + [42865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1320), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 41, + ACTIONS(1318), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111568,8 +116247,8 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111598,17 +116277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42692] = 3, + [42920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1184), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4855), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(4853), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111619,7 +116303,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, @@ -111635,7 +116318,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, @@ -111650,20 +116332,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42747] = 5, + [42981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(1316), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 40, + ACTIONS(1314), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111674,10 +116353,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111691,7 +116369,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, @@ -111704,10 +116384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42806] = 3, + [43036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1332), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -111715,7 +116395,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1330), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111756,18 +116436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42861] = 3, + [43091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(5580), 1, + sym__special_character, + STATE(1084), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1256), 40, + ACTIONS(1370), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111778,8 +116460,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, @@ -111793,9 +116477,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, @@ -111808,81 +116490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42916] = 10, + [43150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4997), 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, + ACTIONS(1344), 7, 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, - 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_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, - [42985] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(5200), 1, sym__concat, - STATE(895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, - 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(1342), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111908,6 +116527,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, @@ -111922,36 +116542,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43046] = 6, + [43205] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, - aux_sym_concatenation_token1, - ACTIONS(5202), 1, - sym__concat, - STATE(895), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(5587), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5589), 1, + sym_variable_name, + STATE(7203), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5174), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(5583), 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(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 27, 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, @@ -111959,7 +116586,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, @@ -111977,17 +116603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43107] = 3, + [43278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1336), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 41, + ACTIONS(1334), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -111999,8 +116625,8 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112029,17 +116655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43162] = 3, + [43333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1263), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1261), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112051,8 +116677,8 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112081,17 +116707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43217] = 3, + [43388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1340), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1338), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112103,8 +116729,8 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112133,17 +116759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43272] = 3, + [43443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1346), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112155,8 +116781,8 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112185,17 +116811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43327] = 3, + [43498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1352), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1350), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112207,8 +116833,8 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112237,18 +116863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43382] = 3, + [43553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1348), 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), 40, + ACTIONS(1346), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112261,6 +116886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112289,26 +116915,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43437] = 5, + [43608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - sym__special_character, - STATE(995), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(5596), 1, + aux_sym_concatenation_token1, + ACTIONS(5598), 1, + sym__concat, + STATE(1107), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5594), 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(5592), 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,57 +116945,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, - anon_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, - [43496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 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, @@ -112377,10 +116953,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, @@ -112394,33 +116968,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, - [43551] = 3, + [43669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, - sym_file_descriptor, + ACTIONS(5596), 1, + aux_sym_concatenation_token1, + ACTIONS(5598), 1, sym__concat, + STATE(1108), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5602), 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(1276), 40, + ACTIONS(5600), 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, @@ -112429,10 +117008,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, @@ -112446,33 +117023,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, - [43606] = 3, + [43730] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, - sym_file_descriptor, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5604), 1, sym__concat, + STATE(1099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 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(1281), 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, @@ -112484,7 +117066,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, @@ -112499,32 +117080,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43661] = 3, + [43791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, - sym_file_descriptor, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5606), 1, sym__concat, + STATE(1099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 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(1252), 40, + ACTIONS(1275), 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, @@ -112536,7 +117121,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,10 +117135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43716] = 3, + [43852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1324), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -112562,7 +117146,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1322), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112603,72 +117187,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43771] = 5, + [43907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - sym__special_character, - STATE(1005), 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(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_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, - 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, - [43830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 7, + ACTIONS(1364), 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), 40, + ACTIONS(1362), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112681,6 +117210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112709,32 +117239,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43885] = 3, + [43962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, - sym_file_descriptor, + ACTIONS(5608), 1, + aux_sym_concatenation_token1, + ACTIONS(5611), 1, sym__concat, + STATE(1099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 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(1292), 40, + ACTIONS(1261), 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, @@ -112746,7 +117280,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, @@ -112761,76 +117294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43940] = 9, + [44023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 1, - sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(4161), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4268), 2, - sym_file_descriptor, - 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, + ACTIONS(5614), 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_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_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, - [44007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 7, + STATE(1119), 1, + aux_sym__literal_repeat1, + ACTIONS(276), 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(1272), 40, + ACTIONS(237), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112843,6 +117320,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, @@ -112856,9 +117335,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, @@ -112871,36 +117348,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44062] = 6, + [44082] = 8, 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(5618), 1, + anon_sym_DQUOTE, + ACTIONS(5622), 1, + sym_variable_name, + STATE(2927), 1, + sym_string, + ACTIONS(5620), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, - anon_sym_SEMI, + ACTIONS(5616), 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(1249), 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, @@ -112912,9 +117393,7 @@ 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, @@ -112926,36 +117405,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44123] = 6, + [44147] = 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(5618), 1, + anon_sym_DQUOTE, + ACTIONS(5622), 1, + sym_variable_name, + STATE(2927), 1, + sym_string, + ACTIONS(5620), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 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(5616), 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(1237), 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, @@ -112967,9 +117450,7 @@ 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, @@ -112981,36 +117462,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44184] = 6, + [44212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(5624), 1, aux_sym_concatenation_token1, - ACTIONS(4987), 1, + ACTIONS(5626), 1, sym__concat, - STATE(986), 1, + STATE(1152), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(5062), 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(2160), 39, + ACTIONS(5060), 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, @@ -113036,40 +117517,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44245] = 12, + [44273] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - sym_variable_name, - ACTIONS(5208), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - STATE(6701), 1, + ACTIONS(5589), 1, + sym_variable_name, + STATE(7203), 1, sym_subscript, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(4605), 2, + STATE(5174), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5206), 3, + ACTIONS(5145), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4731), 3, + STATE(5376), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4153), 27, + ACTIONS(4720), 27, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -113097,45 +117578,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44318] = 13, + [44346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(4997), 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, + ACTIONS(1312), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5210), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 41, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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(4153), 26, + 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113143,9 +117611,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, @@ -113155,40 +117625,99 @@ 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, - [44393] = 6, + [44401] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5628), 1, + sym_variable_name, + STATE(7210), 1, + sym_subscript, + ACTIONS(4732), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4820), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4975), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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(4726), 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, + [44468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5596), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5631), 1, sym__concat, - STATE(1114), 1, + STATE(1117), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 6, + ACTIONS(1283), 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), 38, + ACTIONS(1281), 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, @@ -113197,7 +117726,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, @@ -113213,37 +117741,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, - [44454] = 6, + [44529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5596), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5633), 1, sym__concat, - STATE(1115), 1, + STATE(1117), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 6, + ACTIONS(1277), 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), 38, + ACTIONS(1275), 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, @@ -113252,7 +117781,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, @@ -113268,24 +117796,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, - [44515] = 6, + [44590] = 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(4309), 6, + ACTIONS(1273), 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(1271), 42, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113296,7 +117818,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, @@ -113324,23 +117850,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44576] = 6, + [44645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5624), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5626), 1, sym__concat, - STATE(1115), 1, + STATE(1156), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 6, + ACTIONS(5066), 6, 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(5064), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113379,150 +117905,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44637] = 8, + [44706] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1197), 1, - sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4816), 1, + anon_sym_BQUOTE, + ACTIONS(5628), 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, + ACTIONS(5639), 1, + aux_sym_heredoc_redirect_token1, + STATE(7210), 1, + sym_subscript, + ACTIONS(4726), 2, 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_PIPE_AMP, + ACTIONS(5128), 2, 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, - [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_LT_LT_DASH, + ACTIONS(5637), 2, 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, - [44767] = 6, - 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(4282), 5, + STATE(4975), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 39, + ACTIONS(5635), 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(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 26, 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, @@ -113530,7 +117951,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, @@ -113543,27 +117963,21 @@ 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, - [44828] = 6, + [44781] = 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(1368), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1366), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113574,8 +117988,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_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -113589,6 +118004,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,22 +118019,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44889] = 6, + [44836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5624), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5626), 1, sym__concat, - STATE(1120), 1, + STATE(1152), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(4943), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, + ACTIONS(4941), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113629,7 +118046,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, @@ -113658,22 +118074,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44950] = 6, + [44897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5624), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5626), 1, sym__concat, - STATE(982), 1, + STATE(1156), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 5, + ACTIONS(4947), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(4945), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113684,7 +118101,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, @@ -113713,18 +118129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45011] = 3, + [44958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1316), 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(1284), 40, + ACTIONS(1314), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113735,8 +118150,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, @@ -113765,18 +118181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45066] = 3, + [45013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(1263), 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(1261), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -113787,8 +118202,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, @@ -113817,107 +118233,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45121] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5214), 1, - sym_word, - ACTIONS(5216), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, - anon_sym_DOLLAR, - ACTIONS(5222), 1, - sym__special_character, - ACTIONS(5224), 1, - anon_sym_DQUOTE, - ACTIONS(5228), 1, - aux_sym_number_token1, - ACTIONS(5230), 1, - aux_sym_number_token2, - ACTIONS(5232), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, - anon_sym_BQUOTE, - ACTIONS(5238), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5242), 1, - sym_test_operator, - ACTIONS(5244), 1, - sym__brace_start, - STATE(5266), 1, - aux_sym__literal_repeat1, - STATE(5461), 1, - sym_concatenation, - ACTIONS(5226), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5240), 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(5139), 9, - 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), 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, + [45068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5641), 1, aux_sym_concatenation_token1, - ACTIONS(5170), 1, + ACTIONS(5644), 1, sym__concat, - STATE(1114), 1, + STATE(1117), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(1263), 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(1223), 38, + ACTIONS(1261), 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, @@ -113926,7 +118271,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, @@ -113942,95 +118286,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, - [45275] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5216), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, - anon_sym_DOLLAR, - ACTIONS(5222), 1, - sym__special_character, - ACTIONS(5224), 1, - anon_sym_DQUOTE, - ACTIONS(5228), 1, - aux_sym_number_token1, - ACTIONS(5230), 1, - aux_sym_number_token2, - ACTIONS(5232), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, - anon_sym_BQUOTE, - ACTIONS(5238), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, - sym__brace_start, - ACTIONS(5246), 1, - sym_word, - ACTIONS(5250), 1, - sym_test_operator, - STATE(5394), 1, - aux_sym__literal_repeat1, - STATE(5464), 1, - sym_concatenation, - ACTIONS(5240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5248), 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(5174), 9, - 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), 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, + [45129] = 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(1368), 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(1366), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114042,6 +118310,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 +118325,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,23 +118340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45429] = 6, + [45184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - aux_sym_concatenation_token1, - ACTIONS(5254), 1, - sym__concat, - STATE(1116), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 6, + ACTIONS(5647), 1, + sym__special_character, + STATE(1119), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1370), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114096,7 +118364,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, @@ -114111,7 +118382,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, @@ -114124,23 +118394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45490] = 6, + [45243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, - aux_sym_concatenation_token1, - ACTIONS(5259), 1, - sym__concat, - STATE(1116), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1304), 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), 38, + ACTIONS(1302), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114152,6 +118416,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, @@ -114165,6 +118431,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, @@ -114179,36 +118446,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45551] = 6, + [45298] = 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(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4495), 1, + sym_variable_name, + STATE(2253), 1, + sym_string, + ACTIONS(4493), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 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(4491), 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(1249), 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_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114217,12 +118488,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, @@ -114234,22 +118503,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45612] = 6, + [45363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5624), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5626), 1, sym__concat, - STATE(982), 1, + STATE(1152), 1, aux_sym_concatenation_repeat1, - ACTIONS(4443), 5, + ACTIONS(5054), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 39, + ACTIONS(5052), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114260,7 +118530,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, @@ -114289,22 +118558,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45673] = 6, + [45424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5624), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5626), 1, sym__concat, - STATE(1120), 1, + STATE(1156), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5058), 6, 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(5056), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114315,7 +118585,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, @@ -114344,36 +118613,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45734] = 6, + [45485] = 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(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4495), 1, + sym_variable_name, + STATE(2253), 1, + sym_string, + ACTIONS(4493), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, - anon_sym_SEMI, + ACTIONS(4491), 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(1237), 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_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114382,12 +118655,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, @@ -114399,36 +118670,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45795] = 6, + [45550] = 3, 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, + ACTIONS(1324), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 39, + ACTIONS(1322), 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, @@ -114440,6 +118707,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 +118722,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45856] = 6, + [45605] = 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(1304), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1302), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114495,6 +118759,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 +118774,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45917] = 6, + [45660] = 12, 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, - sym_file_descriptor, + ACTIONS(5589), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(5652), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 39, - anon_sym_SEMI, + STATE(7203), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(5174), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5650), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -114546,7 +118818,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, @@ -114562,38 +118834,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, - [45978] = 6, + [45733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, - aux_sym_concatenation_token1, - ACTIONS(4989), 1, - sym__concat, - STATE(989), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 5, + ACTIONS(1312), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1310), 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, @@ -114602,8 +118869,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, @@ -114617,24 +118886,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, - [46039] = 6, + [45788] = 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(276), 5, + ACTIONS(1368), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 39, + ACTIONS(1366), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114646,6 +118909,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, @@ -114660,6 +118924,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, @@ -114674,22 +118939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46100] = 6, + [45843] = 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(1308), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(1306), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114700,8 +118960,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, @@ -114715,6 +118976,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, @@ -114729,24 +118991,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46161] = 7, + [45898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5576), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(5578), 1, sym__concat, - ACTIONS(5272), 1, - anon_sym_LPAREN, - STATE(1076), 1, + STATE(1182), 1, aux_sym_concatenation_repeat1, - ACTIONS(1240), 5, + ACTIONS(5062), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 38, + ACTIONS(5060), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114757,6 +119017,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, @@ -114785,41 +119046,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46224] = 10, + [45959] = 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(1294), 5, sym_file_descriptor, 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(1287), 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_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, @@ -114827,6 +119080,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, @@ -114844,22 +119098,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46293] = 6, + [46014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(5624), 1, aux_sym_concatenation_token1, - ACTIONS(4663), 1, + ACTIONS(5626), 1, sym__concat, - STATE(1075), 1, + STATE(1156), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(4855), 6, 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(4853), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -114870,7 +119125,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, @@ -114899,32 +119153,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46354] = 9, + [46075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(4161), 2, + ACTIONS(5654), 1, + sym__special_character, + STATE(1084), 1, + aux_sym__literal_repeat1, + ACTIONS(5078), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, 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, + ACTIONS(5076), 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, + anon_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, @@ -114937,18 +119207,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(4157), 19, + [46134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 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(1318), 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, @@ -114957,125 +119241,113 @@ 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, + anon_sym_LT_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, + [46189] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1197), 1, - sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(4828), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5628), 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, + STATE(7210), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4975), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 7, + 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_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4720), 27, 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_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_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(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, 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, + [46258] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5656), 1, + sym__concat, + STATE(1042), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115084,68 +119356,53 @@ 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_LT_LT_LT, 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, 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, + [46319] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5658), 1, + sym__concat, + STATE(1042), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115154,21 +119411,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [46668] = 8, + 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, + [46380] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(260), 1, anon_sym_DQUOTE, - ACTIONS(1191), 1, + ACTIONS(1251), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(5664), 1, sym_variable_name, - STATE(2219), 1, + STATE(2559), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(5662), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(5660), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -115177,7 +119451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 33, + ACTIONS(1249), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -115209,25 +119483,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - [46733] = 8, + [46445] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(260), 1, anon_sym_DQUOTE, - ACTIONS(5198), 1, + ACTIONS(1245), 1, + sym_test_operator, + ACTIONS(5664), 1, sym_variable_name, - STATE(2456), 1, + STATE(2559), 1, sym_string, - ACTIONS(5196), 2, + ACTIONS(5662), 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, + ACTIONS(5660), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -115236,75 +119508,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 31, + ACTIONS(1237), 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_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [46798] = 12, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [46510] = 6, 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(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(1184), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5066), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5285), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(5064), 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_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, @@ -115312,6 +119579,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, @@ -115329,35 +119597,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46871] = 6, + [46571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(5666), 1, aux_sym_concatenation_token1, - ACTIONS(5295), 1, + ACTIONS(5668), 1, sym__concat, - STATE(1203), 1, + STATE(1207), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(5062), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 39, + ACTIONS(5060), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115366,6 +119635,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, @@ -115381,20 +119651,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, - [46931] = 3, + [46632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1182), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(4941), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115405,6 +119678,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, @@ -115419,7 +119693,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, @@ -115434,20 +119707,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46985] = 5, + [46693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5297), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(1184), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(4945), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115458,9 +119733,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, @@ -115475,6 +119749,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, @@ -115487,31 +119762,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47043] = 3, + [46754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1308), 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(1306), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115538,31 +119814,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47097] = 3, + [46809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1251), 1, + sym_test_operator, + ACTIONS(5664), 1, + sym_variable_name, + STATE(2559), 1, + sym_string, + ACTIONS(5662), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5660), 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(1249), 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, + [46874] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1245), 1, + sym_test_operator, + ACTIONS(5664), 1, sym_variable_name, + STATE(2559), 1, + sym_string, + ACTIONS(5662), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5660), 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(1237), 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, + [46939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(1182), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(5052), 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, @@ -115574,7 +119969,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, @@ -115589,31 +119983,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47151] = 3, + [47000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, - sym_variable_name, + STATE(1184), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(5056), 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, @@ -115625,7 +120024,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, @@ -115640,31 +120038,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47205] = 3, + [47061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(5666), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, sym__concat, - sym_variable_name, + STATE(1209), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5066), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(5064), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115676,7 +120079,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, @@ -115691,31 +120093,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47259] = 3, + [47122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5624), 1, + aux_sym_concatenation_token1, + ACTIONS(5626), 1, sym__concat, - sym_variable_name, + STATE(1152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 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(1271), 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, @@ -115724,9 +120131,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, @@ -115740,33 +120147,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, - [47313] = 3, + [47183] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5624), 1, + aux_sym_concatenation_token1, + ACTIONS(5670), 1, sym__concat, - sym_variable_name, + STATE(1159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 6, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1281), 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, @@ -115775,9 +120186,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, @@ -115791,33 +120202,46 @@ static const uint16_t 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, + [47244] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(2641), 1, + anon_sym_BQUOTE, + ACTIONS(5628), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(5674), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, - anon_sym_SEMI, + STATE(7210), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5637), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(4975), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5672), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 26, 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, @@ -115825,10 +120249,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, @@ -115838,41 +120261,40 @@ 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, - aux_sym__simple_variable_name_token1, sym_word, - [47421] = 6, + [47319] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(5666), 1, aux_sym_concatenation_token1, - ACTIONS(5295), 1, + ACTIONS(5668), 1, sym__concat, - STATE(1201), 1, + STATE(1207), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(4943), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(4941), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115881,6 +120303,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 +120319,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, - [47481] = 3, + [47380] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(5666), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, sym__concat, + STATE(1209), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(4945), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115919,8 +120346,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115934,7 +120361,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 +120375,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47535] = 3, + [47441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(5624), 1, + aux_sym_concatenation_token1, + ACTIONS(5676), 1, sym__concat, + STATE(1159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 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(1275), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115970,7 +120402,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, @@ -115985,7 +120416,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, @@ -116000,16 +120430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47589] = 3, + [47502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(5666), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, + sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 41, + ACTIONS(5052), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116020,10 +120456,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116051,17 +120485,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47643] = 3, + [47563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5666), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, sym__concat, + STATE(1209), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(5056), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116072,8 +120511,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116087,7 +120526,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, @@ -116102,17 +120540,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47697] = 3, + [47624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(5678), 1, + aux_sym_concatenation_token1, + ACTIONS(5681), 1, sym__concat, + STATE(1159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116123,7 +120567,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, @@ -116138,7 +120581,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 +120595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47751] = 3, + [47685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1316), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 41, + ACTIONS(1314), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116173,10 +120616,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, @@ -116190,6 +120632,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 +120647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47805] = 3, + [47740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1263), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1261), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116225,6 +120668,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, @@ -116255,68 +120699,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47859] = 3, - ACTIONS(3), 1, + [47795] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5684), 1, + sym_word, + ACTIONS(5686), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5688), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5690), 1, + anon_sym_DOLLAR, + ACTIONS(5692), 1, + sym__special_character, + ACTIONS(5694), 1, + anon_sym_DQUOTE, + ACTIONS(5698), 1, + aux_sym_number_token1, + ACTIONS(5700), 1, + aux_sym_number_token2, + ACTIONS(5702), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5704), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5706), 1, + anon_sym_BQUOTE, + ACTIONS(5708), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5712), 1, sym_test_operator, + ACTIONS(5714), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5780), 1, + aux_sym__literal_repeat1, + STATE(5994), 1, + sym_concatenation, + ACTIONS(5696), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5710), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2643), 7, 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(5706), 9, + 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(2645), 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, + [47888] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5686), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5688), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5690), 1, anon_sym_DOLLAR, + ACTIONS(5692), 1, sym__special_character, + ACTIONS(5694), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5698), 1, aux_sym_number_token1, + ACTIONS(5700), 1, aux_sym_number_token2, + ACTIONS(5702), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5704), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5706), 1, anon_sym_BQUOTE, + ACTIONS(5708), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5714), 1, + sym__brace_start, + ACTIONS(5716), 1, + sym_word, + ACTIONS(5720), 1, + sym_test_operator, + STATE(5790), 1, + aux_sym__literal_repeat1, + STATE(5997), 1, + sym_concatenation, + ACTIONS(5710), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [47913] = 3, + ACTIONS(5718), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2548), 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(5740), 9, + 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(2550), 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, + [47981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(5654), 1, + sym__special_character, + STATE(1084), 1, + aux_sym__literal_repeat1, + ACTIONS(5062), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(5060), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116327,8 +120865,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, @@ -116342,9 +120882,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, @@ -116357,31 +120895,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47967] = 3, + [48040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, sym__concat, + STATE(1095), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1271), 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, @@ -116393,7 +120936,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, @@ -116408,21 +120950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48021] = 6, + [48101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, + ACTIONS(5572), 1, aux_sym_concatenation_token1, - ACTIONS(5302), 1, + ACTIONS(5574), 1, sym__concat, - STATE(1161), 1, + STATE(1095), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(5724), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 39, + ACTIONS(5722), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116462,35 +121005,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48081] = 5, + [48162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - sym__special_character, - STATE(1159), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, + sym__concat, + STATE(1096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(5726), 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, @@ -116503,6 +121047,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, @@ -116515,31 +121060,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48139] = 3, + [48223] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(5732), 1, + anon_sym_DQUOTE, + ACTIONS(5736), 1, + sym_variable_name, + STATE(2901), 1, + sym_string, + ACTIONS(5734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, - anon_sym_SEMI, + ACTIONS(5730), 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(1249), 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_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116551,10 +121105,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, @@ -116566,34 +121117,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48193] = 6, + [48288] = 8, 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(5732), 1, + anon_sym_DQUOTE, + ACTIONS(5736), 1, + sym_variable_name, + STATE(2901), 1, + sym_string, + ACTIONS(5734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, - anon_sym_SEMI, + ACTIONS(5730), 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(1237), 31, anon_sym_PIPE_PIPE, anon_sym_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, @@ -116606,9 +121162,7 @@ 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, @@ -116620,35 +121174,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48253] = 6, + [48353] = 8, 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(5740), 1, + anon_sym_DQUOTE, + ACTIONS(5744), 1, + sym_variable_name, + STATE(3074), 1, + sym_string, + ACTIONS(5742), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, - anon_sym_SEMI, + ACTIONS(5738), 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(1249), 31, anon_sym_PIPE_PIPE, anon_sym_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, @@ -116657,12 +121217,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, @@ -116674,16 +121231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48313] = 3, + [48418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1320), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(1318), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116694,7 +121252,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, @@ -116711,6 +121268,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, @@ -116725,31 +121283,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48367] = 3, + [48473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1332), 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(1330), 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, @@ -116758,6 +121317,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, @@ -116774,23 +121334,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, - [48421] = 6, + [48528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, + ACTIONS(5596), 1, aux_sym_concatenation_token1, - ACTIONS(5302), 1, + ACTIONS(5598), 1, sym__concat, - STATE(1162), 1, + STATE(1107), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(5724), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 39, + ACTIONS(5722), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116813,7 +121373,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, @@ -116829,22 +121388,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, - [48481] = 6, + [48589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, + ACTIONS(5596), 1, aux_sym_concatenation_token1, - ACTIONS(5314), 1, + ACTIONS(5598), 1, sym__concat, - STATE(1166), 1, + STATE(1108), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(5728), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(5726), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116867,7 +121428,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, @@ -116883,32 +121443,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, - [48541] = 3, + [48650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1356), 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(1272), 40, + ACTIONS(1354), 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, @@ -116935,31 +121497,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48595] = 3, + [48705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1312), 6, 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(1310), 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, @@ -116986,35 +121549,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48649] = 6, + [48760] = 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(1360), 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), 39, + ACTIONS(1358), 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, @@ -117026,6 +121586,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 +121601,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48709] = 3, + [48815] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5589), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(5748), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, - anon_sym_SEMI, + STATE(7203), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(5174), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5746), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -117072,10 +121645,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, @@ -117089,33 +121661,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, - [48763] = 3, + [48888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1358), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117124,6 +121696,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, @@ -117140,33 +121713,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, - [48817] = 3, + [48943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, - sym_variable_name, + STATE(1182), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1271), 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, @@ -117178,7 +121755,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 +121769,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48871] = 3, + [49004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1304), 6, 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(1302), 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, @@ -117226,6 +121803,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, @@ -117242,19 +121820,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, - [48925] = 3, + [49059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5750), 1, sym__concat, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1281), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117280,7 +121862,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, @@ -117295,17 +121876,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48979] = 3, + [49120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5740), 1, + anon_sym_DQUOTE, + ACTIONS(5744), 1, + sym_variable_name, + STATE(3074), 1, + sym_string, + ACTIONS(5742), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5738), 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(1237), 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_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_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, + [49185] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5752), 1, sym__concat, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1275), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117331,7 +121974,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, @@ -117346,87 +121988,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49033] = 22, - ACTIONS(71), 1, + [49246] = 6, + ACTIONS(3), 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, + ACTIONS(5666), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, + sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5078), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(5347), 1, + sym__bare_dollar, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(5076), 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_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_SEMI_SEMI, + anon_sym_RBRACE, 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, - [49125] = 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, + [49307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5754), 1, + aux_sym_concatenation_token1, + ACTIONS(5757), 1, sym__concat, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1261), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117452,7 +122084,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, @@ -117467,17 +122098,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49179] = 3, + [49368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5666), 1, + aux_sym_concatenation_token1, + ACTIONS(5668), 1, sym__concat, + STATE(1209), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4855), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(4853), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117488,8 +122124,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117503,7 +122139,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, @@ -117518,39 +122153,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49233] = 8, + [49429] = 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(5596), 1, + aux_sym_concatenation_token1, + ACTIONS(5598), 1, + sym__concat, + STATE(1107), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 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(1195), 30, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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 +122193,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,24 +122206,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, - [49297] = 8, + [49490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(2352), 1, anon_sym_DQUOTE, - ACTIONS(5355), 1, + ACTIONS(4678), 1, sym_variable_name, - STATE(2736), 1, + STATE(1848), 1, sym_string, - ACTIONS(5353), 2, + ACTIONS(4676), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1191), 3, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5349), 8, + ACTIONS(4674), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -117599,7 +122233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 30, + ACTIONS(1249), 31, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -117616,6 +122250,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_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -117630,21 +122265,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49361] = 5, + [49555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, + ACTIONS(1316), 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(1314), 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, + anon_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, - STATE(1232), 1, - aux_sym__literal_repeat1, - ACTIONS(276), 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, + [49610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 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), 38, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117670,8 +122354,67 @@ 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, + [49665] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 1, anon_sym_DQUOTE, + ACTIONS(4678), 1, + sym_variable_name, + STATE(1848), 1, + sym_string, + ACTIONS(4676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4674), 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(1237), 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, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -117683,17 +122426,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49419] = 3, + [49730] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5764), 1, + anon_sym_DQUOTE, + ACTIONS(5766), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5768), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5770), 1, + anon_sym_BQUOTE, + ACTIONS(5772), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2657), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5760), 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(5762), 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, + [49797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1306), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117704,6 +122505,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, @@ -117734,48 +122536,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49473] = 22, + [49852] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(5774), 1, + sym_word, + ACTIONS(5776), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(5778), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, + ACTIONS(5780), 1, anon_sym_DOLLAR, - ACTIONS(5325), 1, + ACTIONS(5782), 1, sym__special_character, - ACTIONS(5327), 1, + ACTIONS(5784), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(5788), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(5790), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(5792), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(5794), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(5796), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(5359), 1, - sym_word, - ACTIONS(5363), 1, + ACTIONS(5802), 1, sym_test_operator, - STATE(5413), 1, + ACTIONS(5804), 1, + sym__brace_start, + STATE(3451), 1, aux_sym__literal_repeat1, - STATE(5589), 1, - sym_concatenation, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5361), 2, + ACTIONS(5786), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2275), 7, + ACTIONS(5800), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1201), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -117783,7 +122586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5397), 9, + STATE(3068), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -117793,7 +122596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2277), 10, + ACTIONS(2178), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117804,17 +122607,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [49565] = 3, + [49945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, sym__concat, + STATE(1095), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(4941), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117840,7 +122648,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 +122662,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49619] = 3, + [50006] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, sym__concat, + STATE(1096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(4945), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -117891,7 +122703,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, @@ -117906,75 +122717,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49673] = 30, + [50067] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(5774), 1, + sym_word, + ACTIONS(5776), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(5778), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(5780), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(5782), 1, + sym__special_character, + ACTIONS(5784), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(5788), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(5790), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(5792), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(5794), 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, + ACTIONS(5796), 1, anon_sym_BQUOTE, - ACTIONS(5377), 1, + ACTIONS(5798), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5802), 1, sym_test_operator, - STATE(2363), 1, + ACTIONS(5804), 1, + sym__brace_start, + STATE(3451), 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, + ACTIONS(5786), 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, + ACTIONS(5800), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1201), 2, sym_concatenation, - STATE(2357), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2180), 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(3068), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -117984,39 +122777,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [49781] = 8, + ACTIONS(2182), 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, + [50160] = 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(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, + sym__concat, + STATE(1095), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 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(5052), 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, @@ -118026,9 +122826,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,40 +122843,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49845] = 8, + [50221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, - anon_sym_DQUOTE, - ACTIONS(5385), 1, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, + sym__concat, + STATE(1096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, sym_variable_name, - STATE(2864), 1, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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_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, + [50282] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5806), 1, + sym_word, + ACTIONS(5809), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5812), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5815), 1, + anon_sym_DOLLAR, + ACTIONS(5818), 1, + sym__special_character, + ACTIONS(5821), 1, + anon_sym_DQUOTE, + ACTIONS(5827), 1, + aux_sym_number_token1, + ACTIONS(5830), 1, + aux_sym_number_token2, + ACTIONS(5833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5836), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5839), 1, + anon_sym_BQUOTE, + ACTIONS(5842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5848), 1, + sym_test_operator, + ACTIONS(5851), 1, + sym__brace_start, + STATE(3451), 1, + aux_sym__literal_repeat1, + ACTIONS(5824), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5845), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1201), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 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(3068), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(5383), 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, + ACTIONS(2189), 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, + [50375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, 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(1354), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118082,9 +123003,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, @@ -118096,17 +123021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49909] = 3, + [50430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1324), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1322), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118117,6 +123042,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, @@ -118147,35 +123073,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49963] = 6, + [50485] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5854), 1, + sym_word, + ACTIONS(5856), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5858), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5860), 1, + anon_sym_DOLLAR, + ACTIONS(5862), 1, + sym__special_character, + ACTIONS(5864), 1, + anon_sym_DQUOTE, + ACTIONS(5868), 1, + aux_sym_number_token1, + ACTIONS(5870), 1, + aux_sym_number_token2, + ACTIONS(5872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5874), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5876), 1, + anon_sym_BQUOTE, + ACTIONS(5878), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5882), 1, + sym_test_operator, + ACTIONS(5884), 1, + sym__brace_start, + STATE(5835), 1, + aux_sym__literal_repeat1, + STATE(5983), 1, + sym_concatenation, + ACTIONS(5866), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5880), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2643), 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(5634), 9, + 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(2645), 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, + [50578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(5666), 1, aux_sym_concatenation_token1, - ACTIONS(5295), 1, + ACTIONS(5668), 1, sym__concat, - STATE(1201), 1, + STATE(1207), 1, aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 39, + ACTIONS(1271), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118184,6 +123182,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, @@ -118199,37 +123198,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50023] = 6, + [50639] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5856), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5858), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5860), 1, + anon_sym_DOLLAR, + ACTIONS(5862), 1, + sym__special_character, + ACTIONS(5864), 1, + anon_sym_DQUOTE, + ACTIONS(5868), 1, + aux_sym_number_token1, + ACTIONS(5870), 1, + aux_sym_number_token2, + ACTIONS(5872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5874), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5876), 1, + anon_sym_BQUOTE, + ACTIONS(5878), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5884), 1, + sym__brace_start, + ACTIONS(5886), 1, + sym_word, + ACTIONS(5890), 1, + sym_test_operator, + STATE(5798), 1, + aux_sym__literal_repeat1, + STATE(6030), 1, + sym_concatenation, + ACTIONS(5880), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5888), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2548), 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(5707), 9, + 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(2550), 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, + [50732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(5666), 1, aux_sym_concatenation_token1, - ACTIONS(5393), 1, + ACTIONS(5892), 1, sym__concat, - STATE(1198), 1, + STATE(1211), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1283), 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(1281), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118255,31 +123325,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50083] = 3, + [50793] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(3639), 1, + anon_sym_DQUOTE, + ACTIONS(4489), 1, + sym_variable_name, + STATE(2093), 1, + sym_string, + ACTIONS(4487), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4485), 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(1249), 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, + 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, + [50858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5666), 1, + aux_sym_concatenation_token1, + ACTIONS(5894), 1, sym__concat, - sym_variable_name, + STATE(1211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1275), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118291,7 +123423,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, @@ -118306,31 +123437,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50137] = 3, + [50919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1368), 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(1288), 40, + ACTIONS(1366), 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, @@ -118357,35 +123489,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50191] = 6, + [50974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(5896), 1, aux_sym_concatenation_token1, - ACTIONS(5395), 1, + ACTIONS(5899), 1, sym__concat, - STATE(1198), 1, + STATE(1211), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1263), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1261), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118411,17 +123544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50251] = 3, + [51035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1358), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118432,8 +123565,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, @@ -118462,16 +123596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50305] = 3, + [51090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(1356), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 41, + ACTIONS(1354), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118482,7 +123617,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, @@ -118499,6 +123633,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, @@ -118513,16 +123648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50359] = 3, + [51145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(1320), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 41, + ACTIONS(1318), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118533,10 +123669,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, @@ -118550,6 +123685,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, @@ -118564,22 +123700,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50413] = 6, + [51200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, + ACTIONS(5572), 1, aux_sym_concatenation_token1, - ACTIONS(5404), 1, + ACTIONS(5574), 1, sym__concat, - STATE(1198), 1, + STATE(1095), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(5904), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(5902), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118589,6 +123725,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, @@ -118618,113 +123755,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50473] = 30, - ACTIONS(71), 1, + [51261] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, + sym__concat, + STATE(1096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5906), 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_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_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [51322] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3639), 1, + anon_sym_DQUOTE, + ACTIONS(4489), 1, + sym_variable_name, + STATE(2093), 1, + sym_string, + ACTIONS(4487), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(4485), 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(1237), 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, + 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, + [51387] = 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(5132), 5, + ACTIONS(1324), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(1322), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118736,6 +123904,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, @@ -118750,35 +123919,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50641] = 6, + [51442] = 8, 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(260), 1, + anon_sym_DQUOTE, + ACTIONS(1251), 1, + sym_test_operator, + ACTIONS(5664), 1, + sym_variable_name, + STATE(2559), 1, + sym_string, + ACTIONS(5662), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5660), 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(1249), 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, + [51507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 39, + ACTIONS(1326), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118787,8 +124010,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, @@ -118802,33 +124027,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, - [50701] = 3, + [51562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1328), 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(1326), 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, @@ -118837,6 +124062,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, @@ -118853,37 +124079,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, - [50755] = 6, + [51617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, - aux_sym_concatenation_token1, - ACTIONS(5417), 1, - sym__concat, - STATE(1222), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1360), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 39, + ACTIONS(1358), 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, @@ -118892,8 +124114,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, @@ -118907,24 +124131,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, - [50815] = 6, + [51672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5419), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1356), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1354), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118935,6 +124153,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, @@ -118949,6 +124169,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, @@ -118963,22 +124184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50875] = 6, + [51727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5421), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1328), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(1326), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -118989,6 +124205,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, @@ -119003,6 +124221,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, @@ -119017,113 +124236,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50935] = 30, - ACTIONS(71), 1, + [51782] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1332), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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, + anon_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(5423), 1, - sym_word, - ACTIONS(5427), 1, - sym_test_operator, - STATE(2373), 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(5425), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6668), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2660), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - STATE(2431), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51043] = 6, + sym_word, + [51837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, - aux_sym_concatenation_token1, - ACTIONS(5431), 1, - sym__concat, - STATE(1219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1344), 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), 38, + ACTIONS(1342), 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_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, @@ -119132,8 +124322,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, @@ -119147,33 +124339,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, - [51103] = 3, + [51892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1332), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1330), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119182,6 +124374,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,33 +124391,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, - [51157] = 3, + [51947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1344), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1342), 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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119233,6 +124426,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, @@ -119249,29 +124443,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, - [51211] = 6, + [52002] = 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(1328), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(1326), 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, @@ -119280,6 +124469,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, @@ -119291,6 +124481,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,35 +124496,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51271] = 6, + [52057] = 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(4282), 5, + ACTIONS(1312), 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(4280), 38, + ACTIONS(1310), 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, @@ -119345,6 +124533,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, @@ -119359,16 +124548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51331] = 3, + [52112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(5654), 1, + sym__special_character, + STATE(1084), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 41, + ACTIONS(4941), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119397,7 +124590,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, @@ -119410,27 +124602,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51385] = 6, + [52171] = 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(1344), 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), 38, + ACTIONS(1342), 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, @@ -119439,6 +124627,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, @@ -119447,8 +124636,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,18 +124653,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, - [51445] = 3, + [52226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1336), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 41, + ACTIONS(1334), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119484,7 +124675,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, @@ -119501,6 +124691,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, @@ -119515,326 +124706,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51499] = 30, - ACTIONS(71), 1, + [52281] = 3, + 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(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(5435), 1, - sym_word, - ACTIONS(5439), 1, - sym_test_operator, - STATE(2366), 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(5437), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6687), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2663), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - STATE(2362), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [51607] = 9, - ACTIONS(71), 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, - 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), 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, - [51673] = 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(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_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, - 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(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(5457), 1, - sym_word, - ACTIONS(5461), 1, - sym_test_operator, - STATE(2359), 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(5459), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6666), 2, - sym_compound_statement, - sym_subshell, - STATE(2518), 3, - sym_ternary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - STATE(2670), 3, - sym_binary_expression, - sym_unary_expression, - sym_concatenation, - 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, - [51889] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1336), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1334), 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_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,8 +124740,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, @@ -119858,18 +124757,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, - [51949] = 3, + [52336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5182), 1, + sym__concat, + STATE(1137), 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(1233), 41, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -119882,8 +124786,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, @@ -119911,35 +124813,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52003] = 6, + [52397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(5182), 1, sym__concat, - STATE(1191), 1, + STATE(1138), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1287), 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, @@ -119965,35 +124868,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52063] = 6, + [52458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(5472), 1, + ACTIONS(5182), 1, sym__concat, - STATE(1222), 1, + ACTIONS(5910), 1, + anon_sym_LPAREN, + STATE(1138), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1294), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1287), 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, @@ -120002,6 +124907,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, @@ -120017,29 +124923,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, - [52123] = 6, + [52521] = 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(1340), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1338), 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, @@ -120048,6 +124949,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, @@ -120059,6 +124961,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,22 +124976,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52183] = 3, + [52576] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(5654), 1, + sym__special_character, + STATE(1084), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 5, 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(5052), 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, @@ -120098,6 +125005,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, @@ -120109,9 +125017,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, @@ -120124,35 +125030,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52237] = 6, + [52635] = 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(1340), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1338), 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_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 +125067,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,35 +125082,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52297] = 6, + [52690] = 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(1348), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 38, + ACTIONS(1346), 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_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, @@ -120215,8 +125116,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 +125133,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, - [52357] = 6, + [52745] = 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(1352), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 38, + ACTIONS(1350), 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_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 +125168,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 +125185,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, - [52417] = 3, + [52800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1346), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120307,6 +125207,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, @@ -120337,17 +125238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52471] = 3, + [52855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1336), 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(1334), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120358,7 +125260,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, @@ -120388,35 +125290,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52525] = 5, + [52910] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(4828), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5589), 1, + sym_variable_name, + STATE(7203), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5174), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 39, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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(4720), 27, 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, @@ -120424,11 +125332,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, @@ -120441,17 +125349,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52583] = 3, + [52979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1362), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120462,8 +125370,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, @@ -120492,21 +125401,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52637] = 5, + [53034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, - sym__special_character, - STATE(1232), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5182), 1, + sym__concat, + STATE(1137), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1271), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120533,6 +125443,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, @@ -120545,22 +125456,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52695] = 6, + [53095] = 9, 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, - sym_file_descriptor, + ACTIONS(5589), 1, sym_variable_name, + STATE(7203), 1, + sym_subscript, + ACTIONS(4732), 2, sym_test_operator, sym__brace_start, + ACTIONS(4820), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + STATE(5174), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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(4726), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120571,8 +125505,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, @@ -120582,52 +125514,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, 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, - [52755] = 6, + [53162] = 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(5270), 5, + ACTIONS(1364), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(1362), 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_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, @@ -120639,6 +125551,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, @@ -120653,20 +125566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52815] = 5, + [53217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(1308), 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(1306), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120677,9 +125588,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, @@ -120693,7 +125603,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,10 +125618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52873] = 3, + [53272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1340), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -120717,7 +125629,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(1338), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120728,6 +125640,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, @@ -120757,63 +125670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52927] = 5, + [53327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 1, - sym__special_character, - STATE(1159), 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(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_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, - anon_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, - [52985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 7, + ACTIONS(1348), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -120821,7 +125681,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -120832,6 +125692,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, @@ -120861,89 +125722,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53039] = 6, + [53382] = 8, 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, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1251), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, - anon_sym_SEMI, + ACTIONS(5284), 1, + anon_sym_DQUOTE, + ACTIONS(5288), 1, + sym_variable_name, + STATE(2777), 1, + sym_string, + ACTIONS(5286), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5282), 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(1249), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [53099] = 6, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [53447] = 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(1352), 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(2156), 38, + ACTIONS(1350), 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, @@ -120955,6 +125816,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, @@ -120969,81 +125831,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53159] = 3, + [53502] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1245), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, - anon_sym_SEMI, + ACTIONS(5284), 1, + anon_sym_DQUOTE, + ACTIONS(5288), 1, + sym_variable_name, + STATE(2777), 1, + sym_string, + ACTIONS(5286), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5282), 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(1237), 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_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_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [53567] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4552), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4554), 1, aux_sym_number_token1, + ACTIONS(4556), 1, aux_sym_number_token2, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4562), 1, anon_sym_BQUOTE, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(5915), 1, + sym__special_character, + ACTIONS(5917), 1, + sym_test_operator, + STATE(4836), 1, + aux_sym__literal_repeat1, + STATE(5044), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(5913), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [53213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, - anon_sym_SEMI, + STATE(5733), 9, + 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(2643), 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_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, @@ -121053,48 +125958,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, + [53658] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4544), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4546), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4552), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4554), 1, aux_sym_number_token1, + ACTIONS(4556), 1, aux_sym_number_token2, + ACTIONS(4558), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4562), 1, anon_sym_BQUOTE, + ACTIONS(4564), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(5915), 1, + sym__special_character, + ACTIONS(5921), 1, + sym_test_operator, + STATE(4881), 1, + aux_sym__literal_repeat1, + STATE(5075), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4566), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5919), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [53267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, - anon_sym_SEMI, + STATE(5737), 9, + 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(2548), 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_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, @@ -121104,39 +126028,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_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, - [53321] = 8, + [53749] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(260), 1, anon_sym_DQUOTE, - ACTIONS(1197), 1, + ACTIONS(1245), 1, sym_test_operator, - ACTIONS(4957), 1, + ACTIONS(5664), 1, sym_variable_name, - STATE(2219), 1, + STATE(2559), 1, sym_string, - ACTIONS(4955), 2, + ACTIONS(5662), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(5660), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -121145,7 +126051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 32, + ACTIONS(1237), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -121178,20 +126084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [53385] = 5, + anon_sym_COLON, + [53814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(1348), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 39, + ACTIONS(1346), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121218,7 +126122,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, @@ -121231,18 +126137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53443] = 3, + [53869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1352), 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(1252), 39, + ACTIONS(1350), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121254,6 +126159,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, @@ -121282,10 +126189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53497] = 3, + [53924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1348), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -121293,7 +126200,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(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121304,6 +126211,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, @@ -121333,10 +126241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53551] = 3, + [53979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1304), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -121344,7 +126252,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(1302), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121355,6 +126263,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, @@ -121384,18 +126293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53605] = 3, + [54034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(1348), 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(1346), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121407,6 +126315,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, @@ -121435,74 +126345,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53659] = 8, + [54089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(1191), 1, + ACTIONS(5624), 1, + aux_sym_concatenation_token1, + ACTIONS(5626), 1, + sym__concat, + STATE(1152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5078), 6, + sym_file_descriptor, 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, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5076), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - [53723] = 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, + 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, + [54150] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, - sym_file_descriptor, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(5182), 1, sym__concat, + ACTIONS(5923), 1, + anon_sym_LPAREN, + STATE(1138), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1287), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121527,7 +126442,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, @@ -121542,10 +126456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53777] = 3, + [54213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1364), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -121553,7 +126467,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1362), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121564,6 +126478,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, @@ -121593,17 +126508,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53831] = 3, + [54268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(5572), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, sym__concat, + STATE(1096), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(2180), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121629,7 +126549,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, @@ -121644,31 +126563,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53885] = 3, + [54329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(5926), 1, + sym__special_character, + STATE(1268), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, 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(1370), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121680,9 +126603,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, @@ -121695,31 +126616,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53939] = 3, + [54387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(5929), 1, + sym__special_character, + STATE(1269), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1370), 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, @@ -121731,9 +126656,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, @@ -121746,17 +126669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53993] = 3, + [54445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1324), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1322), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121779,58 +126702,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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [54047] = 3, - ACTIONS(3), 1, - sym_comment, - 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(1260), 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_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, @@ -121847,21 +126718,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, - [54101] = 5, + [54499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - sym__special_character, - STATE(1139), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(4855), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 39, + ACTIONS(4853), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121872,6 +126740,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, @@ -121889,56 +126758,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 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(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_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, @@ -121952,18 +126771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54213] = 3, + [54553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(1352), 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(1350), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -121975,6 +126793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -122003,31 +126822,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54267] = 3, + [54607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1312), 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(1310), 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, @@ -122036,7 +126855,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, @@ -122053,19 +126871,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, - [54321] = 3, + [54661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1348), 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(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122077,6 +126895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -122105,17 +126924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54375] = 3, + [54715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1306), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122138,7 +126957,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, @@ -122155,23 +126973,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, - [54429] = 6, + [54769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, + ACTIONS(5932), 1, aux_sym_concatenation_token1, - ACTIONS(5475), 1, + ACTIONS(5934), 1, sym__concat, - STATE(1207), 1, + STATE(1279), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 5, + ACTIONS(1283), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1281), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122181,6 +126999,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, @@ -122193,6 +127012,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,29 +127028,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, - [54489] = 6, + [54829] = 5, 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(5270), 5, + ACTIONS(5936), 1, + sym__special_character, + STATE(1269), 1, + aux_sym__literal_repeat1, + ACTIONS(5062), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(5060), 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, @@ -122239,6 +127057,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, @@ -122247,10 +127066,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, @@ -122262,24 +127081,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, - [54549] = 6, + [54887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(5932), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(5938), 1, sym__concat, - STATE(1194), 1, + STATE(1279), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 5, + ACTIONS(1277), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 38, + ACTIONS(1275), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122289,6 +127106,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, @@ -122318,87 +127136,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54609] = 8, + [54947] = 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(1197), 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(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, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [54673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1250), 7, - sym_file_descriptor, + ACTIONS(5940), 1, + aux_sym_concatenation_token1, + ACTIONS(5943), 1, sym__concat, + STATE(1279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1261), 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, @@ -122410,7 +127176,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, @@ -122425,35 +127190,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54727] = 6, + [55007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5946), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5948), 1, sym__concat, - STATE(1204), 1, + STATE(1411), 1, aux_sym_concatenation_repeat1, - ACTIONS(4370), 5, + ACTIONS(1273), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, + ACTIONS(1271), 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, @@ -122462,7 +127227,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, @@ -122478,36 +127242,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, - [54787] = 6, + [55067] = 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(4443), 5, + ACTIONS(1320), 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), 38, + ACTIONS(1318), 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, @@ -122519,6 +127280,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, @@ -122533,87 +127295,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54847] = 8, + [55121] = 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(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, + ACTIONS(1332), 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(1256), 39, + ACTIONS(1330), 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, @@ -122640,17 +127346,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54965] = 3, + [55175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(5936), 1, + sym__special_character, + STATE(1269), 1, + aux_sym__literal_repeat1, + ACTIONS(5078), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(5076), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122661,8 +127370,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, @@ -122676,9 +127386,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, @@ -122691,31 +127399,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55019] = 3, + [55233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(5936), 1, + sym__special_character, + STATE(1269), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(4941), 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, @@ -122724,11 +127436,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, @@ -122740,37 +127451,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, - [55073] = 6, + [55291] = 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(1320), 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(1318), 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, @@ -122779,9 +127485,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, @@ -122795,36 +127501,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, - [55133] = 6, + [55345] = 8, 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(5952), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, + sym_variable_name, + STATE(3112), 1, + sym_string, + ACTIONS(5954), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 38, - anon_sym_SEMI, + ACTIONS(5950), 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(1249), 30, anon_sym_PIPE_PIPE, 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, @@ -122833,12 +127545,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, @@ -122850,30 +127559,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55193] = 3, + [55409] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5952), 1, + anon_sym_DQUOTE, + ACTIONS(5956), 1, sym_variable_name, + STATE(3112), 1, + sym_string, + ACTIONS(5954), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, - anon_sym_SEMI, + ACTIONS(5950), 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(1237), 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, @@ -122885,10 +127603,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, @@ -122899,19 +127614,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, - [55247] = 3, + [55473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1332), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1330), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122952,22 +127666,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [55301] = 6, + [55527] = 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(4282), 5, + ACTIONS(5936), 1, + sym__special_character, + STATE(1269), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(5052), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -122979,6 +127691,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, @@ -122993,7 +127707,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, @@ -123006,35 +127719,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55361] = 6, + [55585] = 8, 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(5960), 1, + anon_sym_DQUOTE, + ACTIONS(5964), 1, + sym_variable_name, + STATE(3326), 1, + sym_string, + ACTIONS(5962), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, - anon_sym_SEMI, + ACTIONS(5958), 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(1249), 30, anon_sym_PIPE_PIPE, 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, @@ -123043,12 +127761,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, @@ -123060,35 +127775,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55421] = 6, + [55649] = 8, 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(5960), 1, + anon_sym_DQUOTE, + ACTIONS(5964), 1, + sym_variable_name, + STATE(3326), 1, + sym_string, + ACTIONS(5962), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, - anon_sym_SEMI, + ACTIONS(5958), 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(1237), 30, anon_sym_PIPE_PIPE, 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, @@ -123097,12 +127817,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, @@ -123114,22 +127831,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55481] = 6, + [55713] = 5, 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(5966), 1, + sym__special_character, + STATE(1268), 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(4311), 38, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123140,7 +127855,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -123155,7 +127872,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, @@ -123168,22 +127884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55541] = 6, + [55771] = 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(1225), 5, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1271), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123194,7 +127904,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, @@ -123222,31 +127935,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55601] = 3, + [55825] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, - sym_file_descriptor, - sym__concat, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1251), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, - anon_sym_SEMI, + ACTIONS(5664), 1, + sym_variable_name, + STATE(2559), 1, + sym_string, + ACTIONS(5662), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5660), 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(1249), 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_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_EQ_TILDE, + [55889] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + anon_sym_DQUOTE, + ACTIONS(1245), 1, + sym_test_operator, + ACTIONS(5664), 1, + sym_variable_name, + STATE(2559), 1, + sym_string, + ACTIONS(5662), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5660), 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(1237), 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, + [55953] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5970), 1, + anon_sym_DQUOTE, + ACTIONS(5974), 1, + sym_variable_name, + STATE(2871), 1, + sym_string, + ACTIONS(5972), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5968), 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(1249), 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, @@ -123255,13 +128089,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, @@ -123273,31 +128103,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55655] = 3, + [56017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(5948), 1, sym__concat, + STATE(1411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5978), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(5976), 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, @@ -123306,10 +128140,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, @@ -123323,32 +128155,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, - [55709] = 3, + [56077] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, - sym_file_descriptor, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(5982), 1, sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 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(1292), 39, + ACTIONS(1281), 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, @@ -123360,7 +128197,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, @@ -123375,17 +128211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55763] = 3, + [56137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1358), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123408,6 +128244,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, @@ -123424,19 +128261,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, - [55817] = 3, + [56191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1356), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1354), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123459,6 +128295,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, @@ -123475,19 +128312,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, - [55871] = 3, + [56245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(5984), 1, sym__concat, + STATE(1303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1275), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123497,7 +128338,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, @@ -123510,9 +128350,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,32 +128366,40 @@ static const uint16_t 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, + [56305] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5970), 1, + anon_sym_DQUOTE, + ACTIONS(5974), 1, sym_variable_name, + STATE(2871), 1, + sym_string, + ACTIONS(5972), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, - anon_sym_SEMI, + ACTIONS(5968), 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(1237), 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, @@ -123563,10 +128411,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, @@ -123577,24 +128422,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, - [55979] = 6, + [56369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(5986), 1, aux_sym_concatenation_token1, - ACTIONS(5413), 1, + ACTIONS(5989), 1, sym__concat, - STATE(1194), 1, + STATE(1303), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1263), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123633,35 +128477,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56039] = 6, + [56429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, - aux_sym_concatenation_token1, - ACTIONS(5494), 1, - sym__concat, - STATE(1401), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(1294), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(1287), 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_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, @@ -123670,6 +128511,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,117 +128528,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56098] = 3, - ACTIONS(3), 1, + [56483] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 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, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [56151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, + ACTIONS(543), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 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, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1141), 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(5992), 1, + sym_word, + ACTIONS(5994), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5996), 1, + anon_sym_LPAREN, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(6002), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6004), 1, + sym_test_operator, + STATE(2700), 1, + aux_sym__literal_repeat1, + STATE(3425), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [56204] = 3, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6000), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(7233), 2, + sym_compound_statement, + sym_subshell, + STATE(2784), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(3124), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2697), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(5948), 1, sym__concat, - sym_variable_name, + STATE(1415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6008), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(6006), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123806,6 +128630,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, @@ -123820,7 +128645,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, @@ -123836,17 +128660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [56257] = 3, + [56651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(5932), 1, + aux_sym_concatenation_token1, + ACTIONS(6010), 1, sym__concat, - sym_variable_name, + STATE(1276), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1271), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -123856,6 +128684,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, @@ -123871,7 +128700,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,34 +128714,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56310] = 6, + [56711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5576), 1, aux_sym_concatenation_token1, - ACTIONS(5498), 1, + ACTIONS(6012), 1, sym__concat, - STATE(1462), 1, + STATE(1186), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1283), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1281), 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, @@ -123939,80 +128768,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56369] = 3, + [56771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 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, + ACTIONS(5576), 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, - aux_sym__simple_variable_name_token1, - sym_word, - [56422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(6014), 1, sym__concat, - sym_variable_name, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1275), 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 +128805,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,19 +128821,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, - [56475] = 3, + [56831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(6016), 1, + aux_sym_concatenation_token1, + ACTIONS(6018), 1, sym__concat, + STATE(1318), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1281), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124071,10 +128859,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, @@ -124088,71 +128874,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, - [56528] = 6, - ACTIONS(3), 1, + [56891] = 30, + ACTIONS(71), 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, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - 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, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(5994), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5996), 1, + anon_sym_LPAREN, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6020), 1, + sym_word, + ACTIONS(6024), 1, + sym_test_operator, + STATE(2669), 1, + aux_sym__literal_repeat1, + STATE(3425), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [56587] = 3, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6022), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(7219), 2, + sym_compound_statement, + sym_subshell, + STATE(2784), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(3150), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2667), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [56999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1358), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124162,6 +128974,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, @@ -124174,7 +128987,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, @@ -124191,18 +129003,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, - [56640] = 3, + [57053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1356), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1354), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124212,6 +129025,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, @@ -124224,7 +129038,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, @@ -124241,17 +129054,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, - [56693] = 3, + [57107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(6016), 1, + aux_sym_concatenation_token1, + ACTIONS(6026), 1, sym__concat, + STATE(1318), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 40, + ACTIONS(1275), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124261,7 +129081,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, @@ -124276,7 +129095,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, @@ -124292,51 +129110,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [56746] = 21, - ACTIONS(3), 1, + [57167] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(5507), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5510), 1, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5513), 1, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(5516), 1, - sym__special_character, - ACTIONS(5519), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(5522), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(5525), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(5528), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5531), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5534), 1, - anon_sym_BQUOTE, - ACTIONS(5537), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5543), 1, - sym_test_operator, - ACTIONS(5546), 1, + ACTIONS(543), 1, sym__brace_start, - STATE(3369), 1, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(5994), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5996), 1, + anon_sym_LPAREN, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6028), 1, + sym_word, + ACTIONS(6032), 1, + sym_test_operator, + STATE(2691), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5540), 2, + STATE(3425), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5504), 3, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6030), 2, sym_raw_string, sym_ansi_c_string, + STATE(7218), 2, + sym_compound_statement, + sym_subshell, + STATE(2784), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2921), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2690), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57275] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(5994), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5996), 1, + anon_sym_LPAREN, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6034), 1, sym_word, - STATE(3082), 9, + ACTIONS(6038), 1, + sym_test_operator, + STATE(2715), 1, + aux_sym__literal_repeat1, + STATE(3425), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6036), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(7262), 2, + sym_compound_statement, + sym_subshell, + STATE(2784), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2926), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2714), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -124346,48 +129266,35 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 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, - [56835] = 6, + [57383] = 5, 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(4282), 6, + ACTIONS(6040), 1, + sym__special_character, + STATE(1317), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(4280), 36, + ACTIONS(1370), 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, @@ -124400,7 +129307,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, @@ -124413,23 +129319,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56894] = 6, + [57441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(6043), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(6046), 1, sym__concat, - STATE(1381), 1, + STATE(1318), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 6, + ACTIONS(1263), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 36, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -124440,6 +129345,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, @@ -124449,7 +129356,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, @@ -124465,31 +129371,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, + [57501] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(5994), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5996), 1, + anon_sym_LPAREN, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6049), 1, sym_word, - [56953] = 3, + ACTIONS(6053), 1, + sym_test_operator, + STATE(2725), 1, + aux_sym__literal_repeat1, + STATE(3425), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6051), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(7239), 2, + sym_compound_statement, + sym_subshell, + STATE(2784), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2932), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2724), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [57609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1368), 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(1284), 39, + ACTIONS(1366), 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, @@ -124498,6 +129484,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, @@ -124514,32 +129501,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, - [57006] = 3, + [57663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(6055), 1, + sym__special_character, + STATE(1317), 1, + aux_sym__literal_repeat1, + ACTIONS(276), 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(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_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, @@ -124548,11 +129539,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, @@ -124564,32 +129554,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, - [57059] = 3, + [57721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1316), 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), 40, + ACTIONS(1314), 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, @@ -124598,6 +129588,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, @@ -124614,37 +129605,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, - [57112] = 6, + [57775] = 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(1263), 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(1261), 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, @@ -124653,8 +129639,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, @@ -124669,30 +129657,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57171] = 3, + [57829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1304), 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), 40, + ACTIONS(1302), 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, @@ -124701,6 +129690,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, @@ -124717,32 +129707,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, - [57224] = 3, + [57883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(6057), 1, + sym__special_character, + STATE(1325), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1370), 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, @@ -124754,9 +129748,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, @@ -124769,30 +129761,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57277] = 3, + [57941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1324), 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), 39, + ACTIONS(1322), 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, @@ -124801,6 +129794,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, @@ -124817,32 +129811,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, - [57330] = 3, + [57995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1312), 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), 39, + ACTIONS(1310), 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, @@ -124851,6 +129845,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, @@ -124867,32 +129862,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, - [57383] = 3, + [58049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1308), 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), 39, + ACTIONS(1306), 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, @@ -124901,6 +129896,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, @@ -124917,36 +129913,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, - [57436] = 6, + [58103] = 3, 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, + ACTIONS(1320), 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(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_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, @@ -124958,6 +129950,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, @@ -124972,30 +129965,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57495] = 3, + [58157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1328), 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(1308), 39, + ACTIONS(1326), 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, @@ -125022,30 +130016,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57548] = 3, + [58211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1332), 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(1272), 39, + ACTIONS(1330), 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, @@ -125054,6 +130049,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,22 +130066,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, - [57601] = 5, + [58265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(1316), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(1314), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125111,7 +130103,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, @@ -125124,30 +130118,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57658] = 3, + [58319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1336), 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(1284), 40, + ACTIONS(1334), 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, @@ -125174,23 +130169,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57711] = 6, + [58373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(6016), 1, aux_sym_concatenation_token1, - ACTIONS(5502), 1, + ACTIONS(6060), 1, sym__concat, - STATE(1353), 1, + STATE(1310), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 6, + ACTIONS(5594), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(5592), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125201,6 +130195,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, @@ -125210,7 +130206,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, @@ -125226,35 +130221,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, - [57770] = 6, + [58433] = 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(1364), 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(5387), 38, + ACTIONS(1362), 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, @@ -125263,8 +130256,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, @@ -125278,23 +130273,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, - [57829] = 6, + [58487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(6016), 1, aux_sym_concatenation_token1, - ACTIONS(5555), 1, + ACTIONS(6060), 1, sym__concat, - STATE(1338), 1, + STATE(1314), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(5602), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 38, + ACTIONS(5600), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125333,34 +130328,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [57888] = 6, + [58547] = 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(5136), 6, + ACTIONS(1360), 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), 36, + ACTIONS(1358), 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_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125372,6 +130364,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, @@ -125386,34 +130379,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57947] = 6, + [58601] = 3, 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(1356), 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), 38, + ACTIONS(1354), 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, @@ -125422,8 +130412,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, @@ -125437,32 +130429,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, - [58006] = 3, + [58655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1344), 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), 40, + ACTIONS(1342), 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, @@ -125471,6 +130463,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 +130480,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, - [58059] = 3, + [58709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1263), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125521,6 +130514,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, @@ -125537,32 +130531,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, - [58112] = 3, + [58763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1340), 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(1338), 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, @@ -125589,16 +130583,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58165] = 3, + [58817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(1340), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 40, + ACTIONS(1338), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125610,8 +130605,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -125625,6 +130619,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, @@ -125639,30 +130634,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58218] = 3, + [58871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1346), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125671,6 +130667,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, @@ -125687,18 +130684,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, - [58271] = 3, + [58925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(1348), 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(5397), 40, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125710,8 +130708,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, @@ -125725,6 +130721,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, @@ -125739,30 +130736,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58324] = 3, + [58979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1352), 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), 39, + ACTIONS(1350), 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, @@ -125771,6 +130769,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,23 +130786,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, - [58377] = 5, + [59033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 6, + ACTIONS(1348), 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(4368), 37, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125828,7 +130823,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, @@ -125841,16 +130838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58434] = 3, + [59087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1368), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1366), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125873,6 +130871,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, @@ -125889,32 +130888,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, - [58487] = 3, + [59141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1368), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1366), 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, @@ -125923,6 +130922,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, @@ -125939,22 +130939,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, - [58540] = 5, + [59195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, + sym__concat, + STATE(1298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 38, + ACTIONS(5722), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -125964,7 +130965,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, @@ -125981,6 +130981,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, @@ -125993,21 +130994,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58597] = 6, + [59255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5980), 1, aux_sym_concatenation_token1, - ACTIONS(5565), 1, + ACTIONS(6062), 1, sym__concat, - STATE(1345), 1, + STATE(1301), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(5728), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(5726), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126029,6 +131031,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,19 +131047,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, - [58656] = 3, + [59315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(1316), 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(1314), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126067,7 +131069,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, @@ -126082,6 +131084,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, @@ -126096,30 +131099,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58709] = 3, + [59369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1263), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1261), 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, @@ -126146,23 +131150,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58762] = 6, + [59423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, + ACTIONS(1304), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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(5502), 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, + [59477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, + [59531] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6016), 1, + aux_sym_concatenation_token1, + ACTIONS(6060), 1, sym__concat, - STATE(1353), 1, + STATE(1310), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 6, + ACTIONS(5724), 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(5722), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126173,6 +131278,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, @@ -126182,7 +131289,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, @@ -126198,17 +131304,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, - [58821] = 3, + [59591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(6016), 1, + aux_sym_concatenation_token1, + ACTIONS(6060), 1, sym__concat, + STATE(1314), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(5726), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126218,7 +131331,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, @@ -126233,7 +131345,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, @@ -126249,16 +131360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58874] = 3, + [59651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1328), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1326), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126299,34 +131411,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58927] = 6, + [59705] = 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(2162), 6, + ACTIONS(1312), 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(2160), 36, + ACTIONS(1310), 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, @@ -126338,6 +131447,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, @@ -126352,34 +131462,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58986] = 6, + [59759] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1141), 1, + sym__special_character, + ACTIONS(5994), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(5996), 1, + anon_sym_LPAREN, + ACTIONS(5998), 1, + anon_sym_LBRACE, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6064), 1, + sym_word, + ACTIONS(6068), 1, + sym_test_operator, + STATE(2656), 1, + aux_sym__literal_repeat1, + STATE(3425), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6066), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(7232), 2, + sym_compound_statement, + sym_subshell, + STATE(2784), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(3065), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(2655), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [59867] = 3, 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, + ACTIONS(1344), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1342), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126388,8 +131573,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, @@ -126403,23 +131590,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, - [59045] = 6, + [59921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5980), 1, aux_sym_concatenation_token1, - ACTIONS(5549), 1, + ACTIONS(6062), 1, sym__concat, - STATE(1297), 1, + STATE(1301), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(2178), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(2176), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126458,22 +131645,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59104] = 3, + [59981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, + sym__concat, + STATE(1301), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 40, + ACTIONS(2180), 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, @@ -126482,7 +131674,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, @@ -126508,21 +131699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59157] = 6, + [60041] = 3, 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(1344), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 38, + ACTIONS(1342), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126532,6 +131719,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, @@ -126547,6 +131735,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, @@ -126561,66 +131750,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59216] = 3, - ACTIONS(3), 1, + [60095] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(6070), 1, + sym_word, + ACTIONS(6072), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6074), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6076), 1, + anon_sym_DOLLAR, + ACTIONS(6078), 1, + sym__special_character, + ACTIONS(6080), 1, + anon_sym_DQUOTE, + ACTIONS(6084), 1, + aux_sym_number_token1, + ACTIONS(6086), 1, + aux_sym_number_token2, + ACTIONS(6088), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6092), 1, + anon_sym_BQUOTE, + ACTIONS(6094), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6098), 1, sym_test_operator, + ACTIONS(6100), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5952), 1, + aux_sym__literal_repeat1, + STATE(6078), 1, + sym_concatenation, + ACTIONS(6082), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6096), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2643), 7, 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(5815), 9, + 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(2645), 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, + [60187] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6072), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6074), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(6076), 1, anon_sym_DOLLAR, + ACTIONS(6078), 1, sym__special_character, + ACTIONS(6080), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6084), 1, aux_sym_number_token1, + ACTIONS(6086), 1, aux_sym_number_token2, + ACTIONS(6088), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6090), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6092), 1, anon_sym_BQUOTE, + ACTIONS(6094), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6100), 1, + sym__brace_start, + ACTIONS(6102), 1, + sym_word, + ACTIONS(6106), 1, + sym_test_operator, + STATE(5927), 1, + aux_sym__literal_repeat1, + STATE(6082), 1, + sym_concatenation, + ACTIONS(6096), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [59269] = 3, + ACTIONS(6104), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2548), 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(5760), 9, + 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(2550), 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, + [60279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 5, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 40, + ACTIONS(1271), 41, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126632,8 +131911,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, @@ -126661,21 +131941,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59322] = 3, + [60333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5066), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(5064), 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, @@ -126685,6 +131966,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, @@ -126693,9 +131975,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, @@ -126709,23 +131991,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, - [59375] = 6, + [60387] = 3, 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(1336), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 38, + ACTIONS(1334), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126748,8 +132025,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, @@ -126764,23 +132043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59434] = 6, + [60441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5500), 1, - aux_sym_concatenation_token1, - ACTIONS(5575), 1, - sym__concat, - STATE(1389), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 6, + ACTIONS(1340), 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(1227), 36, + ACTIONS(1338), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126790,7 +132063,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, @@ -126803,6 +132079,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, @@ -126817,22 +132094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59493] = 6, + [60495] = 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(1316), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1314), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126842,8 +132114,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 +132127,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 +132143,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, + [60549] = 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(1263), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126895,8 +132165,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, @@ -126906,9 +132178,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, @@ -126922,24 +132194,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, - [59611] = 6, + [60603] = 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(1364), 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(1362), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -126949,7 +132216,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, @@ -126962,6 +132232,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,34 +132247,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59670] = 6, + [60657] = 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(4313), 6, + ACTIONS(1320), 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(4311), 36, + ACTIONS(1318), 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, @@ -127015,6 +132283,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, @@ -127029,17 +132298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59729] = 3, + [60711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1304), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1302), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127049,6 +132318,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, @@ -127079,17 +132349,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59782] = 3, + [60765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, sym__concat, + STATE(1298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1271), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127111,9 +132386,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, @@ -127127,23 +132402,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, - [59835] = 5, + [60825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 6, + ACTIONS(1368), 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(4280), 37, + ACTIONS(1366), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127155,6 +132425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -127168,7 +132439,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, @@ -127181,16 +132454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59892] = 3, + [60879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1328), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 40, + ACTIONS(1326), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127201,7 +132475,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, @@ -127217,59 +132490,7 @@ 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, - [59945] = 6, - 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(5266), 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, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_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, @@ -127284,23 +132505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60004] = 6, + [60933] = 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(1328), 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(1326), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127310,7 +132525,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, @@ -127320,9 +132538,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, @@ -127336,31 +132554,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, - [60063] = 3, + [60987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1332), 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), 39, + ACTIONS(1330), 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, @@ -127387,30 +132607,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60116] = 3, + [61041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1316), 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), 39, + ACTIONS(1314), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127419,6 +132640,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, @@ -127435,23 +132657,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, - [60169] = 5, + [61095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 6, + ACTIONS(1263), 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(4307), 37, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127463,6 +132680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -127476,57 +132694,7 @@ 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, - [60226] = 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(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, anon_sym_DQUOTE, @@ -127540,24 +132708,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, - [60285] = 6, + [61149] = 3, 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, + ACTIONS(1344), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 37, + ACTIONS(1342), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127567,8 +132729,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, @@ -127580,6 +132744,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, @@ -127595,31 +132760,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60344] = 3, + [61203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1324), 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), 40, + ACTIONS(1322), 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 +132796,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,27 +132811,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60397] = 6, + [61257] = 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(2158), 5, + ACTIONS(1336), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 37, + ACTIONS(1334), 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, @@ -127673,6 +132835,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, @@ -127684,6 +132847,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, @@ -127698,34 +132862,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60456] = 6, + [61311] = 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(1225), 6, + ACTIONS(1304), 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(1223), 36, + ACTIONS(1302), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127734,8 +132895,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, @@ -127749,36 +132912,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, - [60515] = 6, + [61365] = 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(1364), 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(1227), 36, + ACTIONS(1362), 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, @@ -127787,8 +132946,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, @@ -127802,36 +132963,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, - [60574] = 6, + [61419] = 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(4282), 5, + ACTIONS(1324), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(1322), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127843,6 +133000,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, @@ -127857,22 +133015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60633] = 6, + [61473] = 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(4439), 5, + ACTIONS(1336), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 37, + ACTIONS(1334), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127882,8 +133035,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, @@ -127893,9 +133048,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, @@ -127909,24 +133064,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, - [60692] = 6, + [61527] = 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(1340), 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(1207), 36, + ACTIONS(1338), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -127936,7 +133086,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, @@ -127948,6 +133101,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, @@ -127963,34 +133117,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60751] = 6, + [61581] = 3, 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, + ACTIONS(6110), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(6108), 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_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, @@ -127999,6 +133151,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, @@ -128014,24 +133167,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, - [60810] = 6, + [61635] = 3, 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, + ACTIONS(1364), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(1362), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128041,8 +133188,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, @@ -128054,6 +133203,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, @@ -128069,23 +133219,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60869] = 6, + [61689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(6016), 1, aux_sym_concatenation_token1, - ACTIONS(5596), 1, + ACTIONS(6060), 1, sym__concat, - STATE(1378), 1, + STATE(1310), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, + ACTIONS(1273), 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(1271), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128096,6 +133245,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, @@ -128122,26 +133273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60928] = 6, + [61749] = 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(4947), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(4945), 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, @@ -128151,6 +133298,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, @@ -128159,6 +133307,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, @@ -128175,30 +133324,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60987] = 3, + [61803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1358), 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, @@ -128225,34 +133375,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61040] = 6, + [61857] = 3, 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(1356), 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(1207), 36, + ACTIONS(1354), 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, @@ -128264,6 +133411,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, @@ -128278,27 +133426,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61099] = 6, + [61911] = 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(5266), 5, + ACTIONS(1344), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(1342), 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, @@ -128306,6 +133450,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, @@ -128317,6 +133462,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, @@ -128331,21 +133477,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61158] = 3, + [61965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(5058), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(5056), 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, @@ -128355,6 +133502,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, @@ -128366,7 +133514,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, @@ -128381,30 +133528,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61211] = 3, + [62019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1312), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1310), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128431,83 +133579,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, + [62073] = 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(5270), 5, + ACTIONS(1340), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(1338), 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, @@ -128515,6 +133603,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, @@ -128526,6 +133615,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, @@ -128540,20 +133630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61388] = 5, + [62127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1308), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 38, + ACTIONS(1306), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128564,8 +133651,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -128579,7 +133666,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, @@ -128592,30 +133681,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61445] = 3, + [62181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1346), 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, @@ -128642,34 +133732,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61498] = 6, + [62235] = 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(1352), 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(1213), 36, + ACTIONS(1350), 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, @@ -128681,6 +133768,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,66 +133783,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61557] = 21, + [62289] = 3, 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, + ACTIONS(1348), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5647), 1, + sym__bare_dollar, 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, + ACTIONS(1346), 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, @@ -128762,21 +133815,36 @@ 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, - [61646] = 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, + sym_word, + [62343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(1348), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128802,7 +133870,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, @@ -128815,17 +133885,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61703] = 3, + [62397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(5932), 1, + aux_sym_concatenation_token1, + ACTIONS(6010), 1, sym__concat, - sym_variable_name, + STATE(1276), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(5902), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128835,6 +133909,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, @@ -128847,9 +133922,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 +133938,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, - [61756] = 6, + [62457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5496), 1, + ACTIONS(5932), 1, aux_sym_concatenation_token1, - ACTIONS(5649), 1, + ACTIONS(6010), 1, sym__concat, - STATE(1462), 1, + STATE(1278), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(5908), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(5906), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128889,6 +133963,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, @@ -128918,17 +133993,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61815] = 3, + [62517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, sym__concat, + STATE(1298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(4941), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -128953,7 +134033,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, @@ -128968,34 +134047,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61868] = 5, + [62577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 6, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, + sym__concat, + STATE(1301), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 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(4945), 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, @@ -129008,6 +134088,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, @@ -129020,17 +134101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61925] = 3, + [62637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1352), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1350), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129040,6 +134121,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, @@ -129052,6 +134134,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, @@ -129068,36 +134151,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, - [61978] = 5, + [62691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5651), 1, - sym__special_character, - STATE(1397), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(1348), 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(1316), 37, + ACTIONS(1346), 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, @@ -129109,7 +134188,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, @@ -129122,16 +134203,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62035] = 3, + [62745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(6112), 1, sym__concat, + STATE(1428), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 40, + ACTIONS(1281), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129154,10 +134240,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, @@ -129171,18 +134255,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, - [62088] = 3, + [62805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, - sym_file_descriptor, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, sym__concat, + STATE(1298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(5052), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129207,7 +134297,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 +134311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62141] = 3, + [62865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1368), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 40, + ACTIONS(1366), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129254,7 +134344,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 +134360,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, - [62194] = 6, + [62919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 1, + ACTIONS(5980), 1, aux_sym_concatenation_token1, - ACTIONS(5654), 1, + ACTIONS(6062), 1, sym__concat, - STATE(1421), 1, + STATE(1301), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(5058), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 38, + ACTIONS(5056), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129296,7 +134387,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, @@ -129309,6 +134399,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, @@ -129325,21 +134416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62253] = 6, + [62979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5553), 1, + ACTIONS(5946), 1, aux_sym_concatenation_token1, - ACTIONS(5555), 1, + ACTIONS(6114), 1, sym__concat, - STATE(1326), 1, + STATE(1428), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(1277), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1275), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129349,6 +134440,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, @@ -129378,30 +134470,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62312] = 3, + [63039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5062), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(5060), 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, @@ -129413,7 +134510,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, + [63099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(1309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5066), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5064), 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, @@ -129428,16 +134578,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62365] = 3, + [63159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 40, + ACTIONS(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129478,30 +134629,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62418] = 3, + [63213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5078), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(5076), 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, @@ -129513,7 +134669,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, @@ -129528,30 +134683,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62471] = 3, + [63273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4855), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(4853), 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, @@ -129560,9 +134720,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, @@ -129576,18 +134736,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, - [62524] = 3, + [63333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1352), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 40, + ACTIONS(1350), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129610,7 +134770,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, @@ -129627,17 +134786,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, - [62577] = 3, + [63387] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(6116), 1, + sym__special_character, + STATE(1325), 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(4311), 40, + ACTIONS(237), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129648,9 +134812,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, @@ -129665,7 +134829,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, @@ -129678,16 +134841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62630] = 3, + [63445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129710,7 +134874,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, @@ -129727,35 +134890,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, - [62683] = 5, + [63499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5656), 1, - sym__special_character, - STATE(1410), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1320), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1318), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129764,9 +134925,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, @@ -129778,22 +134942,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, - [62740] = 5, + [63553] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6118), 1, + anon_sym_DQUOTE, + ACTIONS(6120), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6122), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6126), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2864), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5760), 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(5762), 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, + [63619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, + sym__concat, + STATE(1298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(5902), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129803,7 +135025,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, @@ -129820,6 +135041,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, @@ -129832,34 +135054,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62797] = 5, + [63679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4370), 5, + ACTIONS(5980), 1, + aux_sym_concatenation_token1, + ACTIONS(6062), 1, + sym__concat, + STATE(1301), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4368), 38, + ACTIONS(5906), 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, @@ -129872,6 +135095,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, @@ -129884,16 +135108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62854] = 3, + [63739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(6128), 1, + aux_sym_concatenation_token1, + ACTIONS(6131), 1, sym__concat, + STATE(1428), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 40, + ACTIONS(1261), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -129918,7 +135147,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, @@ -129934,30 +135162,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62907] = 3, + [63799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(4941), 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, @@ -129969,7 +135202,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, @@ -129984,30 +135216,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62960] = 3, + [63859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(1309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(4945), 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, @@ -130016,9 +135253,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, @@ -130032,36 +135269,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, - [63013] = 6, + [63919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(5576), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(5578), 1, sym__concat, - STATE(1418), 1, + STATE(1308), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5054), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(5052), 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, @@ -130087,30 +135324,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63072] = 3, + [63979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, - sym_variable_name, + STATE(1309), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(5056), 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, @@ -130119,9 +135361,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, @@ -130135,36 +135377,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, - [63125] = 6, + [64039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(5576), 1, aux_sym_concatenation_token1, - ACTIONS(5659), 1, + ACTIONS(5578), 1, sym__concat, - STATE(1430), 1, + STATE(1308), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1273), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1271), 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, @@ -130190,30 +135432,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63184] = 3, + [64099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1328), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1326), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130222,6 +135465,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, @@ -130238,36 +135482,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, - [63237] = 6, + [64153] = 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(1332), 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), 37, + ACTIONS(1330), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130279,6 +135519,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, @@ -130293,21 +135534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63296] = 6, + [64207] = 3, 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, + ACTIONS(1312), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1310), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130330,8 +135567,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, @@ -130346,34 +135585,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63355] = 6, + [64261] = 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(2162), 5, + ACTIONS(1336), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 37, + ACTIONS(1334), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130385,6 +135621,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, @@ -130399,20 +135636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63414] = 5, + [64315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1304), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1302), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130435,10 +135669,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,35 +135685,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, - [63471] = 5, + [64369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1308), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1306), 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, @@ -130490,7 +135723,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, @@ -130503,34 +135738,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63528] = 5, + [64423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - sym__special_character, - STATE(1410), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1364), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 38, + ACTIONS(1362), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130539,9 +135771,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, @@ -130553,32 +135788,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, - [63585] = 3, + [64477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 40, + ACTIONS(1358), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130587,6 +135822,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,36 +135839,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, - [63638] = 5, + [64531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - sym__special_character, - STATE(1410), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(1356), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 38, + ACTIONS(1354), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130641,9 +135873,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,32 +135890,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, - [63695] = 3, + [64585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1306), 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, @@ -130707,66 +135942,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63748] = 21, + [64639] = 3, 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, + ACTIONS(1336), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, 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, + ACTIONS(1334), 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, @@ -130774,23 +135973,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_LT_LT_LT, - [63837] = 6, + 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, + [64692] = 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(1304), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1302), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130800,8 +136011,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, @@ -130811,9 +136024,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, @@ -130827,18 +136040,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, - [63896] = 3, + [64745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1240), 6, + ACTIONS(6134), 1, + sym__special_character, + STATE(1492), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 39, + ACTIONS(5052), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130849,7 +136067,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, @@ -130865,7 +136082,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, @@ -130878,30 +136094,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63949] = 3, + [64802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(6134), 1, + sym__special_character, + STATE(1492), 1, + aux_sym__literal_repeat1, + ACTIONS(5062), 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), 40, + ACTIONS(5060), 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, @@ -130910,11 +136130,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, @@ -130926,18 +136145,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, - [64002] = 3, + [64859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1368), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1366), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130960,7 +136178,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, @@ -130977,17 +136194,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, - [64055] = 3, + [64912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, sym__concat, + STATE(1548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(2176), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -130997,10 +136221,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131013,7 +136235,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, @@ -131028,16 +136249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64108] = 3, + [64971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131078,34 +136299,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64161] = 5, + [65024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym__special_character, - STATE(1424), 1, - aux_sym__literal_repeat1, - ACTIONS(4519), 5, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, + sym__concat, + STATE(1546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 38, + ACTIONS(4941), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131118,6 +136339,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, @@ -131130,23 +136352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64218] = 6, + [65083] = 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(5186), 6, + ACTIONS(1352), 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(5184), 36, + ACTIONS(1350), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131156,7 +136371,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, @@ -131166,8 +136384,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, @@ -131181,33 +136401,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, - [64277] = 3, + [65136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, + sym__concat, + STATE(1548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 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(4945), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131233,17 +136455,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64330] = 3, + [65195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131253,6 +136474,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, @@ -131283,17 +136505,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64383] = 3, + [65248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(1512), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 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, + [65307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1314), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131333,17 +136608,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64436] = 3, + [65360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(6144), 1, + aux_sym_concatenation_token1, + ACTIONS(6146), 1, + sym__concat, + STATE(1459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [65419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1261), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131383,16 +136711,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64489] = 3, + [65472] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6144), 1, + aux_sym_concatenation_token1, + ACTIONS(6148), 1, + sym__concat, + STATE(1466), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [65531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1324), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 40, + ACTIONS(1322), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131433,22 +136814,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64542] = 6, + [65584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(6150), 1, aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(6152), 1, sym__concat, - STATE(1444), 1, + STATE(1540), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1277), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1275), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131458,7 +136840,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, @@ -131469,6 +136850,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 +136866,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, - [64601] = 6, + [65643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, + ACTIONS(6144), 1, aux_sym_concatenation_token1, - ACTIONS(5683), 1, + ACTIONS(6154), 1, sym__concat, - STATE(1461), 1, + STATE(1466), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1277), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1275), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131511,7 +136893,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, @@ -131539,23 +136920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64660] = 6, + [65702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(6156), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 1, + ACTIONS(6158), 1, sym__concat, - STATE(1375), 1, + STATE(1496), 1, aux_sym_concatenation_repeat1, - ACTIONS(5190), 6, + ACTIONS(1283), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 36, + ACTIONS(1281), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131565,7 +136944,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, @@ -131590,25 +136972,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, - [64719] = 6, + [65761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(6160), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 1, + ACTIONS(6162), 1, sym__concat, - STATE(1372), 1, + STATE(1524), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 6, + ACTIONS(5724), 5, 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(5722), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131618,6 +136998,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, @@ -131645,23 +137026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64778] = 6, + [65820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5585), 1, + ACTIONS(6160), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 1, + ACTIONS(6162), 1, sym__concat, - STATE(1375), 1, + STATE(1526), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 6, + ACTIONS(5728), 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(5726), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131671,6 +137051,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, @@ -131698,20 +137079,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64837] = 5, + [65879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1423), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(6164), 1, + aux_sym_concatenation_token1, + ACTIONS(6167), 1, + sym__concat, + STATE(1466), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 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(1261), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131721,10 +137105,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 +137115,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 +137130,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, - [64894] = 3, + [65938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, + STATE(1526), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5602), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(5600), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131770,9 +137157,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, @@ -131782,10 +137168,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,23 +137183,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, - [64947] = 6, + [65997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1418), 1, + STATE(1512), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(5728), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(5726), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131853,16 +137238,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65006] = 3, + [66056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(6170), 1, + aux_sym_concatenation_token1, + ACTIONS(6172), 1, sym__concat, + STATE(1585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(5902), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131872,7 +137262,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, @@ -131885,9 +137274,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, @@ -131901,19 +137290,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, - [65059] = 3, + [66115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1328), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1326), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -131953,30 +137341,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65112] = 3, + [66168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1273), 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(1271), 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, @@ -131988,7 +137377,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, @@ -132003,22 +137391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65165] = 6, + [66221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5685), 1, - sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1344), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1342), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132028,8 +137411,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, @@ -132039,8 +137423,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, @@ -132054,24 +137440,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, - [65224] = 3, + [66274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(5058), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(5056), 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, @@ -132080,6 +137465,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, @@ -132091,7 +137477,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, @@ -132106,22 +137491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65277] = 6, + [66327] = 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(1340), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 37, + ACTIONS(1338), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132131,8 +137511,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, @@ -132145,6 +137526,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,34 +137541,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65336] = 5, + [66380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(6174), 1, sym__special_character, - STATE(1423), 1, + STATE(1541), 1, aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(4943), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 38, + ACTIONS(4941), 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, @@ -132211,16 +137593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65393] = 3, + [66437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1368), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1366), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132230,7 +137613,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, @@ -132243,6 +137625,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, @@ -132259,18 +137642,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, - [65446] = 3, + [66490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + ACTIONS(6156), 1, + aux_sym_concatenation_token1, + ACTIONS(6176), 1, sym__concat, + STATE(1496), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 40, + ACTIONS(1275), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132293,10 +137680,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, @@ -132311,16 +137696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65499] = 3, + [66549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1316), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 40, + ACTIONS(1314), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132330,7 +137716,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, @@ -132361,126 +137746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65552] = 6, - 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, - sym_file_descriptor, - sym_variable_name, - 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, - 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, - [65611] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5697), 1, - aux_sym_concatenation_token1, - ACTIONS(5700), 1, - sym__concat, - STATE(1462), 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_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, - [65670] = 5, + [66602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, + ACTIONS(6174), 1, sym__special_character, - STATE(1424), 1, + STATE(1541), 1, aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(5054), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 38, + ACTIONS(5052), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132519,19 +137798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65727] = 5, + [66659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, - sym__special_character, - STATE(1474), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(6178), 1, + aux_sym_concatenation_token1, + ACTIONS(6180), 1, + sym__concat, + STATE(1553), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 38, + ACTIONS(5722), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132541,10 +137823,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132557,6 +137837,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, @@ -132570,16 +137851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65783] = 3, + [66718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(6178), 1, + aux_sym_concatenation_token1, + ACTIONS(6180), 1, + sym__concat, + STATE(1644), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(5726), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132589,10 +137876,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132619,16 +137904,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65835] = 3, + [66777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1362), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132638,7 +137924,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, @@ -132651,6 +137936,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, @@ -132668,16 +137954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65887] = 3, + [66830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1263), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1261), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132687,7 +137974,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, @@ -132716,17 +138002,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, - [65939] = 3, + [66883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1328), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 39, + ACTIONS(1326), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132736,7 +138024,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, @@ -132751,6 +138038,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, @@ -132766,128 +138054,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65991] = 8, + [66936] = 3, 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, - 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, - [66115] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 1, - sym__special_character, - STATE(1514), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1344), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(1342), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132911,7 +138088,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, @@ -132925,29 +138104,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66171] = 3, + [66989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(6182), 1, + sym__special_character, + STATE(1568), 1, + aux_sym__literal_repeat1, + ACTIONS(5062), 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(1260), 37, + ACTIONS(5060), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132959,9 +138143,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, @@ -132974,16 +138156,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66223] = 3, + [67046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1304), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1302), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -132993,7 +138176,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, @@ -133006,6 +138188,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, @@ -133023,19 +138206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66275] = 5, + [67099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5717), 1, - sym__special_character, - STATE(1474), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1336), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1334), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133045,7 +138226,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, @@ -133060,7 +138240,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, @@ -133074,16 +138256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66331] = 3, + [67152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1324), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1322), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133093,7 +138276,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, @@ -133106,6 +138288,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, @@ -133123,16 +138306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66383] = 3, + [67205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1340), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1338), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133142,7 +138326,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, @@ -133171,18 +138354,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, - [66435] = 3, + [67258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(6184), 1, + aux_sym_concatenation_token1, + ACTIONS(6186), 1, sym__concat, - sym_variable_name, + STATE(1510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1281), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133192,8 +138380,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, @@ -133205,7 +138394,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,29 +138409,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66487] = 3, + [67317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(6188), 1, + sym__special_character, + STATE(1492), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1312), 37, + ACTIONS(1370), 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_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133255,9 +138448,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, @@ -133270,16 +138461,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66539] = 3, + [67374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(1360), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 39, + ACTIONS(1358), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133302,9 +138493,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, @@ -133318,21 +138509,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, - [66591] = 5, + [67427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1356), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 37, + ACTIONS(1354), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133342,6 +138530,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, @@ -133354,10 +138543,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, @@ -133369,17 +138559,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, - [66647] = 3, + [67480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1362), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133389,7 +138581,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, @@ -133418,17 +138609,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, - [66699] = 3, + [67533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(6191), 1, + aux_sym_concatenation_token1, + ACTIONS(6194), 1, sym__concat, + STATE(1496), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133453,7 +138650,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, @@ -133468,30 +138664,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66751] = 3, + [67592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(1368), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 39, + ACTIONS(1366), 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, @@ -133500,9 +138696,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, @@ -133516,34 +138712,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, - [66803] = 5, + [67645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5722), 1, - sym__special_character, - STATE(1484), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1271), 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, @@ -133556,6 +138751,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, @@ -133568,17 +138764,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66859] = 3, + [67698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(2180), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133588,7 +138790,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, @@ -133599,9 +138800,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, @@ -133615,19 +138816,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, - [66911] = 3, + [67757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, sym__concat, + STATE(1548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(2180), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133637,8 +138842,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133648,9 +138853,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, @@ -133664,19 +138869,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, - [66963] = 3, + [67816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, sym__concat, + STATE(1546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(5052), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133686,8 +138895,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133697,9 +138906,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,23 +138922,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, - [67015] = 6, + [67875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, + ACTIONS(6136), 1, aux_sym_concatenation_token1, - ACTIONS(5728), 1, + ACTIONS(6138), 1, sym__concat, - STATE(1488), 1, + STATE(1548), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(5058), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(5056), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133739,8 +138948,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133750,6 +138959,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, @@ -133765,32 +138975,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, - [67073] = 3, + [67934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(6182), 1, + sym__special_character, + STATE(1568), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(4941), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133799,11 +139012,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, @@ -133816,17 +139028,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67125] = 3, + [67991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, sym__concat, + STATE(1546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(5722), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133836,8 +139053,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133850,7 +139067,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, @@ -133865,33 +139081,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67177] = 5, + [68050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 1, + ACTIONS(6182), 1, sym__special_character, - STATE(1484), 1, + STATE(1568), 1, aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(5054), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 38, + ACTIONS(5052), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133916,17 +139133,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67233] = 3, + [68107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, sym__concat, + STATE(1548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(5726), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133936,8 +139158,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133947,9 +139169,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, @@ -133963,18 +139185,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, - [67285] = 3, + [68166] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(6184), 1, + aux_sym_concatenation_token1, + ACTIONS(6199), 1, sym__concat, + STATE(1510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(1275), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -133984,7 +139210,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, @@ -133999,7 +139224,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, @@ -134013,18 +139237,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, - [67337] = 3, + [68225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1509), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134048,7 +139278,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, @@ -134063,17 +139292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67389] = 3, + [68284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6201), 1, sym__concat, + STATE(1517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1281), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134097,7 +139331,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, @@ -134112,21 +139345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67441] = 6, + [68343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(6203), 1, aux_sym_concatenation_token1, - ACTIONS(5735), 1, + ACTIONS(6206), 1, sym__concat, - STATE(1488), 1, + STATE(1510), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134136,8 +139369,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, @@ -134164,16 +139398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67499] = 3, + [68402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134195,6 +139430,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, @@ -134211,18 +139447,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, - [67551] = 3, + [68455] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6209), 1, + sym__concat, + STATE(1517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [68514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1352), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1350), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134244,6 +139533,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, @@ -134260,20 +139550,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, + [68567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1312), 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(1310), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134284,6 +139572,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,17 +139601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67655] = 3, + [68620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1304), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1302), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134331,8 +139621,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, @@ -134342,7 +139633,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, @@ -134359,21 +139649,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, - [67707] = 5, + [68673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(1348), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134398,7 +139686,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 +139701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67763] = 5, + [68726] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(6211), 1, + aux_sym_concatenation_token1, + ACTIONS(6214), 1, + sym__concat, + STATE(1517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 37, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134434,9 +139726,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, @@ -134450,6 +139741,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 +139754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67819] = 3, + [68785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1306), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134493,6 +139786,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 +139803,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, - [67871] = 5, + [68838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1312), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(1310), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134534,6 +139823,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, @@ -134546,10 +139836,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, @@ -134561,19 +139852,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, - [67927] = 3, + [68891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, + ACTIONS(1324), 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(1322), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134584,6 +139875,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, @@ -134593,7 +139886,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, @@ -134610,17 +139902,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, - [67979] = 3, + [68944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1308), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1306), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134630,6 +139923,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, @@ -134660,17 +139954,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68031] = 3, + [68997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134691,10 +139990,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 +140005,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, - [68083] = 5, + [69056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(1320), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 37, + ACTIONS(1318), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134732,6 +140026,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, @@ -134747,7 +140042,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, @@ -134760,16 +140057,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68139] = 3, + [69109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6217), 1, sym__concat, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1281), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134779,9 +140082,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 +140095,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 +140110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68191] = 6, + [69168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, + ACTIONS(6150), 1, aux_sym_concatenation_token1, - ACTIONS(5742), 1, + ACTIONS(6197), 1, sym__concat, - STATE(1515), 1, + STATE(1629), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(5054), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(5052), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134834,8 +140137,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, @@ -134845,6 +140146,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, @@ -134861,16 +140163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68249] = 3, + [69227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6219), 1, sym__concat, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1275), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134880,10 +140188,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 +140201,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 +140214,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, - [68301] = 3, + [69286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 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(5056), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134929,10 +140242,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, @@ -134942,9 +140252,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, @@ -134959,21 +140269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68353] = 6, + [69345] = 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(1348), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -134997,6 +140303,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, @@ -135010,21 +140317,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, - [68411] = 5, + [69398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 1, + ACTIONS(6221), 1, sym__special_character, - STATE(1514), 1, + STATE(1562), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5724), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(5722), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135034,6 +140342,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, @@ -135046,6 +140355,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, @@ -135060,23 +140370,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, - [68467] = 6, + [69455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, + ACTIONS(6223), 1, aux_sym_concatenation_token1, - ACTIONS(5752), 1, + ACTIONS(6226), 1, sym__concat, - STATE(1515), 1, + STATE(1530), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1263), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135086,9 +140396,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, @@ -135113,17 +140422,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, - [68525] = 3, + [69514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1629), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 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(5722), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135134,8 +140451,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, @@ -135145,9 +140460,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, @@ -135161,18 +140476,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, - [68577] = 3, + [69573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1352), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1350), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135212,17 +140527,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68629] = 3, + [69626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(5726), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135232,7 +140553,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, @@ -135243,9 +140563,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 +140579,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, - [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, + [69685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(2176), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135355,7 +140606,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, @@ -135366,9 +140616,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, @@ -135382,20 +140632,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, - [68835] = 3, + [69744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1348), 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(1308), 37, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135406,6 +140654,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 +140665,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 +140681,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, - [68887] = 6, + [69797] = 3, 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(1332), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1330), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135457,6 +140702,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, @@ -135469,8 +140715,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 +140733,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68945] = 6, + [69850] = 5, 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(1225), 4, + ACTIONS(6229), 1, + sym__special_character, + STATE(1573), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(5722), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135509,6 +140756,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, @@ -135524,7 +140772,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, @@ -135536,22 +140783,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, - [69003] = 6, + [69907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5759), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1513), 1, + STATE(1509), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(4943), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(4941), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135561,9 +140810,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, @@ -135573,6 +140821,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, @@ -135589,16 +140838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69061] = 3, + [69966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1312), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 39, + ACTIONS(1310), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135620,7 +140870,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, @@ -135637,17 +140886,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, - [69113] = 3, + [70019] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(6231), 1, + aux_sym_concatenation_token1, + ACTIONS(6234), 1, sym__concat, + STATE(1540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 39, + ACTIONS(1261), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135658,8 +140915,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, @@ -135672,7 +140927,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, @@ -135687,29 +140941,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69165] = 3, + [70078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, + ACTIONS(6237), 1, + sym__special_character, + STATE(1541), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1213), 37, + ACTIONS(1370), 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, @@ -135721,9 +140980,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, @@ -135736,16 +140993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69217] = 3, + [70135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 39, + ACTIONS(1306), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135767,7 +141025,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,30 +141041,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, - [69269] = 3, + [70188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(5066), 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(1272), 37, + ACTIONS(5064), 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, @@ -135819,7 +141079,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, @@ -135834,29 +141093,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69321] = 3, + [70241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(6182), 1, + sym__special_character, + STATE(1568), 1, + aux_sym__literal_repeat1, + ACTIONS(5078), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(5076), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135868,9 +141132,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, @@ -135883,16 +141145,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69373] = 3, + [70298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, sym__concat, + STATE(1546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135903,8 +141171,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135917,7 +141184,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 +141198,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69425] = 3, + [70357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6240), 1, sym__concat, + STATE(1551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(1281), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -135951,10 +141223,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135964,9 +141234,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, @@ -135981,16 +141251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69477] = 3, + [70416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(6221), 1, + sym__special_character, + STATE(1562), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(6242), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136013,11 +141287,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, @@ -136030,16 +141303,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69529] = 3, + [70473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6246), 1, sym__concat, + STATE(1551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 39, + ACTIONS(1275), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136050,8 +141329,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136064,7 +141342,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, @@ -136079,16 +141356,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69581] = 3, + [70532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(6221), 1, + sym__special_character, + STATE(1562), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(6248), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136111,11 +141392,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, @@ -136128,30 +141408,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69633] = 3, + [70589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(6110), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(6108), 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, @@ -136160,9 +141441,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, @@ -136177,16 +141458,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69685] = 3, + [70642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(6252), 1, + aux_sym_concatenation_token1, + ACTIONS(6255), 1, sym__concat, + STATE(1551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 39, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136197,8 +141484,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136211,7 +141497,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, @@ -136226,16 +141511,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69737] = 3, + [70701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(6178), 1, + aux_sym_concatenation_token1, + ACTIONS(6180), 1, sym__concat, + STATE(1553), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136245,10 +141536,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136260,7 +141549,59 @@ 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, + [70760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6178), 1, aux_sym_concatenation_token1, + ACTIONS(6258), 1, + sym__concat, + STATE(1559), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, @@ -136274,22 +141615,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, - [69789] = 3, + [70819] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(6262), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6264), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6266), 1, + anon_sym_DOLLAR, + ACTIONS(6268), 1, + sym__special_character, + ACTIONS(6270), 1, + anon_sym_DQUOTE, + ACTIONS(6272), 1, + aux_sym_number_token1, + ACTIONS(6274), 1, + aux_sym_number_token2, + ACTIONS(6276), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6280), 1, + anon_sym_BQUOTE, + ACTIONS(6282), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6286), 1, + sym_test_operator, + ACTIONS(6288), 1, + sym__brace_start, + STATE(3724), 1, + aux_sym__literal_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6284), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1560), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6260), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3411), 9, + 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(2176), 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, + [70908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1271), 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, @@ -136298,6 +141709,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, @@ -136306,9 +141718,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, @@ -136322,18 +141734,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, - [69841] = 3, + [70961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(6184), 1, + aux_sym_concatenation_token1, + ACTIONS(6290), 1, sym__concat, + STATE(1507), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6008), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(6006), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136357,7 +141773,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, @@ -136373,50 +141788,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69893] = 21, + [71020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(6262), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5765), 1, + ACTIONS(6264), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5767), 1, + ACTIONS(6266), 1, anon_sym_DOLLAR, - ACTIONS(5769), 1, + ACTIONS(6268), 1, sym__special_character, - ACTIONS(5771), 1, + ACTIONS(6270), 1, anon_sym_DQUOTE, - ACTIONS(5773), 1, + ACTIONS(6272), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(6274), 1, aux_sym_number_token2, - ACTIONS(5777), 1, + ACTIONS(6276), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5779), 1, + ACTIONS(6278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5781), 1, + ACTIONS(6280), 1, anon_sym_BQUOTE, - ACTIONS(5783), 1, + ACTIONS(6282), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5787), 1, + ACTIONS(6286), 1, sym_test_operator, - ACTIONS(5789), 1, + ACTIONS(6288), 1, sym__brace_start, - STATE(5595), 1, + STATE(3724), 1, aux_sym__literal_repeat1, - STATE(5612), 1, - sym_concatenation, - ACTIONS(2273), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5785), 2, + ACTIONS(6284), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5761), 3, + STATE(1560), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6260), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5489), 9, + STATE(3411), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -136426,7 +141842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2271), 13, + ACTIONS(2180), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -136440,20 +141856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [69981] = 5, + [71109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(1360), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 37, + ACTIONS(1358), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136478,7 +141891,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, @@ -136491,50 +141906,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70037] = 21, + [71162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, + ACTIONS(6292), 1, + aux_sym_concatenation_token1, + ACTIONS(6295), 1, + sym__concat, + STATE(1559), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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(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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [71221] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6301), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6304), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6307), 1, + anon_sym_DOLLAR, + ACTIONS(6310), 1, + sym__special_character, + ACTIONS(6313), 1, + anon_sym_DQUOTE, + ACTIONS(6316), 1, + aux_sym_number_token1, + ACTIONS(6319), 1, + aux_sym_number_token2, + ACTIONS(6322), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6325), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6328), 1, + anon_sym_BQUOTE, + ACTIONS(6331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6337), 1, sym_test_operator, - STATE(5558), 1, + ACTIONS(6340), 1, + sym__brace_start, + STATE(3724), 1, aux_sym__literal_repeat1, - STATE(5613), 1, - sym_concatenation, - ACTIONS(2277), 2, + ACTIONS(2189), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5785), 2, + ACTIONS(6334), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5791), 3, + STATE(1560), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(6298), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5498), 9, + STATE(3411), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -136544,7 +142013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2275), 13, + ACTIONS(2187), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -136558,16 +142027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [70125] = 3, + [71310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1356), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1354), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136577,7 +142047,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, @@ -136590,6 +142059,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, @@ -136607,16 +142077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70177] = 3, + [71363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(6343), 1, + sym__special_character, + STATE(1562), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1370), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136639,11 +142113,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, @@ -136656,16 +142129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70229] = 3, + [71420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1314), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136688,6 +142161,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, @@ -136705,16 +142179,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70281] = 3, + [71473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(6134), 1, + sym__special_character, + STATE(1492), 1, + aux_sym__literal_repeat1, + ACTIONS(5078), 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(5076), 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_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, + [71530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 39, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136740,6 +142266,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, @@ -136754,26 +142281,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70333] = 6, + [71583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5795), 1, - sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(6174), 1, + sym__special_character, + STATE(1541), 1, + aux_sym__literal_repeat1, + ACTIONS(5078), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(5076), 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, @@ -136781,6 +142308,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, @@ -136789,10 +142317,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, @@ -136804,18 +142332,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, - [70391] = 3, + [71640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1326), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136825,6 +142352,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, @@ -136837,6 +142365,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,31 +142382,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, - [70443] = 3, + [71693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(6346), 1, + sym__special_character, + STATE(1568), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(1370), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136886,11 +142419,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, @@ -136902,19 +142434,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, + [71750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1342), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136924,8 +142454,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, @@ -136953,17 +142485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70547] = 3, + [71803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1368), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1366), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -136973,8 +142504,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, @@ -137002,16 +142535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70599] = 3, + [71856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1334), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137021,6 +142554,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, @@ -137051,16 +142585,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70651] = 3, + [71909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1629), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 39, + ACTIONS(5902), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137071,8 +142612,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 +142624,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 +142638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70703] = 3, + [71968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(6349), 1, + sym__special_character, + STATE(1573), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1370), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137120,8 +142661,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, @@ -137133,9 +142676,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, @@ -137149,18 +142690,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70755] = 3, + [72025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, + ACTIONS(5906), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137183,7 +142729,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, @@ -137198,16 +142743,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70807] = 3, + [72084] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6352), 1, + anon_sym_DQUOTE, + ACTIONS(6354), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6358), 1, + anon_sym_BQUOTE, + ACTIONS(6360), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3019), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5760), 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(5762), 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, + [72149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1304), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1302), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137217,6 +142818,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, @@ -137247,21 +142849,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70859] = 3, + [72202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(4855), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 39, + ACTIONS(4853), 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, @@ -137270,6 +142873,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, @@ -137281,7 +142885,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, @@ -137296,16 +142899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70911] = 3, + [72255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, + ACTIONS(6170), 1, + aux_sym_concatenation_token1, + ACTIONS(6172), 1, sym__concat, + STATE(1592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(5906), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137327,9 +142935,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, @@ -137343,18 +142951,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, - [70963] = 3, + [72314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(6144), 1, + aux_sym_concatenation_token1, + ACTIONS(6146), 1, sym__concat, + STATE(1459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5594), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(5592), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137365,8 +142979,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, @@ -137378,7 +142990,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, @@ -137394,16 +143005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71015] = 3, + [72373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(6221), 1, + sym__special_character, + STATE(1562), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(5902), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137413,6 +143028,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, @@ -137425,9 +143041,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, 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, + [72430] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6144), 1, aux_sym_concatenation_token1, + ACTIONS(6146), 1, + sym__concat, + STATE(1462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5602), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5600), 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, @@ -137443,16 +143110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71067] = 3, + [72489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1338), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137462,6 +143129,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, @@ -137474,6 +143142,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, @@ -137490,19 +143159,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, - [71119] = 3, + [72542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(6221), 1, + sym__special_character, + STATE(1562), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(4941), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137512,8 +143183,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, @@ -137523,11 +143196,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, @@ -137539,94 +143211,120 @@ static const uint16_t 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, + [72599] = 3, + 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(1324), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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(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_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [72652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6170), 1, + aux_sym_concatenation_token1, + ACTIONS(6362), 1, + sym__concat, + STATE(1596), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(397), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5797), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + anon_sym_DOLLAR, 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, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 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(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, + sym_word, + [72711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1360), 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(1358), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137636,7 +143334,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, @@ -137664,16 +143365,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71325] = 3, + [72764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1356), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1354), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137683,6 +143384,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, @@ -137695,6 +143397,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, @@ -137711,20 +143414,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, - [71377] = 3, + [72817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(6221), 1, + sym__special_character, + STATE(1562), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 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(5052), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137734,7 +143438,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, @@ -137747,9 +143454,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, @@ -137762,22 +143467,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71429] = 6, + [72874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, + ACTIONS(6150), 1, aux_sym_concatenation_token1, - ACTIONS(5803), 1, + ACTIONS(6197), 1, sym__concat, - STATE(1583), 1, + STATE(1629), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(4943), 6, 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(4941), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137814,16 +143520,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71487] = 3, + [72933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(6174), 1, + sym__special_character, + STATE(1541), 1, + aux_sym__literal_repeat1, + ACTIONS(5062), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5060), 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, + aux_sym_number_token1, + aux_sym_number_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, + [72990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1326), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137833,6 +143591,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, @@ -137863,16 +143622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71539] = 3, + [73043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(6170), 1, + aux_sym_concatenation_token1, + ACTIONS(6364), 1, sym__concat, + STATE(1596), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1275), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137894,9 +143658,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, @@ -137910,18 +143674,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, + [73102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1342), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137931,6 +143694,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, @@ -137961,22 +143725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71643] = 6, + [73155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, + ACTIONS(6156), 1, aux_sym_concatenation_token1, - ACTIONS(5805), 1, + ACTIONS(6366), 1, sym__concat, - STATE(1583), 1, + STATE(1463), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(5904), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(5902), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -137986,7 +143749,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, @@ -137996,7 +143762,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, @@ -138013,18 +143778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71701] = 3, + [73214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, - sym_file_descriptor, + ACTIONS(6156), 1, + aux_sym_concatenation_token1, + ACTIONS(6366), 1, sym__concat, - sym_variable_name, + STATE(1477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(5906), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138034,7 +143802,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, @@ -138044,10 +143815,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, @@ -138062,18 +143831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71753] = 3, + [73273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, + ACTIONS(6368), 1, + aux_sym_concatenation_token1, + ACTIONS(6371), 1, sym__concat, - sym_variable_name, + STATE(1596), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138084,6 +143856,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, @@ -138096,7 +143870,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, @@ -138111,16 +143884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71805] = 3, + [73332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5594), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 39, + ACTIONS(5592), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138130,9 +143909,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, @@ -138142,10 +143920,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, @@ -138159,17 +143935,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, + [73391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1364), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1362), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138179,6 +143956,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, @@ -138209,16 +143987,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71909] = 3, + [73444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1629), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 39, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138229,8 +144014,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, @@ -138243,7 +144026,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, @@ -138258,16 +144040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71961] = 3, + [73503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1334), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138277,6 +144059,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, @@ -138289,7 +144072,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 +144088,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, + [73556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 39, + ACTIONS(1338), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138326,6 +144109,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, @@ -138338,7 +144122,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,30 +144138,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, - [72065] = 3, + [73609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + 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(1300), 39, + ACTIONS(1287), 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, @@ -138390,7 +144176,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, @@ -138405,16 +144190,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72117] = 3, + [73662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6197), 1, sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(4945), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138425,8 +144217,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, @@ -138439,7 +144229,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, @@ -138454,16 +144243,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72169] = 3, + [73721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1512), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(4945), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138473,9 +144268,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, @@ -138488,7 +144282,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, @@ -138503,33 +144296,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72221] = 6, + [73780] = 3, 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(1273), 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, + ACTIONS(1271), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138555,18 +144346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72279] = 3, + [73833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(1364), 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(1362), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138576,7 +144365,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, @@ -138586,7 +144378,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, @@ -138603,105 +144394,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72331] = 28, - ACTIONS(71), 1, + [73886] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1312), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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(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, - 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_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, - [72433] = 3, + sym_word, + [73939] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 6, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(1512), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 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(4303), 38, + ACTIONS(2180), 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, @@ -138727,17 +144499,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72485] = 3, + [73998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(6184), 1, + aux_sym_concatenation_token1, + ACTIONS(6290), 1, sym__concat, - sym_variable_name, + STATE(1491), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1271), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138747,8 +144523,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, @@ -138758,10 +144535,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, @@ -138775,23 +144550,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, - [72537] = 6, + [74057] = 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(1320), 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(1223), 36, + ACTIONS(1318), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138802,6 +144573,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, @@ -138814,6 +144587,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, @@ -138828,96 +144602,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72595] = 28, - ACTIONS(71), 1, + [74110] = 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(1332), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + aux_sym_concatenation_token1, + 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, - 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_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, - [72697] = 6, + sym_word, + [74163] = 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(1316), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1314), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138927,7 +144671,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, @@ -138937,9 +144684,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, @@ -138953,23 +144700,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, - [72755] = 6, + [74216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5821), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1430), 1, + STATE(1509), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(5054), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(5052), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -138979,6 +144727,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, @@ -139006,33 +144755,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72813] = 6, + [74275] = 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(1294), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1287), 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, @@ -139041,6 +144788,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, @@ -139056,24 +144804,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, - [72871] = 6, + [74328] = 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(1263), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1261), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139083,7 +144824,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, @@ -139095,6 +144839,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 +144855,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [72929] = 6, + [74381] = 5, 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(5389), 5, + ACTIONS(6229), 1, + sym__special_character, + STATE(1573), 1, + aux_sym__literal_repeat1, + ACTIONS(5594), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, + ACTIONS(5592), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139135,7 +144878,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, @@ -139148,7 +144894,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, @@ -139162,31 +144907,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [72987] = 6, + [74438] = 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_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1287), 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -139214,17 +144957,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73045] = 3, + [74491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(6170), 1, + aux_sym_concatenation_token1, + ACTIONS(6172), 1, + sym__concat, + STATE(1585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [74550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1358), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139234,8 +145030,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, @@ -139245,7 +145042,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, @@ -139262,22 +145058,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, - [73097] = 6, + [74603] = 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(1308), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 37, + ACTIONS(1306), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139287,8 +145079,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, @@ -139301,6 +145095,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, @@ -139315,22 +145110,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73155] = 6, + [74656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5827), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5829), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1632), 1, + STATE(1512), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 5, + ACTIONS(5058), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 36, + ACTIONS(5056), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139340,6 +145135,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, @@ -139350,6 +145146,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, @@ -139365,23 +145162,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, - [73213] = 6, + [74715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5837), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1600), 1, + STATE(1509), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(5724), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 37, + ACTIONS(5722), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139419,21 +145216,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73271] = 6, + [74774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5839), 1, + ACTIONS(6156), 1, aux_sym_concatenation_token1, - ACTIONS(5842), 1, + ACTIONS(6366), 1, sym__concat, - STATE(1600), 1, + STATE(1463), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1273), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1271), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139443,8 +145240,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, @@ -139454,7 +145253,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, @@ -139471,39 +145269,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73329] = 11, + [74833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, + ACTIONS(6134), 1, + sym__special_character, + STATE(1492), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 6, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5849), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(4157), 2, + ACTIONS(4941), 37, + 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_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(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 3, + 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, + [74890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 6, 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(4153), 27, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 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, @@ -139511,9 +145352,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, @@ -139527,40 +145369,86 @@ static const uint16_t 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, + [74943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, - sym_variable_name, - ACTIONS(5852), 1, + ACTIONS(1320), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(6633), 1, - sym_subscript, - ACTIONS(4157), 2, + ACTIONS(1318), 40, + 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_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(5845), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5105), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4161), 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, + aux_sym__simple_variable_name_token1, + sym_word, + [74996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6136), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, + sym__concat, + STATE(1546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 5, sym_file_descriptor, + sym_variable_name, 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(5902), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139568,6 +145456,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 +145474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73465] = 6, + [75055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(6136), 1, aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(6138), 1, sym__concat, - STATE(1597), 1, + STATE(1548), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(5908), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(5906), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139609,8 +145499,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139637,17 +145527,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73523] = 5, + [75114] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(6150), 1, + aux_sym_concatenation_token1, + ACTIONS(6374), 1, + sym__concat, + STATE(1540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 6, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4153), 17, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, @@ -139665,7 +145580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5856), 22, + [75173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(1509), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139675,10 +145605,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, @@ -139688,20 +145616,39 @@ 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_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, + [75232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, - sym__special_character, - STATE(1514), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(1512), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 37, + ACTIONS(5906), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139711,9 +145658,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, @@ -139723,9 +145669,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, @@ -139737,32 +145685,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, - [73635] = 3, + [75291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 6, + ACTIONS(1320), 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(4441), 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_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, @@ -139771,9 +145718,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, @@ -139787,31 +145734,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, - [73687] = 3, + [75344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 6, + ACTIONS(1332), 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(5397), 38, + ACTIONS(1330), 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, @@ -139820,9 +145768,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 +145784,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, - [73739] = 7, + [75397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6144), 1, + aux_sym_concatenation_token1, + ACTIONS(6146), 1, + sym__concat, + STATE(1459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 6, sym_file_descriptor, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5864), 11, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5722), 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, @@ -139859,21 +145821,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(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, anon_sym_DOLLAR, @@ -139889,22 +145837,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, - [73799] = 7, + [75456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6178), 1, + aux_sym_concatenation_token1, + ACTIONS(6180), 1, + sym__concat, + STATE(1553), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5594), 5, sym_file_descriptor, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5864), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(5592), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139912,21 +145874,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(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, anon_sym_DOLLAR, @@ -139942,23 +145890,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, - [73859] = 6, + [75515] = 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(1332), 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(5130), 36, + ACTIONS(1330), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -139969,6 +145913,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 +145924,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 +145940,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, - [73917] = 6, + [75568] = 3, 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(1348), 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(1346), 40, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140020,7 +145961,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, @@ -140030,9 +145974,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,31 +145990,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, - [73975] = 3, + [75621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 6, + ACTIONS(1352), 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(4437), 38, + ACTIONS(1350), 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, @@ -140079,9 +146024,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, @@ -140095,31 +146040,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, - [74027] = 3, + [75674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 6, + ACTIONS(1348), 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(4311), 38, + ACTIONS(1346), 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, @@ -140128,9 +146074,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, @@ -140144,22 +146090,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, - [74079] = 6, + [75727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(6184), 1, aux_sym_concatenation_token1, - ACTIONS(5874), 1, + ACTIONS(6290), 1, sym__concat, - STATE(1496), 1, + STATE(1491), 1, aux_sym_concatenation_repeat1, - ACTIONS(5389), 4, + ACTIONS(5978), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 37, + ACTIONS(5976), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140169,8 +146116,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, @@ -140197,33 +146145,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74137] = 6, + [75786] = 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(4947), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 37, + ACTIONS(4945), 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, @@ -140232,6 +146178,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, @@ -140247,20 +146194,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, - [74195] = 3, + [75839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, - sym_file_descriptor, + ACTIONS(6144), 1, + aux_sym_concatenation_token1, + ACTIONS(6146), 1, sym__concat, + STATE(1462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 6, + 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(5726), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140282,7 +146233,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, @@ -140298,18 +146248,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74247] = 3, + [75898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 7, - sym_file_descriptor, + ACTIONS(6178), 1, + aux_sym_concatenation_token1, + ACTIONS(6180), 1, sym__concat, + STATE(1644), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5602), 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(5600), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140320,6 +146274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140331,7 +146286,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, @@ -140347,18 +146301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74299] = 3, + [75957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 7, - sym_file_descriptor, + ACTIONS(6178), 1, + aux_sym_concatenation_token1, + ACTIONS(6376), 1, sym__concat, + STATE(1559), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1275), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140369,6 +146327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140380,7 +146339,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, @@ -140396,18 +146354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74351] = 3, + [76016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 7, + ACTIONS(1312), 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(1310), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140418,6 +146375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140427,6 +146385,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 +146402,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, + [76068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(6380), 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(6378), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140466,7 +146422,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, @@ -140478,7 +146437,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, @@ -140494,10 +146452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74455] = 3, + [76120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 7, + ACTIONS(1348), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -140505,7 +146463,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1346), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140525,6 +146483,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,20 +146500,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, - [74507] = 3, + [76172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1308), 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(1308), 37, + ACTIONS(1306), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140564,6 +146521,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, @@ -140592,22 +146550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74559] = 6, + [76224] = 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(1352), 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(1350), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140627,8 +146581,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 +146598,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, - [74617] = 3, + [76276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 7, + ACTIONS(6384), 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(1272), 37, + ACTIONS(6382), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140665,7 +146618,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, @@ -140677,7 +146633,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, @@ -140693,10 +146648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74669] = 3, + [76328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 7, + ACTIONS(1348), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -140704,7 +146659,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(1346), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140742,22 +146697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74721] = 6, + [76380] = 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(1352), 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(1350), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140768,6 +146717,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, @@ -140779,6 +146730,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, @@ -140794,20 +146746,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74779] = 5, + [76432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 1, - sym__special_character, - STATE(1504), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, + sym__concat, + STATE(1911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5978), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 37, + ACTIONS(5976), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140817,9 +146770,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, @@ -140829,10 +146781,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, @@ -140844,31 +146796,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, - [74835] = 3, + [76490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1324), 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(4437), 39, + ACTIONS(1322), 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, @@ -140877,9 +146829,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, @@ -140893,19 +146845,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, - [74887] = 3, + [76542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1304), 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(1302), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140916,6 +146867,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, @@ -140943,18 +146896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74939] = 3, + [76594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(1348), 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(1288), 37, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -140965,6 +146916,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, @@ -140992,10 +146945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74991] = 3, + [76646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1263), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -141003,7 +146956,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141023,6 +146976,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, @@ -141039,35 +146993,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, - [75043] = 6, + [76698] = 3, 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, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1271), 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, @@ -141076,6 +147026,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, @@ -141091,42 +147042,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, - [75101] = 3, + [76750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(6392), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(4732), 3, sym_variable_name, sym_test_operator, 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_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(4720), 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, @@ -141140,20 +147070,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, - [75153] = 3, - ACTIONS(3), 1, - sym_comment, - 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(1292), 37, + ACTIONS(6390), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141163,7 +147081,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, @@ -141173,48 +147094,29 @@ static 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, - aux_sym__simple_variable_name_token1, - sym_word, - [75205] = 3, + [76806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1332), 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(4311), 39, + ACTIONS(1330), 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, @@ -141226,6 +147128,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,22 +147143,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75257] = 6, + [76858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5880), 1, + ACTIONS(6394), 1, aux_sym_concatenation_token1, - ACTIONS(5883), 1, + ACTIONS(6396), 1, sym__concat, - STATE(1636), 1, + STATE(1815), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1273), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141265,6 +147167,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, @@ -141275,6 +147178,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, @@ -141290,31 +147194,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, - [75315] = 3, + [76916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 7, + ACTIONS(4947), 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(1248), 37, + ACTIONS(4945), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141323,9 +147227,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 +147243,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, - [75367] = 3, + [76968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, + ACTIONS(6398), 1, + aux_sym_concatenation_token1, + ACTIONS(6400), 1, sym__concat, - sym_variable_name, + STATE(1670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1281), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141363,6 +147269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141372,9 +147279,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, @@ -141388,20 +147295,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, - [75419] = 3, + [77026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, + ACTIONS(6398), 1, + aux_sym_concatenation_token1, + ACTIONS(6402), 1, sym__concat, - sym_variable_name, + STATE(1670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1275), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141412,6 +147321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141421,9 +147331,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 +147347,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, - [75471] = 3, + [77084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(6404), 1, + sym__special_character, + STATE(1865), 1, + aux_sym__literal_repeat1, + ACTIONS(5594), 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(5592), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141461,6 +147372,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, @@ -141472,9 +147385,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, @@ -141488,29 +147399,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75523] = 3, + [77140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(4855), 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(1300), 37, + ACTIONS(4853), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141519,9 +147431,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, @@ -141535,20 +147447,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, + [77192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 7, + ACTIONS(1324), 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(1322), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141558,7 +147467,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, @@ -141584,67 +147496,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, - [75627] = 3, + [77244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1324), 5, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 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, - [75679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 5, - sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 39, + ACTIONS(1322), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141654,7 +147516,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, @@ -141667,9 +147528,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, @@ -141683,19 +147544,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, - [75731] = 3, + [77296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6406), 1, sym__concat, + STATE(1517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1281), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141718,7 +147584,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, @@ -141733,30 +147598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75783] = 3, + [77354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(6408), 1, + aux_sym_concatenation_token1, + ACTIONS(6411), 1, + sym__concat, + STATE(1670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1261), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141782,18 +147650,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75835] = 3, + [77412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 7, + ACTIONS(6414), 1, + aux_sym_concatenation_token1, + ACTIONS(6416), 1, + sym__concat, + STATE(1735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [77470] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6418), 1, sym__concat, + STATE(1517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(1275), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141816,7 +147740,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, @@ -141831,18 +147754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75887] = 3, + [77528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 7, + ACTIONS(1320), 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(1264), 37, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141852,6 +147774,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, @@ -141880,16 +147803,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75939] = 3, + [77580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 5, + ACTIONS(1360), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4441), 39, + ACTIONS(1271), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141900,7 +147873,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, @@ -141929,18 +147901,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75991] = 3, + [77684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1356), 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(1354), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -141950,7 +147920,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, @@ -141960,7 +147933,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, @@ -141978,18 +147950,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76043] = 3, + [77736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6420), 1, + sym__concat, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [77794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 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(1292), 37, + ACTIONS(1366), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142000,6 +148023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142027,21 +148051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76095] = 6, + [77846] = 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(1328), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1326), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142065,6 +148085,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 +148100,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76153] = 6, + [77898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, + ACTIONS(1263), 5, + sym_file_descriptor, sym__concat, - STATE(1599), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [77950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 37, + ACTIONS(1330), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142117,6 +148183,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, @@ -142131,22 +148198,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76211] = 3, + [78002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 5, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, + sym__concat, + STATE(1919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6008), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5397), 39, + ACTIONS(6006), 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, @@ -142154,7 +148225,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, @@ -142163,7 +148233,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, @@ -142179,17 +148248,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, - [76263] = 3, + [78060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6422), 1, + sym__concat, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1275), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142199,10 +148275,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, @@ -142212,7 +148285,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, @@ -142228,18 +148300,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, - [76315] = 3, + [78118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1330), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142249,8 +148321,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, @@ -142260,6 +148333,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, @@ -142276,19 +148350,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, - [76367] = 3, + [78170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1326), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142298,8 +148370,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, @@ -142327,17 +148400,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76419] = 3, + [78222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(6424), 1, + sym__special_character, + STATE(1814), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(5722), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142347,8 +148423,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, @@ -142361,9 +148438,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 +148451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76471] = 3, + [78278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1316), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(1314), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142396,8 +148471,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142407,6 +148482,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,18 +148499,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, - [76523] = 3, + [78330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(1263), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 39, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142444,10 +148520,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142457,8 +148531,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, @@ -142472,31 +148548,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, - [76575] = 3, + [78382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(5058), 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), 38, + ACTIONS(5056), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142508,7 +148584,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, @@ -142523,22 +148598,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76627] = 6, + [78434] = 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(1344), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1342), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142549,6 +148618,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, @@ -142561,6 +148632,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, @@ -142575,22 +148647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76685] = 6, + [78486] = 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(1336), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1334), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142601,6 +148667,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, @@ -142613,6 +148681,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, @@ -142627,17 +148696,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76743] = 3, + [78538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1336), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1334), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142676,22 +148745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76795] = 6, + [78590] = 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(1304), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(1302), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142702,6 +148766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142711,8 +148776,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, @@ -142726,24 +148793,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, - [76853] = 6, + [78642] = 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(1340), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 36, + ACTIONS(1338), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142754,6 +148814,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, @@ -142763,8 +148825,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 +148842,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, - [76911] = 6, + [78694] = 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(1364), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 36, + ACTIONS(1362), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142806,6 +148863,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, @@ -142818,6 +148877,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 +148892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76969] = 6, + [78746] = 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(1364), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, + ACTIONS(1362), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142857,6 +148912,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 +148926,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,22 +148941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77027] = 6, + [78798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6414), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(6426), 1, sym__concat, - STATE(1591), 1, + STATE(1735), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 5, + ACTIONS(1277), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 36, + ACTIONS(1275), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142910,6 +148966,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, @@ -142919,7 +148977,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, @@ -142936,16 +148993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77085] = 3, + [78856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(1324), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 39, + ACTIONS(1322), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142955,10 +149013,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142971,6 +149027,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,33 +149042,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77137] = 6, + [78908] = 21, 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, - sym_file_descriptor, + ACTIONS(6430), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6434), 1, + anon_sym_DOLLAR, + ACTIONS(6436), 1, + sym__special_character, + ACTIONS(6438), 1, + anon_sym_DQUOTE, + ACTIONS(6440), 1, + aux_sym_number_token1, + ACTIONS(6442), 1, + aux_sym_number_token2, + ACTIONS(6444), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6446), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6448), 1, + anon_sym_BQUOTE, + ACTIONS(6450), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6454), 1, sym_test_operator, + ACTIONS(6456), 1, sym__brace_start, + STATE(6044), 1, + aux_sym__literal_repeat1, + STATE(6123), 1, + sym_concatenation, + ACTIONS(2645), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, - anon_sym_SEMI, + ACTIONS(6452), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6428), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6028), 9, + 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(2643), 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, @@ -143019,35 +149108,19 @@ 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, - [77195] = 3, + anon_sym_LT_LT_LT, + [78996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1344), 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(1312), 38, + ACTIONS(1342), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143057,7 +149130,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, @@ -143086,16 +149158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77247] = 3, + [79048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1320), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 39, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143105,10 +149178,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, @@ -143118,9 +149189,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, @@ -143134,34 +149205,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, - [77299] = 6, + [79100] = 21, 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, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(6430), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6434), 1, + anon_sym_DOLLAR, + ACTIONS(6436), 1, + sym__special_character, + ACTIONS(6438), 1, + anon_sym_DQUOTE, + ACTIONS(6440), 1, + aux_sym_number_token1, + ACTIONS(6442), 1, + aux_sym_number_token2, + ACTIONS(6444), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6446), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6448), 1, + anon_sym_BQUOTE, + ACTIONS(6450), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6456), 1, sym__brace_start, + ACTIONS(6460), 1, + sym_test_operator, + STATE(6111), 1, + aux_sym__literal_repeat1, + STATE(6120), 1, + sym_concatenation, + ACTIONS(2550), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 36, - anon_sym_SEMI, + ACTIONS(6452), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6458), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6032), 9, + 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(2548), 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_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143169,40 +149273,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_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, - [77357] = 6, + [79188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6462), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(6464), 1, sym__concat, - STATE(1590), 1, + STATE(1714), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 5, + ACTIONS(1273), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143222,7 +149309,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, @@ -143238,23 +149324,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, - [77415] = 6, + [79246] = 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(4313), 5, + ACTIONS(1320), 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(4311), 36, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143274,9 +149357,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, @@ -143290,23 +149373,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, - [77473] = 6, + [79298] = 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(1368), 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(1366), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143326,9 +149406,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, @@ -143342,23 +149422,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, - [77531] = 6, + [79350] = 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(5270), 5, + ACTIONS(1360), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(1358), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143368,6 +149444,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, @@ -143381,6 +149458,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, @@ -143395,17 +149473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77589] = 3, + [79402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1356), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1354), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143426,6 +149504,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, @@ -143442,19 +149521,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, - [77641] = 3, + [79454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1368), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1366), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143464,8 +149542,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143493,16 +149571,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77693] = 3, + [79506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1328), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 39, + ACTIONS(1326), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143512,10 +149591,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, @@ -143525,9 +149602,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, @@ -143541,18 +149618,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, - [77745] = 3, + [79558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1360), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1358), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143562,8 +149639,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, @@ -143591,17 +149669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77797] = 3, + [79610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1332), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1330), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143640,148 +149718,17 @@ 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, - 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, - 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_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, + [79662] = 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(1344), 6, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 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, - [78009] = 6, - 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, - sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 36, + ACTIONS(1342), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143791,6 +149738,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, @@ -143801,8 +149749,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, @@ -143816,18 +149766,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, - [78067] = 3, + [79714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1356), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(1354), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143837,7 +149786,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, @@ -143853,6 +149801,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, @@ -143867,22 +149816,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78119] = 6, + [79766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5577), 1, + ACTIONS(6462), 1, aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(6466), 1, sym__concat, - STATE(1590), 1, + STATE(1836), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(1283), 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(1281), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143902,7 +149851,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, @@ -143918,23 +149866,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, - [78177] = 6, + [79824] = 5, 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(1225), 5, + ACTIONS(6404), 1, + sym__special_character, + STATE(1865), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5722), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143945,6 +149892,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, @@ -143957,7 +149906,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, @@ -143971,107 +149919,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78235] = 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(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(5757), 1, - sym_extglob_pattern, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2541), 1, - sym__extglob_blob, - STATE(2861), 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, - [78337] = 6, + [79880] = 3, 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(1316), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(237), 36, + ACTIONS(1314), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144080,9 +149950,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, @@ -144096,34 +149966,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, - [78395] = 6, + [79932] = 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(1263), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 36, + ACTIONS(1261), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144132,9 +149999,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 +150015,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, + [79984] = 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(1328), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1233), 35, + ACTIONS(1326), 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_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, @@ -144185,9 +150048,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, @@ -144201,18 +150064,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, - [78513] = 3, + [80036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1320), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(1318), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144222,8 +150085,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, @@ -144249,40 +150114,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, - [78565] = 10, + [80088] = 6, 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(6414), 1, + aux_sym_concatenation_token1, + ACTIONS(6468), 1, + sym__concat, + STATE(1671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 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(4155), 4, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144290,7 +150150,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, @@ -144307,17 +150167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78631] = 3, + [80146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1336), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1334), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144356,33 +150216,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78683] = 6, + [80198] = 3, 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(1225), 5, + ACTIONS(1340), 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), 36, + ACTIONS(1338), 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_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, @@ -144394,6 +150250,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, @@ -144408,34 +150265,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78741] = 9, + [80250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 1, + ACTIONS(1304), 6, + sym_file_descriptor, + sym__concat, 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(1302), 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144445,10 +150296,9 @@ 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, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144462,18 +150312,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, - [78805] = 3, + [80302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144483,8 +150333,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, @@ -144512,17 +150363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78857] = 3, + [80354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1306), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144532,8 +150383,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144561,17 +150412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78909] = 3, + [80406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1362), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144592,7 +150443,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, @@ -144609,18 +150459,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, - [78961] = 3, + [80458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1364), 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(1284), 38, + ACTIONS(1362), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144630,7 +150482,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,6 +150492,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, @@ -144657,19 +150509,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, - [79013] = 3, + [80510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1324), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1322), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144679,8 +150530,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144708,17 +150559,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79065] = 3, + [80562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(1352), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1350), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144728,8 +150578,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, @@ -144757,17 +150608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79117] = 3, + [80614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(6470), 1, + aux_sym_concatenation_token1, + ACTIONS(6472), 1, sym__concat, - sym_variable_name, + STATE(1732), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144777,8 +150632,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144790,7 +150645,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 +150660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79169] = 3, + [80672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1348), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 39, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144825,7 +150679,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, @@ -144838,8 +150691,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 +150708,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, + [80724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 1, + ACTIONS(6470), 1, aux_sym_concatenation_token1, - ACTIONS(5895), 1, + ACTIONS(6474), 1, sym__concat, - STATE(895), 1, + STATE(1745), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1283), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1281), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144890,7 +150744,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, @@ -144906,89 +150759,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, - [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, + [80782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(1312), 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(2156), 38, + ACTIONS(1310), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -144999,8 +150783,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, @@ -145013,6 +150795,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, @@ -145027,16 +150810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79429] = 3, + [80834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1304), 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(1302), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145046,7 +150831,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,6 +150841,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, @@ -145073,24 +150858,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, - [79480] = 6, + [80886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(6476), 1, aux_sym_concatenation_token1, - ACTIONS(5901), 1, + ACTIONS(6479), 1, sym__concat, - STATE(1715), 1, + STATE(1735), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 5, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145101,6 +150884,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, @@ -145126,16 +150911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79537] = 3, + [80944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(4947), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(4945), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145145,6 +150930,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, @@ -145157,9 +150943,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 +150960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79588] = 3, + [80996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1360), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 38, + ACTIONS(1358), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145193,9 +150980,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, @@ -145205,9 +150991,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, @@ -145221,17 +151007,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, - [79639] = 3, + [81048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1356), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1354), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145241,9 +151029,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, @@ -145269,23 +151056,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, - [79690] = 6, + [81100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 1, + ACTIONS(6470), 1, aux_sym_concatenation_token1, - ACTIONS(5906), 1, + ACTIONS(6482), 1, sym__concat, - STATE(1715), 1, + STATE(1745), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + ACTIONS(1277), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 35, + ACTIONS(1275), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145296,6 +151083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145320,68 +151108,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, - [79747] = 6, - ACTIONS(71), 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, - 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, - 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, - [79804] = 3, + [81158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1344), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1342), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145391,9 +151130,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, @@ -145419,17 +151157,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, - [79855] = 3, + [81210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1312), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1310), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145467,17 +151206,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, + [81262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1328), 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(1326), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145487,7 +151229,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, @@ -145498,6 +151239,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, @@ -145514,22 +151256,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, - [79957] = 5, + [81314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1273), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 36, + ACTIONS(1271), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145539,8 +151276,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, @@ -145554,6 +151293,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, @@ -145566,19 +151306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80012] = 5, + [81366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5911), 1, - sym__special_character, - STATE(1721), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(5058), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(5056), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145588,6 +151325,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, @@ -145604,6 +151342,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 +151355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80067] = 5, + [81418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, - sym__special_character, - STATE(1811), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(6484), 1, + aux_sym_concatenation_token1, + ACTIONS(6487), 1, + sym__concat, + STATE(1745), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145638,10 +151379,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145654,6 +151393,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, @@ -145665,23 +151405,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, - [80122] = 6, + [81476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5899), 1, + ACTIONS(6394), 1, aux_sym_concatenation_token1, - ACTIONS(5916), 1, + ACTIONS(6396), 1, sym__concat, - STATE(1895), 1, + STATE(1815), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 5, + ACTIONS(5904), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(5902), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145691,6 +151431,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, @@ -145701,6 +151442,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, @@ -145717,17 +151459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80179] = 3, + [81534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1312), 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(1252), 37, + ACTIONS(1310), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145738,6 +151480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145747,7 +151490,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, @@ -145764,17 +151506,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, - [80230] = 3, + [81586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1340), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1338), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145784,9 +151528,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, @@ -145812,17 +151555,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, - [80281] = 3, + [81638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145832,9 +151577,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, @@ -145844,6 +151588,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, @@ -145861,16 +151606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80332] = 3, + [81690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1352), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1350), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145880,9 +151626,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, @@ -145892,6 +151637,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, @@ -145909,16 +151655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80383] = 3, + [81742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145928,9 +151675,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, @@ -145940,6 +151686,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, @@ -145957,16 +151704,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80434] = 3, + [81794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6396), 1, sym__concat, + STATE(1842), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(5906), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -145976,9 +151728,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, @@ -145988,9 +151739,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 +151756,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80485] = 3, + [81852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1308), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1306), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146024,8 +151776,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146053,16 +151805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80536] = 3, + [81904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1308), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1306), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146072,8 +151824,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, @@ -146101,21 +151854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80587] = 3, + [81956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(4855), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4853), 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, @@ -146123,6 +151877,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, @@ -146131,9 +151886,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, @@ -146147,23 +151902,124 @@ static const uint16_t 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, + [82008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(5058), 6, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [82060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6490), 1, + aux_sym_concatenation_token1, + ACTIONS(6492), 1, sym__concat, + STATE(1771), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [82118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4947), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(4945), 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, @@ -146171,6 +152027,55 @@ 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, + anon_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, + [82170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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, @@ -146179,6 +152084,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, @@ -146195,18 +152101,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, + [82222] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 1, + anon_sym_DQUOTE, + ACTIONS(6498), 1, + sym_variable_name, + STATE(3701), 1, + sym_string, + ACTIONS(6496), 2, aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(6494), 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(1249), 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, - [80689] = 3, + [82284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(6424), 1, + sym__special_character, + STATE(1814), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(6242), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146228,11 +152191,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, @@ -146245,16 +152207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80740] = 3, + [82340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1312), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1310), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146264,6 +152226,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, @@ -146293,16 +152256,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80791] = 3, + [82392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(6398), 1, + aux_sym_concatenation_token1, + ACTIONS(6500), 1, sym__concat, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146313,8 +152281,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146324,9 +152291,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, @@ -146341,72 +152308,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80842] = 11, + [82450] = 28, ACTIONS(71), 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, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(4161), 20, - sym_file_descriptor, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(6002), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + ACTIONS(6504), 1, + sym_extglob_pattern, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3057), 1, + sym__expression, + STATE(3058), 1, + sym__extglob_blob, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [80909] = 3, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1308), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1306), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146416,8 +152401,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,30 +152430,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, - [80960] = 3, + [82604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1273), 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(1284), 37, + ACTIONS(1271), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146478,7 +152466,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, @@ -146493,17 +152480,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81011] = 3, + [82656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1360), 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(1358), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146523,7 +152511,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,29 +152527,39 @@ static const uint16_t 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, + [82708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(6270), 1, + anon_sym_DQUOTE, + ACTIONS(6498), 1, + sym_variable_name, + STATE(3701), 1, + sym_string, + ACTIONS(6496), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, 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, + ACTIONS(6494), 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(1237), 28, anon_sym_PIPE_PIPE, anon_sym_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, @@ -146570,14 +152567,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, + 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, @@ -146589,89 +152583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81113] = 27, - ACTIONS(71), 1, + [82770] = 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(6424), 1, sym__special_character, - ACTIONS(5921), 1, - sym__regex_no_space, - STATE(2407), 1, + STATE(1814), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 6, + ACTIONS(6250), 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(6248), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146682,6 +152607,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, @@ -146694,9 +152621,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, @@ -146709,74 +152634,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81263] = 12, - ACTIONS(71), 1, + [82826] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5918), 1, - 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, + ACTIONS(4855), 6, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4853), 38, + 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_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, - 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_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, - [81332] = 3, + sym_word, + [82878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(6506), 1, + aux_sym_concatenation_token1, + ACTIONS(6509), 1, sym__concat, + STATE(1771), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1261), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146799,7 +152721,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, @@ -146814,68 +152735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81383] = 6, - ACTIONS(71), 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, - 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, - [81440] = 3, + [82936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1344), 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(1342), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146886,6 +152755,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, @@ -146895,7 +152766,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,33 +152782,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, - [81491] = 6, + [82988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(5929), 1, + ACTIONS(6512), 1, sym__concat, - STATE(1600), 1, + STATE(1042), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1283), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, - anon_sym_SEMI, + ACTIONS(1281), 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_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146964,21 +152836,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81548] = 6, + [83046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5931), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(1336), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1334), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146989,6 +152856,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, @@ -146998,9 +152867,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, @@ -147014,22 +152883,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, - [81605] = 6, + [83098] = 3, 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(1225), 4, + ACTIONS(1348), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147039,6 +152905,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, @@ -147049,9 +152916,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, @@ -147065,72 +152932,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, - [81662] = 9, - ACTIONS(71), 1, + [83150] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5918), 1, + ACTIONS(1352), 6, + sym_file_descriptor, + sym__concat, 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(1350), 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_AMP_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_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(4161), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LT_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, - [81725] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [83202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1348), 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(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147140,6 +153003,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, @@ -147150,7 +153014,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 +153030,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, - [81776] = 6, + [83254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5935), 1, - sym__concat, - STATE(1759), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1273), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1271), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147192,8 +153051,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, @@ -147218,90 +153079,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81833] = 27, - ACTIONS(71), 1, + [83306] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(6514), 1, + sym__special_character, + STATE(1779), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(262), 1, + 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, + [83362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 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(1314), 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, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + aux_sym_concatenation_token1, + 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_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + [83414] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 1, + aux_sym_concatenation_token1, + ACTIONS(6517), 1, + sym__concat, + STATE(1042), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, - 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_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, - [81932] = 3, + aux_sym_number_token1, + aux_sym_number_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, + [83472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1340), 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(1338), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147312,6 +153253,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, @@ -147321,7 +153264,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, @@ -147338,22 +153280,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, - [81983] = 5, + [83524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, - sym__special_character, - STATE(1827), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 6, + ACTIONS(1308), 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), 35, + ACTIONS(1306), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147373,9 +153313,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, @@ -147387,23 +153330,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, - [82038] = 6, + [83576] = 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(1320), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147413,8 +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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147424,8 +153362,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 +153380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82095] = 3, + [83628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1263), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1261), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147461,6 +153400,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, @@ -147470,7 +153411,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, @@ -147487,22 +153427,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, - [82146] = 6, + [83680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(6490), 1, aux_sym_concatenation_token1, - ACTIONS(5944), 1, + ACTIONS(6519), 1, sym__concat, - STATE(1759), 1, + STATE(1861), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 36, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147512,7 +153454,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, @@ -147523,6 +153464,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, @@ -147539,21 +153481,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82203] = 6, + [83738] = 3, 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(1360), 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), 36, + ACTIONS(1358), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147576,6 +153515,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, @@ -147590,21 +153530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82260] = 6, + [83790] = 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(1368), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(1366), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147614,6 +153550,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, @@ -147627,6 +153564,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 +153579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82317] = 3, + [83842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1356), 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(1354), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147659,10 +153600,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, @@ -147674,6 +153612,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, @@ -147689,16 +153628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82368] = 3, + [83894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1328), 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), 38, + ACTIONS(1326), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147709,8 +153650,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, @@ -147722,6 +153661,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 +153677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82419] = 3, + [83946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1316), 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(1312), 38, + ACTIONS(1314), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147756,7 +153698,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, @@ -147785,16 +153726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82470] = 3, + [83998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1348), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 38, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147804,6 +153745,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, @@ -147816,9 +153758,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, @@ -147833,21 +153775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82521] = 6, + [84050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(6462), 1, aux_sym_concatenation_token1, - ACTIONS(5947), 1, + ACTIONS(6521), 1, sym__concat, - STATE(1488), 1, + STATE(1836), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1277), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 36, + ACTIONS(1275), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147884,21 +153827,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82578] = 6, + [84108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5949), 1, + ACTIONS(1324), 7, + sym_file_descriptor, sym__concat, - STATE(1488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, + [84160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 36, + ACTIONS(5726), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147908,7 +153895,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, @@ -147918,6 +153908,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, @@ -147933,19 +153924,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, + [84212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(1328), 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), 37, + ACTIONS(1326), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147956,6 +153946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147983,165 +153974,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82686] = 27, - ACTIONS(71), 1, + [84264] = 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(1332), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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(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, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, 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, + 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, - [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_DOLLAR_LPAREN, 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_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, - [82884] = 5, + sym_word, + [84316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(6424), 1, sym__special_character, - STATE(1827), 1, + STATE(1814), 1, aux_sym__literal_repeat1, - ACTIONS(5186), 6, + ACTIONS(5054), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 35, + ACTIONS(5052), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148152,6 +154047,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, @@ -148161,6 +154058,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, @@ -148175,19 +154073,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, - [82939] = 3, + [84372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1332), 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), 37, + ACTIONS(1330), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148207,7 +154105,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, @@ -148224,17 +154121,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, - [82990] = 3, + [84424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1344), 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(1342), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148244,7 +154144,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, @@ -148273,17 +154172,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [83041] = 3, + [84476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1316), 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(1314), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148293,6 +154192,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, @@ -148321,17 +154221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83092] = 3, + [84528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1352), 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(1350), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148341,7 +154240,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, @@ -148351,7 +154253,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, @@ -148369,16 +154270,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83143] = 3, + [84580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1263), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148388,9 +154290,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, @@ -148403,6 +154304,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, @@ -148417,28 +154319,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83194] = 3, + [84632] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + ACTIONS(6525), 1, + sym_extglob_pattern, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3222), 1, + sym__expression, + STATE(3223), 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(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(5066), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(5064), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148450,7 +154428,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, @@ -148465,32 +154442,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83245] = 6, + [84786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - aux_sym_concatenation_token1, - ACTIONS(5951), 1, - sym__concat, - STATE(994), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 5, + ACTIONS(1336), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, + ACTIONS(1334), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148502,6 +154476,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, @@ -148516,32 +154491,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83302] = 6, + [84838] = 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(1332), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(1330), 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, @@ -148550,9 +154523,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 +154540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83359] = 3, + [84890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1263), 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), 37, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148597,7 +154571,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, @@ -148614,89 +154587,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, - [83410] = 27, - ACTIONS(71), 1, + [84942] = 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(1332), 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(1330), 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, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + aux_sym_concatenation_token1, + 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(3006), 1, - sym__expression, - STATE(7112), 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, - [83509] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [84994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1362), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148706,8 +154658,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148735,16 +154687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83560] = 3, + [85046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1304), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(1302), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148783,17 +154736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83611] = 3, + [85098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1364), 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(1362), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148804,6 +154756,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 +154767,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, @@ -148830,89 +154783,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, - [83662] = 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(2806), 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, - 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, - [83761] = 3, + [85150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1320), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148922,8 +154805,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148933,7 +154816,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, @@ -148950,22 +154832,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, - [83812] = 5, + [85202] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, + ACTIONS(6527), 1, sym__special_character, - STATE(1868), 1, + STATE(1814), 1, aux_sym__literal_repeat1, - ACTIONS(5689), 6, + ACTIONS(1372), 5, 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(1370), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148976,6 +154858,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, @@ -149001,16 +154885,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83867] = 3, + [85258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6530), 1, sym__concat, + STATE(1845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1281), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149034,7 +154923,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,104 +154937,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83918] = 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(2812), 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, - 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, - [84017] = 5, + [85316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 6, + ACTIONS(5058), 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), 35, + ACTIONS(5056), 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, @@ -149159,6 +154973,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, @@ -149171,21 +154986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84072] = 6, + [85368] = 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(1316), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1314), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149195,8 +155005,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, @@ -149206,8 +155017,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, @@ -149222,16 +155035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84129] = 3, + [85420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1360), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1358), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149241,8 +155055,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149270,89 +155084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84180] = 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(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, + [85472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1356), 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(1354), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149363,6 +155105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149390,17 +155133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84330] = 3, + [85524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1328), 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(1326), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149411,6 +155154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149420,7 +155164,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, @@ -149437,18 +155180,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, - [84381] = 3, + [85576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1332), 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(1330), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149459,6 +155203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149468,7 +155213,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, @@ -149485,17 +155229,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, - [84432] = 3, + [85628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1344), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1342), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149505,8 +155251,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149534,94 +155280,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84483] = 27, - ACTIONS(71), 1, + [85680] = 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(1263), 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(1261), 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, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + aux_sym_concatenation_token1, + 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(2825), 1, - sym__expression, - STATE(6817), 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, - [84582] = 6, + sym_word, + [85732] = 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(1324), 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(5130), 35, + ACTIONS(1322), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149631,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, @@ -149641,8 +155360,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, @@ -149657,22 +155378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84639] = 6, + [85784] = 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(1336), 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(5134), 35, + ACTIONS(1334), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149683,6 +155399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149694,6 +155411,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 +155425,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, - [84696] = 5, + [85836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, - sym__special_character, - STATE(1843), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(1340), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 37, + ACTIONS(1338), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149731,8 +155448,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149742,9 +155458,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 +155475,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, - [84751] = 3, + [85888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(1320), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 38, + ACTIONS(1318), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149789,9 +155507,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 +155523,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, + [85940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 6, + ACTIONS(1316), 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(1314), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149830,7 +155544,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, @@ -149840,10 +155557,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, @@ -149856,16 +155574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84857] = 3, + [85992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1356), 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), 38, + ACTIONS(1354), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149875,7 +155595,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, @@ -149904,88 +155623,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84908] = 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(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, - 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, - [85007] = 3, + [86044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, + ACTIONS(6462), 1, + aux_sym_concatenation_token1, + ACTIONS(6464), 1, sym__concat, + STATE(1714), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5978), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(5976), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -149995,7 +155648,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, @@ -150006,10 +155658,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, @@ -150023,17 +155673,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, - [85058] = 3, + [86102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 38, + ACTIONS(1362), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150043,8 +155695,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150054,7 +155706,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, @@ -150071,17 +155722,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, - [85109] = 3, + [86154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1312), 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(1248), 38, + ACTIONS(1310), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150091,7 +155745,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,7 +155755,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, @@ -150119,33 +155771,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, - [85160] = 5, + [86206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 6, + ACTIONS(6110), 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(5561), 35, + ACTIONS(6108), 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, @@ -150158,6 +155809,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, @@ -150170,16 +155822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85215] = 3, + [86258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, + ACTIONS(6398), 1, + aux_sym_concatenation_token1, + ACTIONS(6500), 1, sym__concat, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 38, + ACTIONS(5902), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150189,8 +155846,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150203,7 +155860,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, @@ -150218,19 +155874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85266] = 5, + [86316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5961), 1, - sym__special_character, - STATE(1811), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(6398), 1, + aux_sym_concatenation_token1, + ACTIONS(6500), 1, + sym__concat, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(5906), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150240,10 +155898,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150253,9 +155909,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, @@ -150268,16 +155926,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85321] = 3, + [86374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(6532), 1, + aux_sym_concatenation_token1, + ACTIONS(6535), 1, sym__concat, + STATE(1836), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1261), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150287,7 +155951,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, @@ -150298,10 +155961,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, @@ -150315,49 +155976,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, - [85372] = 5, + [86432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(5066), 6, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5064), 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, @@ -150366,20 +156010,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [85427] = 5, + 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, + [86484] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6540), 1, + sym_extglob_pattern, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(2866), 1, + sym__extglob_blob, + STATE(3281), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, + ACTIONS(6542), 1, sym__special_character, - STATE(1870), 1, + STATE(1779), 1, aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(5904), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(5902), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150389,8 +156123,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, @@ -150416,16 +156152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85482] = 3, + [86642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(6544), 1, + sym__special_character, + STATE(1840), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 38, + ACTIONS(1370), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150435,8 +156174,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, @@ -150446,12 +156187,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, @@ -150463,22 +156201,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, - [85533] = 3, + [86698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(5066), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(5064), 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, @@ -150486,6 +156226,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, @@ -150497,7 +156238,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, @@ -150512,16 +156252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85584] = 3, + [86750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6547), 1, sym__concat, + STATE(1845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1275), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150545,7 +156290,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, @@ -150560,21 +156304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85635] = 5, + [86808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 6, + ACTIONS(1360), 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), 35, + ACTIONS(1358), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150585,6 +156325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150594,10 +156335,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, @@ -150609,22 +156351,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, - [85690] = 5, + [86860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5955), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 6, + ACTIONS(1356), 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(1354), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150635,6 +156374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150644,10 +156384,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, @@ -150659,21 +156400,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, - [85745] = 5, + [86912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(5186), 5, + ACTIONS(6549), 1, + aux_sym_concatenation_token1, + ACTIONS(6552), 1, + sym__concat, + STATE(1845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 36, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150694,9 +156437,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, @@ -150708,18 +156453,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, - [85800] = 3, + [86970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1320), 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), 38, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150729,7 +156475,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, @@ -150758,16 +156503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85851] = 3, + [87022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1344), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1342), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150777,8 +156523,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150788,7 +156534,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, @@ -150805,86 +156550,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, - [85902] = 7, + [87074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1368), 6, sym_file_descriptor, - ACTIONS(5872), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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_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, - [85961] = 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, - sym_test_operator, - sym__brace_start, - ACTIONS(5862), 11, - 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_RPAREN, 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_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150892,10 +156582,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, @@ -150909,21 +156599,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, - [86020] = 5, + [87126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 5, + ACTIONS(1336), 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(5687), 36, + ACTIONS(1334), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150933,7 +156622,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, @@ -150944,10 +156632,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, @@ -150959,17 +156648,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, - [86075] = 3, + [87178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1368), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1366), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -150979,8 +156669,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, @@ -150990,7 +156682,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, @@ -151008,32 +156699,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86126] = 5, + [87230] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, - sym__special_character, - STATE(1827), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, 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, + ACTIONS(6559), 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, @@ -151041,10 +156721,25 @@ 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(6557), 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(6555), 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, @@ -151056,22 +156751,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, - [86181] = 5, + [87290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 5, + ACTIONS(1340), 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(1338), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151081,7 +156773,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, @@ -151094,7 +156785,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, @@ -151108,16 +156801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86236] = 3, + [87342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(5728), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(5726), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151127,6 +156820,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, @@ -151156,16 +156850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86287] = 3, + [87394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1368), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 38, + ACTIONS(1366), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151187,6 +156881,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, @@ -151204,16 +156899,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86338] = 3, + [87446] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(5902), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151224,8 +156925,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, @@ -151235,9 +156934,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, @@ -151252,16 +156951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86389] = 3, + [87504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(5906), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151271,7 +156976,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, @@ -151282,9 +156986,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, @@ -151298,31 +157002,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, - [86440] = 3, + [87562] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 38, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6559), 11, 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, @@ -151330,8 +157025,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_LT_LT_LT, + ACTIONS(6557), 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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -151348,20 +157056,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86491] = 5, + [87622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 5, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, + sym__concat, + STATE(1677), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5594), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 36, + ACTIONS(5592), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151371,7 +157081,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, @@ -151382,10 +157091,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, @@ -151397,17 +157106,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, - [86546] = 3, + [87680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, + sym__concat, + STATE(1683), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5602), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 38, + ACTIONS(5600), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151418,8 +157134,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, @@ -151446,16 +157160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86597] = 3, + [87738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1348), 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(1284), 38, + ACTIONS(1346), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151465,7 +157181,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, @@ -151494,16 +157209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86648] = 3, + [87790] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(6490), 1, + aux_sym_concatenation_token1, + ACTIONS(6569), 1, + sym__concat, + STATE(1771), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 38, + ACTIONS(1281), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151514,8 +157235,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, @@ -151542,17 +157261,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86699] = 3, + [87848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 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(2176), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151572,9 +157296,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, @@ -151588,18 +157312,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, - [86750] = 3, + [87906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 38, + ACTIONS(4941), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151610,8 +157339,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,9 +157348,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, @@ -151638,17 +157365,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86801] = 3, + [87964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 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(4945), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151668,9 +157400,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, @@ -151684,19 +157416,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, - [86852] = 3, + [88022] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(6571), 1, + sym__special_character, + STATE(1865), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1370), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151707,6 +157441,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, @@ -151718,9 +157454,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, @@ -151734,17 +157468,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86903] = 3, + [88078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, - sym_file_descriptor, + ACTIONS(6462), 1, + aux_sym_concatenation_token1, + ACTIONS(6464), 1, sym__concat, + STATE(1793), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6008), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(6006), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151766,7 +157505,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, @@ -151782,19 +157520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86954] = 5, + [88136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, - sym__special_character, - STATE(1843), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1352), 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(1316), 37, + ACTIONS(1350), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151805,8 +157542,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, @@ -151818,7 +157553,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, @@ -151832,17 +157569,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87009] = 3, + [88188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(6490), 1, + aux_sym_concatenation_token1, + ACTIONS(6519), 1, sym__concat, + STATE(1861), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(5902), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151862,9 +157604,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, @@ -151878,19 +157620,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, - [87060] = 3, + [88246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(1340), 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(1338), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151901,6 +157642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151928,16 +157670,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87111] = 3, + [88298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151948,8 +157691,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151959,6 +157701,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 +157719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87162] = 3, + [88350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1352), 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(1308), 37, + ACTIONS(1350), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -151997,6 +157740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152006,6 +157750,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, @@ -152022,19 +157767,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, - [87213] = 3, + [88402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(2180), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152054,9 +157803,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, @@ -152070,44 +157819,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87264] = 6, - ACTIONS(71), 1, + [88460] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5972), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5974), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1878), 1, + STATE(1669), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 15, + ACTIONS(5054), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5052), 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), 25, + [88518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(1672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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, @@ -152115,29 +157910,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, - [87321] = 6, + sym_word, + [88576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1753), 1, + STATE(1669), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(5724), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(5722), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152147,7 +157949,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, @@ -152158,6 +157959,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 +157976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87378] = 6, + [88634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(6142), 1, sym__concat, - STATE(1757), 1, + STATE(1672), 1, aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(5728), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 36, + ACTIONS(5726), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152198,7 +158001,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, @@ -152209,6 +158011,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, @@ -152225,17 +158028,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87435] = 3, + [88692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1348), 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(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152246,6 +158049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152255,6 +158059,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, @@ -152271,19 +158076,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, - [87486] = 3, + [88744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1316), 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(1314), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152293,6 +158097,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 +158126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87537] = 3, + [88796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1263), 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(1264), 37, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152341,6 +158146,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, @@ -152369,16 +158175,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87588] = 3, + [88848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(6490), 1, + aux_sym_concatenation_token1, + ACTIONS(6519), 1, sym__concat, + STATE(1757), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 38, + ACTIONS(5906), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152388,7 +158200,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, @@ -152399,9 +158210,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 +158226,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, - [87639] = 3, + [88906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, + ACTIONS(1348), 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(1280), 37, + ACTIONS(1346), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152465,17 +158276,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87690] = 3, + [88958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(6470), 1, + aux_sym_concatenation_token1, + ACTIONS(6472), 1, + sym__concat, + STATE(1732), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5978), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5976), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [89016] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6576), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6578), 1, + sym_variable_name, + STATE(7212), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6574), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5619), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [89084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 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(1292), 37, + ACTIONS(1310), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152485,6 +158405,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, @@ -152495,6 +158416,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, @@ -152511,18 +158433,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, + [89136] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6470), 1, + aux_sym_concatenation_token1, + ACTIONS(6472), 1, + sym__concat, + STATE(1739), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6008), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6006), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [87741] = 3, + [89194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1304), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1302), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152544,6 +158517,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, @@ -152561,16 +158535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87792] = 3, + [89246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1304), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1302), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152609,17 +158584,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87843] = 3, + [89298] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6540), 1, + sym_extglob_pattern, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(2866), 1, + sym__extglob_blob, + STATE(3605), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(6380), 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, + ACTIONS(6378), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152629,7 +158677,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, @@ -152639,9 +158690,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, @@ -152655,19 +158706,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, - [87894] = 3, + [89452] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6540), 1, + sym_extglob_pattern, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(2866), 1, + sym__extglob_blob, + STATE(3234), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89554] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, + STATE(1677), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(5722), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152689,7 +158818,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, @@ -152705,17 +158833,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87945] = 3, + [89612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, + STATE(1683), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(5726), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152737,7 +158870,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, @@ -152753,28 +158885,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87996] = 3, + [89670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(4947), 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), 37, + ACTIONS(4945), 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, @@ -152783,9 +158917,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, @@ -152799,19 +158933,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, - [88047] = 3, + [89722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1308), 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(1306), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152821,6 +158954,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, @@ -152831,6 +158965,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, @@ -152847,86 +158982,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, - [88098] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5976), 1, sym_word, - ACTIONS(5979), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5982), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5985), 1, - anon_sym_DOLLAR, - ACTIONS(5988), 1, - sym__special_character, - ACTIONS(5991), 1, - anon_sym_DQUOTE, - ACTIONS(5997), 1, - aux_sym_number_token1, - ACTIONS(6000), 1, - aux_sym_number_token2, - ACTIONS(6003), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6006), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6009), 1, - anon_sym_BQUOTE, - ACTIONS(6012), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6018), 1, - sym_test_operator, - ACTIONS(6021), 1, - sym__brace_start, - STATE(3442), 1, - aux_sym__literal_repeat1, - ACTIONS(5994), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6015), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - 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, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88187] = 3, + [89774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1364), 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), 37, + ACTIONS(1362), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -152964,41 +159032,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [88238] = 5, - ACTIONS(71), 1, + [89826] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1849), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(237), 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(276), 25, + ACTIONS(6384), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6382), 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_LPAREN, + 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, @@ -153006,40 +159067,53 @@ 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, - [88293] = 5, + sym_word, + [89878] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6024), 1, - sym__special_character, - STATE(1868), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 6, - sym_file_descriptor, + ACTIONS(6578), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, + ACTIONS(6581), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, - anon_sym_SEMI, + STATE(7212), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6574), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5619), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -153047,11 +159121,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, @@ -153064,71 +159138,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88348] = 6, - ACTIONS(71), 1, + [89946] = 3, + ACTIONS(3), 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, - 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(1209), 25, + ACTIONS(1324), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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_LPAREN, + 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, + 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, - [88405] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [89998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6029), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(1669), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153138,7 +159212,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, @@ -153153,6 +159226,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, @@ -153165,16 +159239,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88460] = 3, + [90056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, + STATE(1677), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 38, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153185,8 +159265,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, @@ -153198,7 +159276,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, @@ -153212,17 +159289,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, - [88511] = 3, + [90114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1368), 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), 38, + ACTIONS(1366), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153232,7 +159312,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, @@ -153243,6 +159322,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, @@ -153259,90 +159339,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, - [88562] = 27, - ACTIONS(71), 1, + [90166] = 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(6424), 1, sym__special_character, - ACTIONS(6032), 1, - sym__regex_no_space, - STATE(2451), 1, + STATE(1814), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5270), 5, + ACTIONS(5904), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(5902), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153364,10 +159375,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, @@ -153379,34 +159390,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, - [88712] = 6, + [90222] = 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(5389), 4, + ACTIONS(6110), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, + ACTIONS(6108), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153415,6 +159423,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, @@ -153430,34 +159439,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, - [88769] = 6, + [90274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(5874), 1, + ACTIONS(5182), 1, sym__concat, - STATE(1767), 1, + STATE(1773), 1, aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(276), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 36, - 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_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153466,6 +159475,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, @@ -153481,18 +159491,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, + [90332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, sym__concat, + STATE(1911), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 38, + ACTIONS(1271), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153502,9 +159516,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, @@ -153516,7 +159529,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, @@ -153530,42 +159542,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88877] = 5, - ACTIONS(71), 1, + [90390] = 6, + ACTIONS(3), 1, sym_comment, - STATE(1878), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6034), 2, - sym__concat, + ACTIONS(5180), 1, 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), 25, + ACTIONS(5182), 1, + sym__concat, + STATE(1781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1287), 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, @@ -153573,49 +159582,52 @@ 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, - [88932] = 5, - ACTIONS(71), 1, + sym_word, + [90448] = 7, + ACTIONS(3), 1, sym_comment, - STATE(1869), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 2, - sym__concat, + ACTIONS(5180), 1, 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(5182), 1, + sym__concat, + ACTIONS(6583), 1, + anon_sym_LPAREN, + STATE(1781), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1287), 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_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, @@ -153623,24 +159635,30 @@ 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, - [88987] = 3, + sym_word, + [90508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1324), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 38, + ACTIONS(1322), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153650,8 +159668,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, @@ -153661,6 +159680,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, @@ -153677,30 +159697,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, - [89038] = 3, + [90560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(6110), 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), 38, + ACTIONS(6108), 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, @@ -153709,9 +159730,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, @@ -153725,217 +159746,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, - [89089] = 6, - ACTIONS(71), 1, + [90612] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, - anon_sym_LPAREN, - 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), 24, + ACTIONS(1368), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89146] = 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(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, - ACTIONS(5897), 1, - sym__regex_no_space, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3243), 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, - [89245] = 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, - 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(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, - 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, - [89344] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [90664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 5, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6586), 1, + sym__concat, + STATE(1934), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 36, + ACTIONS(1281), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -153956,10 +159831,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, @@ -153971,42 +159846,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, - [89399] = 5, - ACTIONS(71), 1, + [90722] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1849), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5972), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 25, + ACTIONS(1336), 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(1334), 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, @@ -154014,29 +159882,33 @@ 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, - [89454] = 6, + sym_word, + [90774] = 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(1304), 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(1302), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154058,6 +159930,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, @@ -154073,15 +159946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89511] = 3, + [90826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(2178), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 39, + ACTIONS(2176), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154121,32 +159995,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89562] = 6, + [90878] = 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(1348), 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), 35, + ACTIONS(1346), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154155,9 +160026,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, @@ -154171,33 +160042,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, - [89619] = 6, + [90930] = 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(1352), 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), 35, + ACTIONS(1350), 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_RBRACE, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154206,9 +160075,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, @@ -154222,17 +160091,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, - [89676] = 3, + [90982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1348), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 38, + ACTIONS(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154242,8 +160113,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154271,20 +160142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89727] = 5, + [91034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 1, - sym__special_character, - STATE(1892), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1360), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(1358), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154294,8 +160161,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, @@ -154307,7 +160175,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, @@ -154321,32 +160191,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89782] = 6, + [91086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(6386), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(6588), 1, sym__concat, - STATE(1778), 1, + STATE(1934), 1, aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(1277), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 35, + ACTIONS(1275), 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_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, @@ -154355,7 +160226,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, @@ -154371,33 +160241,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [89839] = 6, + [91144] = 10, 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(4305), 5, + ACTIONS(4828), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6578), 1, + sym_variable_name, + STATE(7212), 1, + sym_subscript, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5619), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4732), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4303), 35, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4720), 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, @@ -154405,7 +160282,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, @@ -154423,22 +160299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89896] = 6, + [91210] = 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(1340), 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), 35, + ACTIONS(1338), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154458,8 +160330,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, @@ -154474,16 +160348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89953] = 3, + [91262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1326), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154493,8 +160367,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, @@ -154520,96 +160396,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, - [90004] = 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, - 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(6042), 1, - sym__regex_no_space, - 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_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, - [90103] = 6, + [91314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(5180), 1, aux_sym_concatenation_token1, - ACTIONS(5138), 1, + ACTIONS(5182), 1, sym__concat, - STATE(1778), 1, + STATE(1773), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 5, + ACTIONS(1273), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 35, + ACTIONS(1271), 36, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -154618,6 +160421,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_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -154645,32 +160449,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90160] = 6, + [91372] = 9, 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, - sym_file_descriptor, + ACTIONS(6578), 1, + sym_variable_name, + STATE(7212), 1, + sym_subscript, + ACTIONS(4732), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4820), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 35, + STATE(5619), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 16, 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, @@ -154679,6 +160486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4720), 17, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -154696,32 +160504,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90217] = 6, + [91436] = 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(4309), 5, + ACTIONS(6590), 1, + sym__special_character, + STATE(1840), 1, + aux_sym__literal_repeat1, + ACTIONS(5978), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 35, + ACTIONS(5976), 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_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, @@ -154730,11 +160539,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, @@ -154746,33 +160553,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, - [90274] = 6, + [91492] = 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(1344), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 35, + ACTIONS(1342), 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, @@ -154781,9 +160587,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, @@ -154798,32 +160604,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90331] = 6, + [91544] = 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(1225), 5, + ACTIONS(1312), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(1310), 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_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, @@ -154835,6 +160638,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, @@ -154849,19 +160653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90388] = 5, + [91596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6044), 1, - sym__special_character, - STATE(1721), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(1336), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 37, + ACTIONS(1334), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154871,6 +160672,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, @@ -154883,10 +160685,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, @@ -154899,16 +160702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90443] = 3, + [91648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1338), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154918,8 +160721,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, @@ -154945,22 +160750,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, - [90494] = 5, + [91700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym__special_character, - STATE(1870), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 5, + ACTIONS(2182), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 36, + ACTIONS(2180), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -154970,8 +160770,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, @@ -154985,6 +160787,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, @@ -154997,16 +160800,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90549] = 3, + [91752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(6414), 1, + aux_sym_concatenation_token1, + ACTIONS(6468), 1, + sym__concat, + STATE(1671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 38, + ACTIONS(5902), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155028,7 +160836,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, @@ -155045,33 +160852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90600] = 8, + [91810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6414), 1, + aux_sym_concatenation_token1, + ACTIONS(6468), 1, + sym__concat, + STATE(1697), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, sym_file_descriptor, - ACTIONS(6046), 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(5906), 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_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, @@ -155079,8 +160887,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, @@ -155097,33 +160904,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90660] = 8, + [91868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1308), 7, sym_file_descriptor, - ACTIONS(6049), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155131,10 +160934,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 +160951,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, - [90720] = 8, + [91920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6592), 1, + aux_sym_concatenation_token1, + ACTIONS(6595), 1, + sym__concat, + STATE(1934), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, - ACTIONS(6052), 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(1261), 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, @@ -155183,8 +160987,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, @@ -155200,18 +161003,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, + [91978] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, sym_word, - [90780] = 3, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6540), 1, + sym_extglob_pattern, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(2866), 1, + sym__extglob_blob, + STATE(3169), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 6, + ACTIONS(1312), 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(1310), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155221,6 +161099,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, @@ -155247,18 +161126,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, - [90830] = 3, + [92132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 6, + ACTIONS(6424), 1, + sym__special_character, + STATE(1814), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 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(4941), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155269,6 +161152,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, @@ -155278,10 +161163,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, @@ -155293,18 +161178,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, - [90880] = 3, + [92188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(1308), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 37, + ACTIONS(1306), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -155314,8 +161198,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, @@ -155325,6 +161210,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, @@ -155342,110 +161228,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, 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, + [92240] = 3, + ACTIONS(3), 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, + ACTIONS(1316), 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(1314), 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, @@ -155453,563 +161262,129 @@ 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_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91080] = 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(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_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, - [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, sym_word, - ACTIONS(4305), 24, + [92292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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_LT_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, - [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, - 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(2961), 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, - [91326] = 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, + [92344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 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(1354), 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, - 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, - 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(2995), 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, - [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, - 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, - [91518] = 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(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, - 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_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(2964), 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, - [91710] = 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, + aux_sym__simple_variable_name_token1, 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, + [92396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(1364), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 37, + ACTIONS(1362), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156019,8 +161394,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, @@ -156047,16 +161424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91856] = 3, + [92448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 37, + ACTIONS(1346), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156066,8 +161443,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, @@ -156093,352 +161471,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, - [91906] = 6, - ACTIONS(71), 1, + [92500] = 3, + 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(1348), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, + 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, - [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_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_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(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, - 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_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, + [92552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6600), 1, aux_sym_concatenation_token1, - ACTIONS(5957), 1, + ACTIONS(6602), 1, sym__concat, - STATE(1991), 1, + STATE(1958), 1, aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(1273), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156448,6 +161546,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, @@ -156474,21 +161573,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92402] = 6, + [92609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(1992), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(6604), 1, + sym__special_character, + STATE(2030), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 35, + ACTIONS(5722), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156511,7 +161610,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, @@ -156523,88 +161621,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, - [92458] = 26, - ACTIONS(71), 1, + [92664] = 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(6606), 1, + sym__special_character, + STATE(2075), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 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, - 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(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(2970), 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, - [92554] = 3, + sym_word, + [92719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 6, - sym_file_descriptor, + ACTIONS(6608), 1, + aux_sym_concatenation_token1, + ACTIONS(6610), 1, sym__concat, + STATE(2189), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 36, + ACTIONS(1271), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -156626,7 +161710,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, @@ -156641,41 +161724,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92604] = 6, - ACTIONS(71), 1, + [92776] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, - aux_sym_concatenation_token1, - ACTIONS(6057), 1, + ACTIONS(1368), 6, + sym_file_descriptor, sym__concat, - STATE(2044), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 15, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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, - ACTIONS(1229), 24, + [92827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 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(1314), 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, @@ -156683,115 +161805,95 @@ 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_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, + [92878] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1260), 15, + ACTIONS(1263), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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, - ACTIONS(1262), 27, + [92929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 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(1302), 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 +161902,90 @@ 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, - [92806] = 26, - ACTIONS(71), 1, + sym_word, + [92980] = 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(1324), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, - 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, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, 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, + 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, - [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_DOLLAR_LPAREN, 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, + [93031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1312), 6, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156982,10 +161993,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, @@ -157000,207 +162012,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93058] = 26, - ACTIONS(71), 1, + [93082] = 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(1308), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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, - 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, + aux_sym_concatenation_token1, + 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(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, + 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, - [93154] = 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(2636), 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, - [93250] = 26, + sym_word, + [93133] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(537), 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(541), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(6523), 1, sym__special_character, - STATE(2407), 1, + ACTIONS(6612), 1, + sym__regex_no_space, + STATE(2814), 1, aux_sym__literal_repeat1, - STATE(2637), 1, + STATE(3187), 1, sym__expression, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1079), 2, + ACTIONS(181), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1081), 2, + ACTIONS(183), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1089), 2, + ACTIONS(525), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2719), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157210,17 +162132,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [93346] = 3, + [93232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1320), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, + ACTIONS(1318), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157240,6 +162162,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, @@ -157257,437 +162180,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93396] = 26, - ACTIONS(71), 1, + [93283] = 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(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6614), 1, + sym__concat, + STATE(1962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + 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__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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(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, + [93340] = 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(1328), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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, - 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(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, + [93391] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6616), 1, + sym__concat, + STATE(1962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + 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, + [93448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1332), 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(1330), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157707,6 +162360,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, @@ -157724,17 +162378,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94022] = 3, + [93499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(6618), 1, + aux_sym_concatenation_token1, + ACTIONS(6621), 1, sym__concat, + STATE(1962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, + ACTIONS(1261), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157744,6 +162402,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, @@ -157756,7 +162415,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, @@ -157771,86 +162429,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94072] = 26, - ACTIONS(71), 1, + [93556] = 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(1336), 6, + sym_file_descriptor, + sym__concat, 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(1334), 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, - 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, - 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(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, + aux_sym_number_token1, + aux_sym_number_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, - [94168] = 3, + sym_word, + [93607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1364), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(1362), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157860,7 +162497,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, @@ -157871,6 +162507,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, @@ -157888,156 +162525,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94218] = 26, - ACTIONS(71), 1, + [93658] = 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(1360), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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, - 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(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, + sym_word, + [93709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1356), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(1354), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158047,7 +162593,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, @@ -158058,6 +162603,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, @@ -158075,207 +162621,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94460] = 26, - ACTIONS(71), 1, + [93760] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1368), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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, 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(2642), 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, - [94556] = 26, + sym_word, + [93811] = 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, - sym_word, - ACTIONS(1073), 1, + ACTIONS(1153), 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(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, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(1071), 1, + ACTIONS(1173), 1, sym_word, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1075), 1, + ACTIONS(1175), 1, anon_sym_BANG, - ACTIONS(1083), 1, + ACTIONS(1181), 1, anon_sym_TILDE, - ACTIONS(1093), 1, + ACTIONS(1187), 1, sym_test_operator, - ACTIONS(5375), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(6598), 1, sym__special_character, - STATE(2407), 1, + ACTIONS(6624), 1, + sym__regex_no_space, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2646), 1, + STATE(3261), 1, sym__expression, - ACTIONS(393), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1079), 2, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1081), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1089), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - STATE(2608), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2403), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158285,157 +162741,112 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94748] = 26, - ACTIONS(71), 1, + [93910] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1344), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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, - 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(2647), 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, - [94844] = 26, - ACTIONS(71), 1, + sym_word, + [93961] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1316), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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, 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(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, + sym_word, + [94012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 6, + ACTIONS(1263), 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(5705), 36, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158445,6 +162856,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, @@ -158458,6 +162870,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,370 +162885,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94990] = 26, - ACTIONS(71), 1, + [94063] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1340), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 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, - 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, - ACTIONS(71), 1, + sym_word, + [94114] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1304), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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, 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(2650), 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, - [95182] = 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, + [94165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, 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(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(2946), 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, - [95278] = 26, - ACTIONS(71), 1, + sym_word, + [94216] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1312), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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, 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(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, - 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, + [94267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 6, + sym_file_descriptor, + sym__concat, 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(1346), 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, - 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, - 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(2911), 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, - [95470] = 5, + sym_word, + [94318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6062), 1, - sym__special_character, - STATE(2072), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 5, + ACTIONS(1352), 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(1350), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158855,9 +163155,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, @@ -158869,39 +163172,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [95524] = 3, - ACTIONS(71), 1, + [94369] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 15, + ACTIONS(1348), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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, - ACTIONS(1274), 27, + [94420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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_LPAREN, + 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, @@ -158910,75 +163255,137 @@ 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, - ACTIONS(71), 1, + sym_word, + [94471] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6626), 1, aux_sym_concatenation_token1, - ACTIONS(6064), 1, + ACTIONS(6628), 1, sym__concat, - STATE(2044), 1, + STATE(1982), 1, aux_sym_concatenation_repeat1, - ACTIONS(1207), 15, + ACTIONS(1283), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1209), 24, + [94528] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6626), 1, + aux_sym_concatenation_token1, + ACTIONS(6630), 1, + sym__concat, + STATE(1982), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [95630] = 3, + sym_word, + [94585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 6, + ACTIONS(6632), 1, + aux_sym_concatenation_token1, + ACTIONS(6635), 1, + sym__concat, + STATE(1982), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 36, + ACTIONS(1261), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -158989,6 +163396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159013,89 +163421,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, - [95680] = 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(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, - 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, - [95776] = 3, + [94642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 6, + ACTIONS(1368), 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(1366), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159106,6 +163442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159118,6 +163455,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 +163470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95826] = 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(3015), 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, - [95922] = 3, + [94693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 37, + ACTIONS(1314), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159221,8 +163489,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159232,6 +163500,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, @@ -159249,227 +163518,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95972] = 26, - ACTIONS(71), 1, + [94744] = 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, - 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(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, - [96068] = 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(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(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, - [96164] = 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(2912), 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, - [96260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5707), 6, + ACTIONS(1263), 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(5705), 36, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159480,6 +163538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159489,8 +163548,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, @@ -159504,109 +163565,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, - [96310] = 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(2979), 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, - [96406] = 3, - ACTIONS(71), 1, + [94795] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 27, + ACTIONS(1304), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -159615,24 +163600,30 @@ 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, - [96456] = 3, + sym_word, + [94846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1324), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 37, + ACTIONS(1322), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159642,8 +163633,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159656,6 +163647,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, @@ -159670,86 +163662,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96506] = 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(2914), 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, - [96602] = 3, + [94897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, + ACTIONS(6626), 1, + aux_sym_concatenation_token1, + ACTIONS(6638), 1, sym__concat, + STATE(1980), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 37, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159759,8 +163686,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159772,7 +163699,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, @@ -159787,37 +163713,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96652] = 3, - ACTIONS(71), 1, + [94954] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 27, + ACTIONS(1312), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -159826,25 +163747,30 @@ 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, - [96702] = 3, + sym_word, + [95005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 6, + ACTIONS(1308), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 36, + ACTIONS(1306), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159855,6 +163781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159864,6 +163791,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, @@ -159881,17 +163809,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96752] = 3, + [95056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 6, + ACTIONS(1320), 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(4437), 36, + ACTIONS(1318), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -159901,6 +163828,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, @@ -159914,6 +163842,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, @@ -159928,37 +163857,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96802] = 3, - ACTIONS(71), 1, + [95107] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 27, + ACTIONS(1328), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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_LPAREN, + 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, @@ -159967,95 +163891,30 @@ 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, - [96852] = 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(2870), 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, - [96948] = 3, + sym_word, + [95158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 36, + ACTIONS(1330), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160065,6 +163924,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, @@ -160075,6 +163935,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, @@ -160092,21 +163953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96998] = 6, + [95209] = 3, ACTIONS(3), 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(1336), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 35, + ACTIONS(1334), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160116,6 +163972,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, @@ -160126,8 +163983,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, @@ -160142,21 +164001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97054] = 6, + [95260] = 3, ACTIONS(3), 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(1364), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 35, + ACTIONS(1362), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160166,6 +164020,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, @@ -160176,8 +164031,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, @@ -160192,107 +164049,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97110] = 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(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_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, - ACTIONS(71), 1, + [95311] = 3, + ACTIONS(3), 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, + ACTIONS(1360), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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_LPAREN, + 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, @@ -160301,29 +164083,30 @@ 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, - [97256] = 6, + sym_word, + [95362] = 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(1356), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(1354), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160333,6 +164116,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, @@ -160343,8 +164127,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, @@ -160359,17 +164145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97312] = 3, + [95413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 36, + ACTIONS(1342), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160379,6 +164164,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, @@ -160389,6 +164175,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, @@ -160406,37 +164193,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97362] = 3, - ACTIONS(71), 1, + [95464] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 27, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 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_LPAREN, + 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, @@ -160445,111 +164227,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, - [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_DOLLAR_LPAREN, 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_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, - [97508] = 8, + sym_word, + [95515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 5, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, @@ -160557,10 +164270,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, @@ -160575,89 +164289,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97568] = 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(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, - 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, + [95566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6073), 1, - sym__special_character, - STATE(2001), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1352), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(1350), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160681,7 +164322,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, @@ -160694,17 +164337,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97718] = 3, + [95617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, + ACTIONS(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160714,6 +164356,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, @@ -160724,6 +164367,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, @@ -160741,37 +164385,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97768] = 3, - ACTIONS(71), 1, + [95668] = 3, + ACTIONS(3), 1, sym_comment, - 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, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 27, + ACTIONS(1320), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -160780,23 +164419,30 @@ 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, - [97818] = 3, + sym_word, + [95719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1328), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1326), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160806,10 +164452,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160819,8 +164463,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, @@ -160835,16 +164481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97868] = 3, + [95770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1330), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160854,8 +164500,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160865,6 +164511,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, @@ -160882,37 +164529,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97918] = 3, - ACTIONS(71), 1, + [95821] = 3, + ACTIONS(3), 1, sym_comment, - 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, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 27, + ACTIONS(1336), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -160921,24 +164563,30 @@ 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, - [97968] = 3, + sym_word, + [95872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 5, + ACTIONS(1364), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 37, + ACTIONS(1362), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160948,8 +164596,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160959,6 +164607,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, @@ -160976,16 +164625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98018] = 3, + [95923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(1360), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 37, + ACTIONS(1358), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -160995,8 +164644,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161006,6 +164655,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, @@ -161023,16 +164673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98068] = 3, + [95974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1356), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 37, + ACTIONS(1354), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161042,8 +164692,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161053,6 +164703,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, @@ -161070,16 +164721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98118] = 3, + [96025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 37, + ACTIONS(1342), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161089,8 +164740,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161100,6 +164751,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, @@ -161117,17 +164769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98168] = 3, + [96076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 6, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 36, + ACTIONS(1338), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161138,6 +164789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161147,6 +164799,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, @@ -161164,86 +164817,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98218] = 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(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, - 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, + [96127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1348), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1346), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161253,8 +164836,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161264,6 +164847,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, @@ -161281,16 +164865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98364] = 3, + [96178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, + ACTIONS(1352), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 37, + ACTIONS(1350), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161300,8 +164884,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161311,6 +164895,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, @@ -161328,103 +164913,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98414] = 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(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, + [96229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 5, sym_file_descriptor, - ACTIONS(6076), 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(1346), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161432,10 +164942,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, @@ -161450,16 +164961,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98570] = 3, + [96280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(6640), 1, + sym__special_character, + STATE(2015), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1292), 37, + ACTIONS(1370), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161469,7 +164985,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, @@ -161480,11 +164995,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, @@ -161497,32 +165011,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98620] = 7, + [96335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6606), 1, + sym__special_character, + STATE(2075), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 5, sym_file_descriptor, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(6248), 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_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, @@ -161530,12 +165044,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, @@ -161548,32 +165061,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98678] = 7, + [96390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6606), 1, + sym__special_character, + STATE(2075), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 5, sym_file_descriptor, - ACTIONS(5872), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5862), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(5052), 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_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, @@ -161581,12 +165094,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, @@ -161599,17 +165111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98736] = 3, + [96445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 6, + ACTIONS(6608), 1, + aux_sym_concatenation_token1, + ACTIONS(6610), 1, + sym__concat, + STATE(2189), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 36, + ACTIONS(5902), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161629,7 +165146,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, @@ -161646,17 +165162,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98786] = 3, + [96502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 6, - sym_file_descriptor, + ACTIONS(6608), 1, + aux_sym_concatenation_token1, + ACTIONS(6610), 1, sym__concat, + STATE(2190), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 36, + ACTIONS(5906), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161678,7 +165199,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, @@ -161693,16 +165213,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98836] = 3, + [96559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(6606), 1, + sym__special_character, + STATE(2075), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(5722), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161723,11 +165247,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, @@ -161740,17 +165263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98886] = 3, + [96614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 6, + ACTIONS(6643), 1, + sym__special_character, + STATE(2055), 1, + aux_sym__literal_repeat1, + ACTIONS(5978), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 36, + ACTIONS(5976), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161761,6 +165286,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, @@ -161772,9 +165299,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, @@ -161786,17 +165311,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, - [98936] = 3, + [96669] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 15, + ACTIONS(4726), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, + anon_sym_LT_LT, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6651), 1, + sym_variable_name, + STATE(7208), 1, + sym_subscript, + ACTIONS(6645), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5645), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 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, @@ -161804,45 +165348,31 @@ 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(1294), 27, + ACTIONS(4732), 20, 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_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98986] = 26, + [96738] = 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, @@ -161851,50 +165381,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(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6598), 1, + sym__special_character, + ACTIONS(6654), 1, + sym__regex_no_space, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2957), 1, + STATE(3261), 1, sym__expression, - ACTIONS(101), 2, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161904,20 +165442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99082] = 5, + [96837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6079), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1273), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(1271), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161927,7 +165460,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, @@ -161937,10 +165473,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, @@ -161952,21 +165488,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, - [99136] = 5, + [96888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(6392), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4732), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(4720), 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(6390), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161977,6 +165529,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, @@ -161986,33 +165540,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, - 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, - [99190] = 3, + [96943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 6, + ACTIONS(6656), 1, + sym__special_character, + STATE(2026), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 36, + ACTIONS(1370), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162022,7 +165562,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, @@ -162034,9 +165577,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, @@ -162049,65 +165590,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99240] = 3, - ACTIONS(71), 1, + [96998] = 7, + ACTIONS(3), 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), 27, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6557), 11, + 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_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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, - [99290] = 5, + sym_word, + [97057] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, - sym_file_descriptor, + ACTIONS(6562), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4161), 3, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4153), 17, + ACTIONS(6557), 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, + ACTIONS(6559), 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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -162124,38 +165694,15 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [99344] = 3, + [97116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 6, + ACTIONS(1273), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 36, + ACTIONS(1271), 39, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162165,7 +165712,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, @@ -162192,157 +165742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99394] = 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(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, + [97167] = 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(6659), 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(2030), 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_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 6, + ACTIONS(1372), 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(1370), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162362,11 +165776,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, @@ -162378,34 +165790,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, - [99636] = 8, + [97222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6662), 1, + sym__special_character, + STATE(2088), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, - ACTIONS(6084), 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(5722), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162413,12 +165825,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, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -162430,18 +165840,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, - [99696] = 3, + [97277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 6, + ACTIONS(1316), 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(1314), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162452,6 +165862,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, @@ -162461,9 +165873,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, @@ -162478,16 +165890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99746] = 3, + [97328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1263), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162497,8 +165909,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, @@ -162525,16 +165938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99796] = 3, + [97379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1368), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(1366), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162544,7 +165958,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, @@ -162571,17 +165984,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, - [99846] = 3, + [97430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1368), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1366), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162591,8 +166005,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, @@ -162619,205 +166034,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99896] = 26, - ACTIONS(71), 1, + [97481] = 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(1304), 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(1302), 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(1115), 1, + aux_sym_concatenation_token1, + 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(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_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, - [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, + sym_word, + [97532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(1324), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 37, + ACTIONS(1322), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162827,8 +166101,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, @@ -162838,9 +166113,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 +166130,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100192] = 5, - ACTIONS(71), 1, + [97583] = 5, + ACTIONS(3), 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, + ACTIONS(6664), 1, + sym__special_character, + STATE(2124), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5722), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [100246] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [97638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 1, - sym__special_character, - STATE(2087), 1, - aux_sym__literal_repeat1, - ACTIONS(5389), 4, + ACTIONS(1316), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5387), 36, + ACTIONS(1314), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -162926,7 +166200,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, @@ -162939,7 +166212,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, @@ -162953,86 +166228,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + [97689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 5, + ACTIONS(1263), 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(2156), 37, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163042,7 +166248,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, @@ -163053,9 +166258,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, @@ -163069,104 +166274,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, - [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, + [97740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1273), 5, sym_file_descriptor, - ACTIONS(6095), 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(1271), 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_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, @@ -163174,8 +166306,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, @@ -163192,87 +166324,17 @@ 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, + [97791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1312), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 36, + ACTIONS(1310), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163308,18 +166370,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, - [100748] = 3, + [97842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1312), 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(1310), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163330,6 +166392,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, @@ -163356,17 +166420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100798] = 3, + [97893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(1304), 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(1223), 36, + ACTIONS(1302), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163388,6 +166452,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, @@ -163403,17 +166468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [100848] = 3, + [97944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 6, + ACTIONS(1308), 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(1306), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163424,6 +166488,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, @@ -163450,16 +166516,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100898] = 3, + [97995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 5, + ACTIONS(1308), 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(4437), 37, + ACTIONS(1306), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163469,7 +166536,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, @@ -163480,9 +166546,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, @@ -163496,17 +166562,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, - [100948] = 3, + [98046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 5, + ACTIONS(1324), 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(5268), 37, + ACTIONS(1322), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163516,7 +166584,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, @@ -163529,6 +166596,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, @@ -163544,33 +166612,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [100998] = 8, + [98097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1320), 6, sym_file_descriptor, - ACTIONS(6098), 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(1318), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163578,10 +166641,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, @@ -163595,88 +166658,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, - [101058] = 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(2952), 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, - [101154] = 3, + [98148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1273), 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(1292), 36, + ACTIONS(1271), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163687,6 +166680,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, @@ -163698,7 +166693,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, @@ -163712,18 +166706,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, - [101204] = 3, + [98199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6602), 1, sym__concat, + STATE(1958), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 36, + ACTIONS(5902), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -163733,6 +166732,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, @@ -163745,7 +166745,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, @@ -163760,33 +166759,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101254] = 8, + [98256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6602), 1, + sym__concat, + STATE(1960), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, sym_file_descriptor, - ACTIONS(6101), 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(5906), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163794,8 +166793,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, @@ -163812,384 +166810,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101314] = 3, - ACTIONS(71), 1, + [98313] = 3, + ACTIONS(3), 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, + ACTIONS(1360), 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(1358), 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [101364] = 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_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(1306), 27, + [98364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 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(1354), 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, - anon_sym_DOLLAR_LBRACE, - 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, - 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(3016), 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, - [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, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 27, + [98415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 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(1326), 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, - 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, - 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(2916), 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, - [101656] = 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(3003), 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, - [101752] = 8, + aux_sym__simple_variable_name_token1, + sym_word, + [98466] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6666), 1, + sym__special_character, + STATE(2055), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, - ACTIONS(6104), 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(1370), 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_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, @@ -164197,12 +166987,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, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -164214,18 +167002,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, - [101812] = 3, + [98521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 6, + ACTIONS(1332), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 36, + ACTIONS(1330), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164261,34 +167050,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, - [101862] = 8, + [98572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1344), 6, sym_file_descriptor, - ACTIONS(6107), 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(1342), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164296,10 +167081,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, @@ -164313,91 +167098,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, - [101922] = 26, - ACTIONS(71), 1, + [98623] = 5, + 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, - 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(2920), 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, - [102018] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6110), 1, + ACTIONS(6669), 1, sym__special_character, - STATE(2072), 1, + STATE(2112), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(5904), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, + ACTIONS(5902), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164408,6 +167124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164417,6 +167134,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, @@ -164431,35 +167149,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, - [102072] = 8, + [98678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1336), 6, sym_file_descriptor, - ACTIONS(6113), 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(1334), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164467,10 +167179,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, @@ -164484,34 +167196,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, - [102132] = 8, + [98729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1340), 6, sym_file_descriptor, - ACTIONS(6116), 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(1338), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164519,10 +167227,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, @@ -164536,34 +167244,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, - [102192] = 8, + [98780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 6, sym_file_descriptor, - ACTIONS(6119), 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(1346), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164571,10 +167275,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, @@ -164588,16 +167292,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, + [98831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1352), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, + ACTIONS(1350), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164608,8 +167315,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, @@ -164621,6 +167326,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, @@ -164636,33 +167342,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [102302] = 8, + [98882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 6, sym_file_descriptor, - ACTIONS(6122), 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(1346), 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_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164670,10 +167371,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, @@ -164687,223 +167388,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [102362] = 5, - ACTIONS(71), 1, + [98933] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 24, + ACTIONS(1364), 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(1362), 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [102416] = 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(3001), 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, - [102512] = 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(2875), 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, - [102608] = 8, + aux_sym__simple_variable_name_token1, + sym_word, + [98984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1320), 5, sym_file_descriptor, - ACTIONS(6125), 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(1318), 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_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, @@ -164911,10 +167468,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, @@ -164929,16 +167486,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102668] = 3, + [99035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 5, + ACTIONS(1332), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 37, + ACTIONS(1330), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -164948,8 +167505,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, @@ -164961,6 +167519,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, @@ -164974,35 +167533,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, - [102718] = 8, + [99086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6671), 1, + sym__special_character, + STATE(2067), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, - ACTIONS(6128), 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(1370), 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_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, @@ -165010,12 +167567,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, @@ -165028,33 +167584,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102778] = 8, + [99141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6664), 1, + sym__special_character, + STATE(2124), 1, + aux_sym__literal_repeat1, + ACTIONS(5594), 5, sym_file_descriptor, - ACTIONS(6131), 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(5592), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165062,12 +167617,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, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -165079,17 +167632,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, - [102838] = 3, + [99196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(1360), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 37, + ACTIONS(1358), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165099,8 +167653,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, @@ -165112,6 +167667,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, @@ -165125,35 +167681,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, - [102888] = 8, + [99247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1356), 5, sym_file_descriptor, - ACTIONS(6134), 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(1354), 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_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, @@ -165161,10 +167712,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, @@ -165179,19 +167730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102948] = 5, + [99298] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6137), 1, + ACTIONS(6669), 1, sym__special_character, - STATE(2087), 1, + STATE(2112), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(6244), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(6242), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -165201,8 +167753,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165212,6 +167764,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, @@ -165226,35 +167779,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, - [103002] = 8, + [99353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6669), 1, + sym__special_character, + STATE(2112), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 5, sym_file_descriptor, - ACTIONS(6140), 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(4941), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165262,12 +167813,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, @@ -165280,103 +167830,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103062] = 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(2918), 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, - [103158] = 8, + [99408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6626), 1, + aux_sym_concatenation_token1, + ACTIONS(6638), 1, + sym__concat, + STATE(1980), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, sym_file_descriptor, - ACTIONS(6143), 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(5902), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165384,8 +167864,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, @@ -165402,33 +167881,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103218] = 8, + [99465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6626), 1, + aux_sym_concatenation_token1, + ACTIONS(6638), 1, + sym__concat, + STATE(1981), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, sym_file_descriptor, - ACTIONS(6146), 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(5906), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165436,8 +167915,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, @@ -165454,33 +167932,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103278] = 8, + [99522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6674), 1, + sym__special_character, + STATE(2075), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - ACTIONS(6149), 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(1370), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165488,12 +167965,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,33 +167982,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103338] = 8, + [99577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1328), 5, sym_file_descriptor, - ACTIONS(6152), 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(1326), 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_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, @@ -165540,10 +168012,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, @@ -165558,33 +168030,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103398] = 8, + [99628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1344), 5, sym_file_descriptor, - ACTIONS(6155), 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(1342), 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_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, @@ -165592,10 +168060,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, @@ -165610,33 +168078,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103458] = 8, + [99679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1336), 5, sym_file_descriptor, - ACTIONS(6158), 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(1334), 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_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, @@ -165644,10 +168108,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, @@ -165662,33 +168126,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103518] = 8, + [99730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1340), 5, sym_file_descriptor, - ACTIONS(6161), 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(1338), 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_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, @@ -165696,10 +168156,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, @@ -165714,33 +168174,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103578] = 8, + [99781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1364), 5, sym_file_descriptor, - ACTIONS(6164), 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(1362), 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_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, @@ -165748,10 +168204,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, @@ -165766,33 +168222,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103638] = 8, + [99832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6606), 1, + sym__special_character, + STATE(2075), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 5, sym_file_descriptor, - ACTIONS(6167), 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(6242), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165800,12 +168255,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, @@ -165818,103 +168272,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103698] = 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(2804), 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, - [103794] = 8, + [99887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 5, sym_file_descriptor, - ACTIONS(6170), 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(1346), 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_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, @@ -165922,10 +168302,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, @@ -165940,33 +168320,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103854] = 8, + [99938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1352), 5, sym_file_descriptor, - ACTIONS(6173), 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(1350), 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_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, @@ -165974,10 +168350,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, @@ -165992,33 +168368,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103914] = 8, + [99989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 5, sym_file_descriptor, - ACTIONS(6176), 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(1346), 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_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, @@ -166026,10 +168398,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, @@ -166044,33 +168416,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103974] = 8, + [100040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6669), 1, + sym__special_character, + STATE(2112), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 5, sym_file_descriptor, - ACTIONS(6179), 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(6248), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166078,12 +168449,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, @@ -166096,33 +168466,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104034] = 8, + [100095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6669), 1, + sym__special_character, + STATE(2112), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 5, sym_file_descriptor, - ACTIONS(6182), 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(5052), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166130,12 +168499,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, @@ -166148,33 +168516,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104094] = 8, + [100150] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + ACTIONS(6677), 1, + sym__regex_no_space, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3151), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6679), 1, + sym__special_character, + STATE(2088), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - ACTIONS(6185), 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(1370), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166182,12 +168621,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, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -166199,34 +168636,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, - [104154] = 8, + [100304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6669), 1, + sym__special_character, + STATE(2112), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 5, sym_file_descriptor, - ACTIONS(6188), 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(5722), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166234,12 +168671,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, @@ -166252,33 +168688,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104214] = 8, + [100359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6682), 1, + sym__concat, + STATE(1845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, sym_file_descriptor, - ACTIONS(6191), 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(1281), 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, @@ -166286,8 +168721,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, @@ -166304,33 +168739,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104274] = 8, + [100416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6684), 1, + sym__concat, + STATE(1845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, sym_file_descriptor, - ACTIONS(6194), 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(1275), 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, @@ -166338,8 +168772,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, @@ -166356,33 +168790,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104334] = 8, + [100473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6396), 1, + sym__concat, + STATE(2090), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, sym_file_descriptor, - ACTIONS(6197), 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(1271), 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, @@ -166390,8 +168823,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, @@ -166408,19 +168841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104394] = 5, + [100530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 1, - sym__special_character, - STATE(2149), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(1368), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1366), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166430,9 +168860,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, @@ -166444,7 +168873,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, @@ -166456,67 +168887,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, - [104448] = 3, - ACTIONS(71), 1, + [100581] = 3, + ACTIONS(3), 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, + ACTIONS(1316), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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_LPAREN, + 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, 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, - [104498] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [100632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - sym__special_character, - STATE(2001), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(1263), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 36, + ACTIONS(1261), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -166537,10 +168967,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, @@ -166552,166 +168983,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [104552] = 5, - ACTIONS(71), 1, + [100683] = 3, + ACTIONS(3), 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, - sym_word, - ACTIONS(4282), 24, + ACTIONS(1304), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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, 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, - [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_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(4439), 24, + [100734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, 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, - [104660] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [100785] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(185), 1, + ACTIONS(105), 1, anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(235), 1, sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(246), 1, anon_sym_BANG, - 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(395), 1, + ACTIONS(280), 1, sym_test_operator, - ACTIONS(397), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, sym__special_character, - STATE(2549), 1, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6654), 1, + sym__regex_no_space, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(2844), 1, + STATE(3226), 1, sym__expression, - ACTIONS(181), 2, + ACTIONS(101), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(103), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1165), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166721,235 +169153,69 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [104756] = 5, - 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4309), 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, - [104810] = 5, + [100884] = 27, 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(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(4313), 24, - 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, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [104864] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(185), 1, - anon_sym_TILDE, - ACTIONS(356), 1, + ACTIONS(1173), 1, sym_word, - ACTIONS(363), 1, - anon_sym_LPAREN, - ACTIONS(365), 1, + ACTIONS(1175), 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(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(6598), 1, sym__special_character, - STATE(2549), 1, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2894), 1, + STATE(3298), 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, + STATE(7463), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 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, - [104960] = 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(2853), 1, - sym__expression, - ACTIONS(181), 2, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -166959,88 +169225,87 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105056] = 26, - ACTIONS(71), 1, + [100983] = 5, + 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(6686), 1, + sym__special_character, + STATE(2015), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5052), 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(369), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, 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(2855), 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, - [105152] = 5, + sym_word, + [101038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 3, + ACTIONS(5728), 5, + sym_file_descriptor, 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(5726), 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, @@ -167058,7 +169323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5856), 19, + [101089] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6604), 1, + sym__special_character, + STATE(2030), 1, + aux_sym__literal_repeat1, + ACTIONS(5594), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5592), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167078,17 +169357,32 @@ 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, + 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, + [101144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 6, + ACTIONS(1312), 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(1310), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167098,6 +169392,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, @@ -167108,9 +169403,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, @@ -167124,34 +169419,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, - [105256] = 8, + [101195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1308), 5, sym_file_descriptor, - ACTIONS(6204), 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(1306), 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, @@ -167159,10 +169450,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, @@ -167176,34 +169467,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, - [105316] = 8, + [101246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6396), 1, + sym__concat, + STATE(2090), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 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(5902), 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, @@ -167211,8 +169502,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, @@ -167229,32 +169520,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105376] = 7, + [101303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5869), 1, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6396), 1, + sym__concat, + STATE(2091), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(5906), 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, @@ -167262,8 +169553,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, @@ -167280,7 +169571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105434] = 26, + [101360] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -167293,54 +169584,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1173), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1175), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1181), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1187), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2887), 1, + STATE(3264), 1, sym__expression, - ACTIONS(1125), 2, + STATE(7826), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167350,16 +169643,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105530] = 3, + [101459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6688), 1, + sym__concat, + STATE(1934), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1281), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167369,7 +169667,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, @@ -167380,7 +169677,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, @@ -167396,34 +169692,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, - [105580] = 8, + [101516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6690), 1, + sym__concat, + STATE(1934), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, sym_file_descriptor, - ACTIONS(6210), 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(1275), 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(5864), 11, + 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, + [101573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6686), 1, + sym__special_character, + STATE(2015), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5722), 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, @@ -167431,12 +169778,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, @@ -167449,67 +169795,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105640] = 26, + [101628] = 27, 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(1153), 1, anon_sym_LPAREN, - ACTIONS(365), 1, - anon_sym_BANG, - ACTIONS(367), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, - aux_sym_number_token1, - ACTIONS(383), 1, - aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(395), 1, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, sym_test_operator, - ACTIONS(397), 1, - sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(5797), 1, + ACTIONS(6598), 1, sym__special_character, - STATE(2549), 1, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2900), 1, + STATE(3358), 1, sym__expression, - ACTIONS(181), 2, + STATE(7334), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(183), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(379), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2847), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2309), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167519,33 +169867,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105736] = 8, + [101727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6692), 1, + sym__special_character, + STATE(2112), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - ACTIONS(6213), 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(1370), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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(5864), 11, + 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, + [101782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(6695), 1, + sym__concat, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, @@ -167553,8 +169950,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, @@ -167571,85 +169968,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105796] = 26, - ACTIONS(71), 1, + [101839] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(6697), 1, + sym__concat, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, - 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, + [101896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 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(5726), 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_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(2840), 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, - [105892] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [101947] = 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, @@ -167658,50 +170078,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(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2910), 1, + STATE(3299), 1, sym__expression, - ACTIONS(101), 2, + STATE(7998), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167711,7 +170139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105988] = 26, + [102046] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -167724,54 +170152,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1173), 1, sym_word, - ACTIONS(1149), 1, + ACTIONS(1175), 1, anon_sym_BANG, - ACTIONS(1155), 1, + ACTIONS(1181), 1, anon_sym_TILDE, - ACTIONS(1157), 1, - sym__special_character, - ACTIONS(1161), 1, + ACTIONS(1187), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2904), 1, + STATE(3171), 1, sym__expression, - ACTIONS(1125), 2, + STATE(7749), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1151), 2, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1153), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1159), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2381), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167781,33 +170211,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106084] = 8, + [102145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6380), 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(6378), 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_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, @@ -167815,8 +170241,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, @@ -167833,7 +170259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106144] = 26, + [102196] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -167846,54 +170272,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1173), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1175), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1181), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1187), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, + ACTIONS(6598), 1, sym__special_character, - STATE(2451), 1, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(2883), 1, + STATE(3207), 1, sym__expression, - ACTIONS(1125), 2, + STATE(7615), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -167903,33 +170331,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106240] = 8, + [102295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6384), 5, sym_file_descriptor, - ACTIONS(6219), 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(6382), 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_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, @@ -167937,8 +170361,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, @@ -167955,62 +170379,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106300] = 3, + [102346] = 27, 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), 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(1153), 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(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3305), 1, + sym__expression, + STATE(7740), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106350] = 26, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102445] = 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, @@ -168019,50 +170462,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(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - sym__special_character, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(3018), 1, + STATE(3344), 1, sym__expression, - ACTIONS(101), 2, + STATE(7854), 1, + sym__test_command_binary_expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(103), 2, + ACTIONS(1179), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1119), 2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2344), 9, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168072,33 +170523,29 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106446] = 8, + [102544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(2178), 5, sym_file_descriptor, - ACTIONS(6222), 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(2176), 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_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, @@ -168106,8 +170553,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, @@ -168124,33 +170571,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106506] = 8, + [102595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6699), 1, + sym__special_character, + STATE(2124), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1370), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168158,12 +170604,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, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -168175,34 +170619,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, - [106566] = 8, + [102650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(2182), 5, sym_file_descriptor, - ACTIONS(6228), 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(2180), 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_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, @@ -168210,8 +170651,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, @@ -168228,82 +170669,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106626] = 5, - ACTIONS(71), 1, + [102701] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1934), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4368), 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(4370), 24, + ACTIONS(6380), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6378), 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, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + aux_sym__simple_variable_name_token1, + sym_word, + [102752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6384), 5, sym_file_descriptor, - ACTIONS(6231), 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(6382), 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_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, @@ -168311,8 +170747,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, @@ -168328,151 +170763,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [106740] = 3, - ACTIONS(71), 1, + [102803] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 15, + ACTIONS(1320), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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_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, - ACTIONS(1215), 27, + [102854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [106790] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_TILDE, - ACTIONS(235), 1, + aux_sym__simple_variable_name_token1, 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, + [102905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 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(1326), 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, - 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, - 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, + aux_sym__simple_variable_name_token1, + sym_word, + [102956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1332), 5, sym_file_descriptor, - ACTIONS(6234), 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(1330), 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, @@ -168480,10 +170938,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, @@ -168497,97 +170955,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [106946] = 26, - ACTIONS(71), 1, + [103007] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(1316), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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(282), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [103058] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 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(1261), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + aux_sym_concatenation_token1, + 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, + aux_sym__simple_variable_name_token1, + sym_word, + [103109] = 5, ACTIONS(71), 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, + STATE(2180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6702), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(237), 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, @@ -168595,17 +171075,23 @@ 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(2273), 21, + ACTIONS(276), 25, 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, @@ -168614,23 +171100,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, - [107098] = 5, + [103164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6237), 1, + ACTIONS(6686), 1, sym__special_character, - STATE(2149), 1, + STATE(2015), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(5904), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, + ACTIONS(5902), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168641,8 +171128,52 @@ 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, + anon_sym_LT_AMP, + anon_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, + [103219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 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, @@ -168654,7 +171185,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, @@ -168666,11 +171199,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, - [107152] = 3, + [103270] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 15, + STATE(2181), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6702), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1287), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -168686,9 +171225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 27, + ACTIONS(1294), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -168705,7 +171243,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,33 +171251,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107202] = 8, + [103325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1304), 5, sym_file_descriptor, - ACTIONS(6240), 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(1302), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168748,10 +171280,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, @@ -168765,104 +171297,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [107262] = 26, + [103376] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(1384), 1, + anon_sym_LPAREN, + STATE(2181), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6702), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1287), 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(1294), 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(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, + [103433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1364), 5, sym_file_descriptor, - ACTIONS(6243), 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(1362), 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, - ACTIONS(5864), 11, + 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, + [103484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168870,10 +171427,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, @@ -168887,68 +171444,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [107418] = 26, - ACTIONS(71), 1, + [103535] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(1360), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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, - 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, + aux_sym__simple_variable_name_token1, + sym_word, + [103586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 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(1354), 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, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + aux_sym_concatenation_token1, + 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(2851), 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, + aux_sym__simple_variable_name_token1, + sym_word, + [103637] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(3798), 1, + aux_sym__literal_repeat1, + STATE(2153), 2, sym_concatenation, - STATE(2361), 9, + aux_sym_for_statement_repeat1, + STATE(3719), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168958,103 +171560,61 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2176), 10, + anon_sym_LT, + anon_sym_GT, + 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, + sym_word, + ACTIONS(2178), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 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(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(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_LBRACE, + 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, - [107610] = 8, + [103694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1344), 5, sym_file_descriptor, - ACTIONS(6246), 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(1342), 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, @@ -169062,10 +171622,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, @@ -169079,87 +171639,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, - [107670] = 26, - ACTIONS(71), 1, + [103745] = 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(1312), 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(1310), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - 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, + aux_sym_number_token1, + aux_sym_number_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, - [107766] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [103796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 5, + ACTIONS(1340), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 37, + ACTIONS(1338), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169180,9 +171719,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, @@ -169196,68 +171735,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [107816] = 26, - ACTIONS(71), 1, + [103847] = 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(1308), 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(1306), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + aux_sym_concatenation_token1, + 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(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(3242), 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, + aux_sym__simple_variable_name_token1, + sym_word, + [103898] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(3798), 1, + aux_sym__literal_repeat1, + STATE(2153), 2, sym_concatenation, - STATE(2557), 9, + aux_sym_for_statement_repeat1, + STATE(3719), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -169267,383 +171803,157 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107912] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, + ACTIONS(2180), 10, + anon_sym_LT, + anon_sym_GT, + 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, + sym_word, + ACTIONS(2182), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(1107), 1, - anon_sym_LPAREN, - ACTIONS(1109), 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(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(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_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, - [108008] = 26, - ACTIONS(71), 1, + [103955] = 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(1348), 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(1346), 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, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + aux_sym_concatenation_token1, + 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(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(3246), 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, - [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, + aux_sym__simple_variable_name_token1, 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(3247), 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, - [108200] = 26, - ACTIONS(71), 1, + [104006] = 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(1352), 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(1350), 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, - 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, + aux_sym_concatenation_token1, + 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, + aux_sym__simple_variable_name_token1, + sym_word, + [104057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 5, sym_file_descriptor, - ACTIONS(6249), 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(1346), 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, @@ -169651,10 +171961,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, @@ -169668,348 +171978,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, - [108452] = 26, + [104108] = 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, - 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, + ACTIONS(6704), 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(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(6707), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6710), 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(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, - 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, + ACTIONS(6713), 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, + ACTIONS(6716), 1, sym__special_character, - ACTIONS(1181), 1, - sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3253), 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, - [108740] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(256), 1, - anon_sym_DOLLAR, - ACTIONS(262), 1, + ACTIONS(6719), 1, + anon_sym_DQUOTE, + ACTIONS(6725), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(6728), 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, + ACTIONS(6731), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(6734), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6737), 1, + anon_sym_BQUOTE, + ACTIONS(6740), 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(6746), 1, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6749), 1, + sym__brace_start, + STATE(3798), 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, + ACTIONS(6722), 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, - [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_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3255), 1, - sym__expression, - ACTIONS(1125), 2, + ACTIONS(6743), 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, + STATE(2153), 2, sym_concatenation, - STATE(2557), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2189), 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(3719), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170019,33 +172047,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108932] = 8, + [104197] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6752), 1, + sym__special_character, + STATE(2026), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 4, sym_file_descriptor, - ACTIONS(6252), 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(5902), 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_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, @@ -170053,12 +172081,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, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -170071,77 +172097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108992] = 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(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, + [104252] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -170154,54 +172110,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(1201), 1, sym_word, - ACTIONS(1169), 1, + ACTIONS(1203), 1, anon_sym_BANG, - ACTIONS(1175), 1, + ACTIONS(1209), 1, anon_sym_TILDE, - ACTIONS(1177), 1, + ACTIONS(1211), 1, sym__special_character, - ACTIONS(1181), 1, + ACTIONS(1215), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - STATE(2312), 1, + ACTIONS(6654), 1, + sym__regex_no_space, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(3259), 1, + STATE(3219), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1171), 2, + ACTIONS(1205), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1173), 2, + ACTIONS(1207), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1179), 2, + ACTIONS(1213), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2557), 9, + STATE(2741), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -170211,33 +172169,28 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109184] = 8, + [104351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1320), 5, sym_file_descriptor, - ACTIONS(6255), 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(1318), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -170245,10 +172198,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, @@ -170262,104 +172215,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, - [109244] = 26, + [104402] = 11, 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, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(4826), 1, + anon_sym_LT_LT, + ACTIONS(6651), 1, + sym_variable_name, + STATE(7208), 1, + sym_subscript, + STATE(5645), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4828), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT_DASH, + STATE(5863), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 10, + anon_sym_LT, + anon_sym_GT, + 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(395), 1, + sym_word, + ACTIONS(4732), 20, + sym_file_descriptor, sym_test_operator, - ACTIONS(397), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(5797), 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, + anon_sym_DOLLAR_LBRACK, 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, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(393), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + 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, + [104469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(4947), 5, sym_file_descriptor, - ACTIONS(6258), 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(4945), 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_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, @@ -170367,8 +172303,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, @@ -170385,339 +172321,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109400] = 5, - ACTIONS(71), 1, + [104520] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6055), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4441), 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(4443), 24, + ACTIONS(1328), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [109454] = 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(2854), 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, - [109550] = 3, - 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, - 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(1310), 27, + [104571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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_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_BQUOTE, - ACTIONS(5890), 1, sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2857), 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, - [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, - 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(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, + aux_sym__simple_variable_name_token1, + sym_word, + [104622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5058), 5, sym_file_descriptor, - ACTIONS(6261), 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(5056), 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_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, @@ -170725,8 +172447,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, @@ -170743,33 +172465,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109852] = 8, + [104673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1336), 5, sym_file_descriptor, - ACTIONS(6264), 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(1334), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -170777,10 +172494,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, @@ -170794,227 +172511,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, - [109912] = 26, - ACTIONS(71), 1, + [104724] = 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, - 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(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, - 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(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, - 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_BQUOTE, - STATE(2312), 1, - aux_sym__literal_repeat1, - STATE(3004), 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, - [110200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5888), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1364), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 37, + ACTIONS(1362), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171024,8 +172532,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171035,9 +172543,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, @@ -171051,104 +172559,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, - [110250] = 26, - ACTIONS(71), 1, + [104775] = 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(6686), 1, sym__special_character, - STATE(2451), 1, + STATE(2015), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6244), 6, sym_file_descriptor, - ACTIONS(6267), 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(6242), 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, @@ -171156,12 +172594,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, @@ -171174,173 +172611,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110406] = 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(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, - 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_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, - aux_sym__literal_repeat1, - STATE(2886), 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, - [110598] = 8, + [104830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1360), 5, sym_file_descriptor, - ACTIONS(6270), 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(1358), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171348,10 +172640,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, @@ -171365,34 +172657,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, - [110658] = 8, + [104881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1356), 5, sym_file_descriptor, - ACTIONS(6273), 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(1354), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171400,10 +172688,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, @@ -171417,34 +172705,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, - [110718] = 8, + [104932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1344), 5, sym_file_descriptor, - ACTIONS(6276), 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(1342), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171452,10 +172736,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, @@ -171469,17 +172753,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, - [110778] = 3, + [104983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1340), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1338), 38, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171489,8 +172774,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -171502,6 +172787,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, @@ -171517,33 +172803,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [110828] = 8, + [105034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6686), 1, + sym__special_character, + STATE(2015), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 6, sym_file_descriptor, - ACTIONS(6279), 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(4941), 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, @@ -171551,12 +172836,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, @@ -171569,241 +172853,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110888] = 8, - ACTIONS(3), 1, + [105089] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6282), 1, - anon_sym_RPAREN, - ACTIONS(5872), 3, + ACTIONS(6651), 1, 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, + STATE(7208), 1, + sym_subscript, + STATE(5645), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5863), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4720), 5, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, - [110948] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6285), 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, + ACTIONS(4726), 7, 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_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(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, - [111008] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(4820), 10, sym_file_descriptor, - ACTIONS(6288), 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_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, + ACTIONS(4732), 14, + sym_test_operator, + sym__brace_start, 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, - [111068] = 8, + [105152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6606), 1, + sym__special_character, + STATE(2075), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 5, sym_file_descriptor, - ACTIONS(6291), 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(5902), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, - [111128] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, - sym_file_descriptor, - ACTIONS(6294), 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, @@ -171811,12 +172940,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, @@ -171829,33 +172957,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111188] = 8, + [105207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 5, sym_file_descriptor, - ACTIONS(6297), 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(1346), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171863,10 +172986,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, @@ -171880,34 +173003,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, - [111248] = 8, + [105258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1352), 5, sym_file_descriptor, - ACTIONS(6300), 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(1350), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171915,10 +173034,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, @@ -171932,34 +173051,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, - [111308] = 8, + [105309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(1348), 5, sym_file_descriptor, - ACTIONS(6303), 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(1346), 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171967,10 +173082,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, @@ -171984,34 +173099,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, - [111368] = 8, + [105360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, + sym__concat, + STATE(2108), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5978), 4, sym_file_descriptor, - ACTIONS(6306), 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(5976), 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, @@ -172019,8 +173134,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, @@ -172036,34 +173150,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, - [111428] = 8, + [105417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, + sym__concat, + STATE(2109), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6008), 4, sym_file_descriptor, - ACTIONS(6309), 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(6006), 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, @@ -172071,8 +173185,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, @@ -172088,33 +173201,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, - [111488] = 7, + [105474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5869), 1, + ACTIONS(6754), 1, + sym__special_character, + STATE(2067), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 4, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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_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, @@ -172122,12 +173236,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, @@ -172140,33 +173253,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111546] = 8, + [105529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6662), 1, + sym__special_character, + STATE(2088), 1, + aux_sym__literal_repeat1, + ACTIONS(5594), 5, sym_file_descriptor, - ACTIONS(6312), 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(5592), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172174,12 +173286,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, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -172191,8 +173301,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, - [111606] = 26, + [105584] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(256), 1, @@ -172205,54 +173316,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1107), 1, + ACTIONS(1153), 1, anon_sym_LPAREN, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1127), 1, + ACTIONS(1221), 1, sym_word, - ACTIONS(1129), 1, + ACTIONS(1223), 1, anon_sym_BANG, - ACTIONS(1135), 1, + ACTIONS(1229), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, sym_test_operator, - ACTIONS(5755), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(5890), 1, - sym__special_character, - STATE(2451), 1, + ACTIONS(6654), 1, + sym__regex_no_space, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(2903), 1, + STATE(3598), 1, sym__expression, - ACTIONS(1125), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1131), 2, + ACTIONS(1225), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1133), 2, + ACTIONS(1227), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1139), 2, + ACTIONS(1233), 2, sym_raw_string, sym_ansi_c_string, - STATE(2518), 6, + STATE(2784), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2361), 9, + STATE(2898), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -172262,32 +173375,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [111702] = 3, - ACTIONS(3), 1, + [105683] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4313), 5, + ACTIONS(6702), 1, + aux_sym_concatenation_token1, + ACTIONS(6756), 1, + sym__concat, + STATE(2183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(1283), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 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, + 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, + [105740] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6702), 1, + aux_sym_concatenation_token1, + ACTIONS(6758), 1, + sym__concat, + STATE(2183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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, @@ -172295,47 +173469,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, - [111752] = 8, + [105797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, + sym__concat, + STATE(2108), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, sym_file_descriptor, - ACTIONS(6315), 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(1271), 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, @@ -172343,8 +173510,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, @@ -172360,169 +173526,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [111812] = 26, + [105854] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + STATE(2183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6760), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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, - 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, + anon_sym_BQUOTE, sym_word, - ACTIONS(1129), 1, - anon_sym_BANG, - ACTIONS(1135), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1263), 25, + sym_file_descriptor, sym_test_operator, - ACTIONS(5755), 1, - anon_sym_BQUOTE, - ACTIONS(5890), 1, - 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, - 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__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(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(3243), 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, - [112004] = 3, + [105909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(2113), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5062), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 38, - anon_sym_SEMI, + ACTIONS(5060), 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, @@ -172548,33 +173629,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112054] = 8, + [105966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(2114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5066), 5, sym_file_descriptor, - ACTIONS(6318), 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(5064), 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, @@ -172582,8 +173662,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, @@ -172600,33 +173680,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112114] = 8, + [106023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5869), 1, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(2113), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5078), 5, sym_file_descriptor, - ACTIONS(6321), 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(5076), 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, @@ -172634,8 +173713,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, @@ -172652,31 +173731,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112174] = 5, + [106080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6324), 1, - sym__special_character, - STATE(2217), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(2114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4855), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 35, - anon_sym_SEMI, + ACTIONS(4853), 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_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172685,9 +173765,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, @@ -172700,10 +173782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112227] = 3, + [106137] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 15, + STATE(2180), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6702), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -172719,15 +173806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1273), 25, 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, @@ -172737,7 +173824,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, @@ -172746,82 +173832,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112276] = 3, - ACTIONS(71), 1, + [106192] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 14, - anon_sym_EQ, + ACTIONS(6608), 1, + aux_sym_concatenation_token1, + ACTIONS(6763), 1, + sym__concat, + STATE(2196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 35, + 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(1254), 27, + 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, + [106249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6608), 1, + aux_sym_concatenation_token1, + ACTIONS(6765), 1, sym__concat, + STATE(2196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, - [112325] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 15, 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(1306), 26, - sym_file_descriptor, + [106306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(2113), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 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, @@ -172829,45 +173971,101 @@ 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, - [112374] = 3, - ACTIONS(71), 1, + sym_word, + [106363] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 15, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(2114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4945), 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, sym_word, - ACTIONS(1302), 26, - sym_file_descriptor, + [106420] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(2113), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5052), 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, @@ -172875,45 +174073,101 @@ 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, - [112423] = 3, - ACTIONS(71), 1, + sym_word, + [106477] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 15, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, + sym__concat, + STATE(2114), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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, sym_word, - ACTIONS(1215), 26, - sym_file_descriptor, + [106534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5576), 1, + aux_sym_concatenation_token1, + ACTIONS(5578), 1, sym__concat, + STATE(2113), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, @@ -172921,278 +174175,315 @@ 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, - [112472] = 3, - ACTIONS(71), 1, + sym_word, + [106591] = 6, + ACTIONS(3), 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, + ACTIONS(6767), 1, + aux_sym_concatenation_token1, + ACTIONS(6770), 1, sym__concat, + STATE(2196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 5, + 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, - [112521] = 3, - ACTIONS(71), 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, + 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, + [106648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6686), 1, + sym__special_character, + STATE(2015), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 6, + 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6248), 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, - [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, + 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, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [106703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 37, + 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, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [106753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 6, + 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 36, + 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, - [112668] = 3, - 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), 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, + 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, - [112717] = 5, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [106803] = 26, ACTIONS(71), 1, sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 14, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3255), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106899] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(2158), 24, + ACTIONS(1360), 27, 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, 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, @@ -173201,6 +174492,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, @@ -173208,131 +174501,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112770] = 3, + [106949] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, + ACTIONS(1354), 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(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, - [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_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(4282), 24, + ACTIONS(1356), 27, 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, 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, @@ -173341,6 +174539,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, @@ -173348,153 +174548,63 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(71), 1, + [106999] = 3, + ACTIONS(3), 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, + ACTIONS(1348), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 37, + 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, - [113019] = 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), 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, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [113068] = 3, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [107049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1352), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1350), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173504,8 +174614,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -173517,6 +174627,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, @@ -173530,528 +174641,112 @@ static const uint16_t 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, + [107099] = 3, + 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(1348), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 37, + 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(4439), 24, + [107149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 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(1326), 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_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, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, - ACTIONS(71), 1, + sym_word, + [107199] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 26, + ACTIONS(1332), 6, 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, - [113611] = 5, - 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, + ACTIONS(1330), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -174073,6 +174768,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, @@ -174086,12 +174782,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, - [113713] = 3, + [107249] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 15, + ACTIONS(1342), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -174107,7 +174802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 26, + ACTIONS(1344), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -174116,6 +174811,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, @@ -174134,209 +174830,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113762] = 5, - ACTIONS(71), 1, + [107299] = 3, + ACTIONS(3), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1318), 25, + ACTIONS(6384), 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(6382), 36, + 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, - 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, - [113815] = 5, - 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_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(2162), 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_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, + 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, - [113868] = 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_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(1254), 26, - sym_file_descriptor, - sym__concat, + [107349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 3, + 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(6392), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4720), 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, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113917] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2275), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 14, + sym_word, + ACTIONS(6390), 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_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(4309), 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_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_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [113970] = 5, + [107403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6332), 1, - sym__special_character, - STATE(2217), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, + ACTIONS(1273), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 35, + ACTIONS(1271), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -174346,7 +174946,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, @@ -174357,9 +174956,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 +174973,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114023] = 6, + [107453] = 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(2182), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(2180), 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, @@ -174421,29 +175020,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114078] = 6, + [107503] = 5, 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(6773), 1, + sym__special_character, + STATE(2213), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(1370), 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, @@ -174457,7 +175057,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, @@ -174470,29 +175069,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114133] = 6, + [107557] = 3, ACTIONS(3), 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, + ACTIONS(5058), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(5056), 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 +175099,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 +175115,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, - [114188] = 6, + [107607] = 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(1336), 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(1207), 33, + ACTIONS(1334), 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, @@ -174553,6 +175148,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, @@ -174566,132 +175162,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, - [114243] = 3, - ACTIONS(71), 1, + [107657] = 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), 26, + ACTIONS(5728), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5726), 37, + 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, - 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, - [114292] = 5, - 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, - sym__special_character, - ACTIONS(1225), 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, - [114345] = 3, - 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_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(1258), 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, @@ -174699,19 +175196,24 @@ 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, + [107707] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 15, + ACTIONS(1338), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -174727,7 +175229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 26, + ACTIONS(1340), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -174736,6 +175238,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, @@ -174754,32 +175257,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114443] = 8, + [107757] = 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(1191), 3, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6776), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, 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, + ACTIONS(6557), 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(6559), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -174791,9 +175292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(6555), 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, @@ -174805,631 +175309,1067 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [114502] = 3, + [107817] = 26, ACTIONS(71), 1, sym_comment, - 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, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 26, - sym_file_descriptor, - sym__concat, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(543), 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(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3278), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114551] = 5, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107913] = 26, ACTIONS(71), 1, sym_comment, - STATE(2264), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6350), 2, - sym__concat, - aux_sym_concatenation_token1, - 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, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, sym_test_operator, + ACTIONS(543), 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, - anon_sym_DQUOTE, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3279), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114604] = 3, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108009] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3252), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114653] = 3, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108105] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 26, - sym_file_descriptor, - sym__concat, + 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3226), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114702] = 3, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108201] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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(1294), 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114751] = 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, - 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(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(5860), 15, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(6598), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3274), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108297] = 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, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3291), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [114808] = 7, - ACTIONS(3), 1, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108393] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3318), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108489] = 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, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3321), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [114865] = 5, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108585] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3153), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114918] = 3, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108681] = 26, 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, + 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(1298), 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3159), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114967] = 3, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108777] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3173), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115016] = 6, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108873] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3178), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115071] = 3, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108969] = 26, 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, + 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(1262), 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3186), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115120] = 6, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109065] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3193), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, sym_raw_string, sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109161] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3235), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115175] = 3, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(1364), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(1362), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175440,8 +176380,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, @@ -175453,6 +176391,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, @@ -175467,84 +176406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115224] = 5, - ACTIONS(71), 1, + [109307] = 3, + ACTIONS(3), 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, + ACTIONS(6380), 6, + 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6378), 36, + 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_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [115277] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 15, 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_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_test_operator, - sym__bare_dollar, - 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, @@ -175552,29 +176439,34 @@ 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, - [115326] = 5, + sym_word, + [109357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 1, + ACTIONS(6779), 1, sym__special_character, - STATE(2280), 1, + STATE(2213), 1, aux_sym__literal_repeat1, - ACTIONS(5132), 5, + ACTIONS(5904), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 34, + ACTIONS(5902), 35, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175594,6 +176486,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, @@ -175609,20 +176502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115379] = 5, + [109411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - sym__special_character, - STATE(2280), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 5, + ACTIONS(1360), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 34, + ACTIONS(1358), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175644,7 +176534,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, @@ -175657,15 +176549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115432] = 3, + [109461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(6380), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 37, + ACTIONS(6378), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175703,111 +176596,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115481] = 5, - ACTIONS(71), 1, + [109511] = 3, + 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(1273), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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_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, - 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, - 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_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, + [109561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 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(1354), 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_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, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115587] = 5, + sym_word, + [109611] = 5, ACTIONS(71), 1, sym_comment, - STATE(2396), 1, + STATE(2241), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(6781), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(1261), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -175822,7 +176713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1225), 24, + ACTIONS(1263), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -175843,38 +176734,22 @@ 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, - sym__special_character, - [115640] = 5, + [109665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(1344), 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), 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(5856), 20, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175894,30 +176769,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_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, - [115693] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [109715] = 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(1340), 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(5130), 33, + ACTIONS(1338), 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, @@ -175927,9 +176816,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, @@ -175944,34 +176833,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115748] = 6, - ACTIONS(3), 1, + [109765] = 3, + 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(5136), 5, + ACTIONS(1346), 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(1348), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 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, @@ -175979,43 +176871,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, + 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, - [115803] = 6, + [109815] = 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(1273), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5184), 33, + ACTIONS(1271), 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, @@ -176042,29 +176927,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [115858] = 6, - ACTIONS(3), 1, + [109865] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5581), 1, - aux_sym_concatenation_token1, - ACTIONS(5583), 1, + ACTIONS(1350), 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(1352), 27, + sym_file_descriptor, sym__concat, - STATE(2257), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5190), 5, + 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, + [109915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5188), 33, + ACTIONS(5726), 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, @@ -176091,29 +177021,74 @@ 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, + [109965] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5577), 1, - aux_sym_concatenation_token1, - ACTIONS(5579), 1, + ACTIONS(1346), 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(1348), 27, + sym_file_descriptor, sym__concat, - STATE(2255), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 5, + 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, + [110015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6384), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 33, + ACTIONS(6382), 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, @@ -176140,29 +177115,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [115968] = 6, + [110065] = 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(4282), 5, + ACTIONS(1312), 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(4280), 33, + ACTIONS(1310), 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, @@ -176172,9 +177145,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, @@ -176189,29 +177162,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116023] = 6, + [110115] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3205), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [110211] = 5, 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(4439), 5, + ACTIONS(6784), 1, + sym__special_character, + STATE(2252), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 33, + ACTIONS(1370), 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, @@ -176221,11 +177265,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, @@ -176237,30 +177279,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, - [116078] = 6, + [110265] = 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(2162), 5, + ACTIONS(1368), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 33, + ACTIONS(1366), 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, @@ -176270,9 +177311,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, @@ -176287,29 +177328,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116133] = 6, + [110315] = 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(4309), 5, + ACTIONS(5728), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 33, + ACTIONS(5726), 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176319,7 +177358,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, @@ -176335,30 +177373,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [110365] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3241), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [110461] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, sym_word, - [116188] = 6, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3248), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [110557] = 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(4313), 5, + ACTIONS(1316), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 33, + ACTIONS(1314), 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, @@ -176368,9 +177545,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, @@ -176385,29 +177562,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116243] = 6, + [110607] = 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(5266), 5, + ACTIONS(1263), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 33, + ACTIONS(1261), 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, @@ -176417,9 +177592,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, @@ -176434,29 +177609,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116298] = 6, + [110657] = 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(5270), 5, + ACTIONS(4947), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 33, + ACTIONS(4945), 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, @@ -176483,16 +177656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116353] = 3, + [110707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1324), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(1322), 36, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -176512,9 +177686,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, @@ -176529,77 +177703,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116402] = 5, - ACTIONS(71), 1, + [110757] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1348), 6, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 15, - anon_sym_EQ, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 36, + 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, + 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, - 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, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [110807] = 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(5266), 5, + ACTIONS(6380), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 33, + ACTIONS(6378), 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, @@ -176626,29 +177797,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [116510] = 6, + [110857] = 3, 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, + ACTIONS(1352), 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(5268), 33, + ACTIONS(1350), 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, @@ -176660,6 +177829,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, @@ -176673,77 +177843,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [116565] = 3, - ACTIONS(71), 1, + [110907] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 15, + ACTIONS(1348), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, + [110957] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3314), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111053] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, sym_word, - ACTIONS(1286), 26, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3259), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6384), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6382), 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, - 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, - [116614] = 6, + aux_sym__simple_variable_name_token1, + sym_word, + [111199] = 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(1225), 5, + ACTIONS(1304), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(1302), 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, @@ -176753,9 +178108,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, @@ -176770,30 +178125,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116669] = 6, + [111249] = 7, 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(6557), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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, @@ -176801,7 +178158,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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -176817,34 +178175,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, - [116724] = 8, + [111307] = 7, 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6567), 3, + sym_variable_name, 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(1195), 25, + ACTIONS(6557), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -176856,9 +178210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(6555), 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, @@ -176870,124 +178227,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116783] = 5, - ACTIONS(71), 1, + [111365] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2273), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6327), 2, + ACTIONS(1308), 6, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 14, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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, aux_sym_number_token1, aux_sym_number_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(4313), 24, + [111415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, 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, - [116836] = 5, + sym_word, + [111465] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6362), 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, sym__special_character, - STATE(2249), 1, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, aux_sym__literal_repeat1, - ACTIONS(237), 14, + STATE(3262), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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(276), 25, + [111611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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_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, + 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, - [116889] = 6, + sym_word, + [111661] = 3, ACTIONS(3), 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, + ACTIONS(1308), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(1306), 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, @@ -176999,6 +178517,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, @@ -177012,77 +178531,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [116943] = 5, - ACTIONS(71), 1, + [111711] = 5, + ACTIONS(3), 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, + ACTIONS(6392), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4732), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(4720), 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(6390), 20, + 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(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, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [111765] = 3, 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, + ACTIONS(6380), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(6378), 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177109,28 +178628,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [117049] = 6, + [111815] = 5, ACTIONS(3), 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, + ACTIONS(6787), 1, + sym__special_character, + STATE(2279), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(1370), 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, @@ -177143,7 +178665,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, @@ -177155,226 +178676,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [117103] = 5, - ACTIONS(71), 1, + [111869] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 1, - sym__special_character, - STATE(2409), 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, + ACTIONS(6384), 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(6382), 37, + 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [117155] = 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), 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, - [117203] = 6, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [111919] = 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(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 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(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3275), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112015] = 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(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 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, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3249), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6380), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6378), 36, + 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_EQ_TILDE, - anon_sym_QMARK, - [117311] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 14, 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, - ACTIONS(1306), 26, + [112161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6790), 1, + sym__special_character, + STATE(2296), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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_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, @@ -177382,137 +178947,188 @@ 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, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117359] = 6, - ACTIONS(71), 1, + sym_word, + [112215] = 3, + ACTIONS(3), 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(1273), 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(1271), 38, + 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_QMARK, - [117413] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 14, 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, aux_sym_number_token1, aux_sym_number_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(1278), 26, + [112265] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6792), 1, + sym__special_character, + STATE(2456), 1, + aux_sym__literal_repeat1, + ACTIONS(5978), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5976), 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_RBRACE, 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, - [117461] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [112319] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(2178), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1290), 26, + [112369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4947), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4945), 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_RBRACE, 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, @@ -177520,95 +179136,35 @@ 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_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [117509] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6382), 1, - anon_sym_esac, - ACTIONS(6384), 1, - aux_sym_heredoc_redirect_token1, - 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, + 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, - STATE(6347), 1, - aux_sym__literal_repeat1, - STATE(7162), 1, - sym_last_case_item, - ACTIONS(6408), 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, - 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, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117603] = 5, + [112419] = 5, ACTIONS(71), 1, sym_comment, - STATE(2420), 1, + STATE(2505), 1, aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, + ACTIONS(6794), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5188), 14, + ACTIONS(4941), 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, @@ -177617,12 +179173,11 @@ 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(5190), 23, + ACTIONS(4943), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -177633,6 +179188,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, @@ -177643,82 +179199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117655] = 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(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, + [112473] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 14, + STATE(2508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4945), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -177732,8 +179221,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), 24, + ACTIONS(4947), 24, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -177750,255 +179240,141 @@ 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, - [117801] = 6, - ACTIONS(71), 1, + [112527] = 3, + ACTIONS(3), 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, - 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(1273), 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(1271), 37, + 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_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_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(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(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, - ACTIONS(71), 1, + [112577] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1095), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, - sym__special_character, - ACTIONS(6439), 1, + ACTIONS(1368), 5, + sym_file_descriptor, sym__concat, - STATE(2325), 1, - aux_sym__literal_repeat1, - ACTIONS(239), 14, - anon_sym_EQ, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 37, + 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(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, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [112627] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + STATE(2505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5052), 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(1302), 26, + ACTIONS(5054), 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, @@ -178007,7 +179383,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, @@ -178015,14 +179391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118105] = 5, + [112681] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6424), 1, - sym__special_character, - STATE(2349), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 14, + STATE(2508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5056), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -178036,8 +179413,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(4309), 24, + ACTIONS(5058), 24, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -178054,207 +179432,136 @@ 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, - [118157] = 6, - ACTIONS(71), 1, + [112735] = 3, + 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(2182), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2180), 36, + 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_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(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, - ACTIONS(71), 1, + [112785] = 5, + ACTIONS(3), 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, - 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, + ACTIONS(6796), 1, + sym__special_character, + STATE(2296), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 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(1370), 36, + 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_QMARK, - [118357] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 14, 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, - ACTIONS(1215), 26, + [112839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6384), 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(6382), 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_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, @@ -178262,114 +179569,46 @@ 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_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118405] = 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, + 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(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, + [112889] = 3, + ACTIONS(3), 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, - 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(5136), 24, + ACTIONS(5058), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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, @@ -178377,158 +179616,46 @@ 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, - [118551] = 26, + sym_word, + [112939] = 3, 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(2182), 5, + sym_file_descriptor, + sym_variable_name, 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, + ACTIONS(2180), 37, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6470), 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), 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_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(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_SEMI_SEMI, + anon_sym_RBRACE, 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, @@ -178536,508 +179663,288 @@ 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_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118743] = 3, - ACTIONS(71), 1, - sym_comment, - 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_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1282), 26, + [112989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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_RBRACE, 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, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118791] = 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), 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, - [118839] = 3, + sym_word, + [113039] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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(1250), 26, - sym_file_descriptor, - sym__concat, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(2833), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118887] = 7, - 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, - 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, - [118943] = 3, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113135] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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(1310), 26, - sym_file_descriptor, - sym__concat, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, + aux_sym__literal_repeat1, + STATE(3270), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118991] = 5, - ACTIONS(71), 1, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113231] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2315), 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), 23, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6799), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_EQ_TILDE, - anon_sym_QMARK, - [119043] = 7, - 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, - 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), 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, - [119099] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5268), 13, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5270), 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, + ACTIONS(6555), 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, - [119151] = 3, - ACTIONS(71), 1, + sym_word, + [113291] = 5, + 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, + ACTIONS(6802), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 26, + STATE(2483), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 36, + anon_sym_SEMI, 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, - [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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6478), 1, - sym__special_character, - STATE(2349), 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_SEMI_SEMI, + anon_sym_RBRACE, + 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(1318), 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, @@ -179045,47 +179952,45 @@ 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, - [119299] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6481), 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), 23, + [113345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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_RBRACE, 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, @@ -179093,23 +179998,30 @@ 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, - [119351] = 3, + sym_word, + [113395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 5, + ACTIONS(1263), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 35, + ACTIONS(1261), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179120,6 +180032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -179131,6 +180044,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, @@ -179145,15 +180059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119399] = 3, + [113445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, + ACTIONS(5728), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 36, + ACTIONS(5726), 37, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179163,8 +180078,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -179174,6 +180089,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, @@ -179190,1058 +180106,1361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119447] = 3, + [113495] = 26, 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1270), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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_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(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3049), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113591] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3151), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119495] = 5, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113687] = 26, ACTIONS(71), 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1225), 23, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3050), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119547] = 7, - 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, - 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, - [119603] = 6, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113783] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6458), 1, - 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1229), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3051), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, sym_raw_string, sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113879] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3052), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119657] = 7, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113975] = 26, 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, - 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, - [119713] = 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1258), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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_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(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3053), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114071] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3054), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119761] = 7, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114167] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, sym__special_character, - ACTIONS(6493), 1, - sym__concat, - STATE(2325), 1, + STATE(2661), 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), 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, - [119817] = 3, + STATE(3056), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114263] = 26, ACTIONS(71), 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1298), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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_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(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3059), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114359] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3060), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119865] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2386), 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), 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, - [119917] = 7, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114455] = 26, 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, - 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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_EQ_TILDE, - anon_sym_QMARK, - [119973] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1163), 1, - anon_sym_RBRACK, - ACTIONS(6437), 1, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, sym__special_character, - ACTIONS(6499), 1, - sym__concat, - STATE(2325), 1, + STATE(2661), 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), 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, - [120029] = 6, + STATE(3061), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114551] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6458), 1, - 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1209), 24, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3062), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, sym_raw_string, sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114647] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3063), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120083] = 5, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114743] = 26, ACTIONS(71), 1, sym_comment, - STATE(2365), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6503), 2, - sym__concat, - aux_sym_concatenation_token1, - 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1215), 23, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(3104), 1, + sym__expression, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, - [120135] = 7, - 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, - 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), 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, - [120191] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [114889] = 26, ACTIONS(71), 1, sym_comment, - STATE(2398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5264), 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, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5266), 23, - 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3219), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120243] = 5, - ACTIONS(71), 1, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114985] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2368), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6508), 2, - sym__concat, - aux_sym_concatenation_token1, - 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, + ACTIONS(1304), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [120295] = 5, - ACTIONS(71), 1, + sym_word, + [115035] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, + ACTIONS(6600), 1, aux_sym_concatenation_token1, - 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, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1225), 24, + ACTIONS(6804), 1, + sym__concat, + STATE(1962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + 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, - [120347] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 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_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1274), 26, - sym_file_descriptor, + [115091] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6806), 1, sym__concat, - sym_variable_name, + STATE(1962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, - 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, - [120395] = 5, - ACTIONS(71), 1, + sym_word, + [115147] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, + ACTIONS(6600), 1, aux_sym_concatenation_token1, - ACTIONS(5268), 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(5270), 23, + ACTIONS(6602), 1, + sym__concat, + STATE(2325), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + sym_word, + [115203] = 26, 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, sym_word, - ACTIONS(1286), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 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_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, - [120495] = 7, - 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, - 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), 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, - [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, + ACTIONS(6002), 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, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, aux_sym__literal_repeat1, - STATE(6789), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(2925), 1, + sym__expression, + ACTIONS(539), 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, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, 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, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180251,65 +181470,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120645] = 26, - ACTIONS(3), 1, + [115299] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, - sym_test_operator, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(543), 1, sym__brace_start, - ACTIONS(6521), 1, - anon_sym_esac, - ACTIONS(6523), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, aux_sym__literal_repeat1, - STATE(7000), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(2928), 1, + sym__expression, + ACTIONS(539), 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, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, 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, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180319,181 +181540,215 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120739] = 6, - ACTIONS(71), 1, + [115395] = 8, + ACTIONS(3), 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(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6808), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1229), 23, + [115455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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_RBRACE, 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, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120793] = 26, + sym_word, + [115505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(6811), 1, + sym__special_character, + STATE(2332), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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(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(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, + aux_sym__simple_variable_name_token1, 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, + [115559] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, + 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(1153), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(1161), 1, sym__special_character, - ACTIONS(6394), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(1169), 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, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(6792), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(2833), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3328), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, 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, + STATE(2708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180503,65 +181758,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [120981] = 26, - ACTIONS(3), 1, + [115655] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, + 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(1153), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(1161), 1, sym__special_character, - ACTIONS(6394), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - 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(6543), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(7366), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(3339), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3336), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - sym__extglob_blob, - ACTIONS(6376), 3, - 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, + STATE(2708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180571,206 +181828,119 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121075] = 5, - ACTIONS(71), 1, + [115751] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2376), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6481), 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), 23, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6814), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 9, + anon_sym_SEMI, 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, - [121127] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2400), 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), 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121179] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6481), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 14, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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), 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_LT_LT_LT, + ACTIONS(6555), 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, - [121231] = 26, - ACTIONS(3), 1, + sym_word, + [115811] = 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(1153), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 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, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(2833), 1, + sym__expression, + ACTIONS(1171), 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, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, 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, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180780,113 +181950,67 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121325] = 6, + [115907] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6481), 1, - aux_sym_concatenation_token1, - ACTIONS(6551), 1, - sym__concat, - STATE(2406), 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), 23, - sym_file_descriptor, - 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, - 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, - [121379] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, + ACTIONS(1153), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, 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, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(7019), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(3266), 1, + sym__expression, + ACTIONS(1171), 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, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, 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, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -180896,207 +182020,189 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121473] = 6, - ACTIONS(71), 1, + [116003] = 8, + ACTIONS(3), 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, - 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(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6817), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_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_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5266), 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, + ACTIONS(6555), 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, - [121579] = 5, + sym_word, + [116063] = 26, ACTIONS(71), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 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(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, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4282), 24, - sym_file_descriptor, - sym_variable_name, + 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_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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3224), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121631] = 26, - ACTIONS(3), 1, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116159] = 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(1153), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, - sym__special_character, - ACTIONS(6394), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6410), 1, + ACTIONS(1173), 1, + sym_word, + ACTIONS(1175), 1, + anon_sym_BANG, + ACTIONS(1181), 1, + anon_sym_TILDE, + ACTIONS(1187), 1, 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, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(6598), 1, + sym__special_character, + STATE(2785), 1, aux_sym__literal_repeat1, - STATE(6763), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(3261), 1, + sym__expression, + ACTIONS(1171), 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, + ACTIONS(1177), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1179), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1185), 2, 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, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -181106,169 +182212,505 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [121725] = 3, - ACTIONS(71), 1, + [116255] = 8, + ACTIONS(3), 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), 26, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6820), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + 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, + ACTIONS(6557), 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, - [121773] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 13, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4439), 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, + ACTIONS(6555), 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, - [121825] = 6, - ACTIONS(3), 1, + sym_word, + [116315] = 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(5389), 4, - sym_file_descriptor, + 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(5387), 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3227), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116411] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3228), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116507] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3230), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116603] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3231), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116699] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3232), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116795] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, sym_word, - [121879] = 6, + 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3233), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5733), 1, - aux_sym_concatenation_token1, - ACTIONS(5874), 1, - sym__concat, - STATE(2311), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5291), 4, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6823), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5289), 33, + ACTIONS(6557), 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(6559), 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, @@ -181276,7 +182718,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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -181292,67 +182735,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, - [121933] = 26, - ACTIONS(3), 1, + [116951] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6380), 1, + 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(1153), 1, anon_sym_LPAREN, - ACTIONS(6386), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6388), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6390), 1, - anon_sym_DOLLAR, - ACTIONS(6392), 1, + ACTIONS(1161), 1, sym__special_character, - ACTIONS(6394), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6400), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6404), 1, - anon_sym_BQUOTE, - ACTIONS(6406), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - 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(6571), 1, - aux_sym_heredoc_redirect_token1, - STATE(6347), 1, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, aux_sym__literal_repeat1, - STATE(7175), 1, - sym_last_case_item, - ACTIONS(6408), 2, + STATE(3236), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3323), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, 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, + STATE(2708), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -181362,776 +182806,1093 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [122027] = 5, + [117047] = 26, ACTIONS(71), 1, sym_comment, - STATE(2398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6416), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5184), 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(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, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5186), 23, - sym_file_descriptor, - sym_variable_name, + 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3237), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122079] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6573), 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, - 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, - [122133] = 3, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117143] = 26, 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, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + 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(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1262), 26, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3238), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117239] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6826), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122181] = 6, + sym_word, + [117299] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6416), 1, - aux_sym_concatenation_token1, - ACTIONS(6575), 1, - sym__concat, - STATE(2365), 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(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, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1229), 23, - sym_file_descriptor, - sym_variable_name, + 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3239), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122235] = 5, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117395] = 26, 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, + 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(4370), 24, + ACTIONS(280), 1, + sym_test_operator, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3240), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117491] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6829), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122287] = 6, - ACTIONS(71), 1, + sym_word, + [117551] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6577), 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(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6832), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122341] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(1266), 26, + [117611] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6835), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122389] = 3, - ACTIONS(71), 1, + sym_word, + [117671] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6838), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1225), 26, + [117731] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6841), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122437] = 5, - ACTIONS(71), 1, + sym_word, + [117791] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - STATE(2324), 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, - sym__concat, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6844), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [122489] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(1254), 26, + [117851] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6847), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122537] = 5, - ACTIONS(71), 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, + [117911] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6850), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122589] = 5, - ACTIONS(71), 1, + sym_word, + [117971] = 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6853), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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), 23, + [118031] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6856), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122641] = 5, - ACTIONS(71), 1, + sym_word, + [118091] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, - sym__special_character, - STATE(2325), 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__concat, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6859), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [122693] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 13, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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, + [118151] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6862), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122745] = 5, - ACTIONS(71), 1, + sym_word, + [118211] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6582), 1, - sym__special_character, - STATE(2409), 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6865), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [122797] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 13, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(4309), 24, + [118271] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6868), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122849] = 6, + sym_word, + [118331] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(2416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5132), 4, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6871), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 33, + ACTIONS(6557), 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(6559), 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, @@ -182139,8 +183900,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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182157,74 +183918,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [122903] = 3, - ACTIONS(71), 1, + [118391] = 8, + ACTIONS(3), 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6874), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [122951] = 6, + sym_word, + [118451] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(2424), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 4, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6877), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 33, + ACTIONS(6557), 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(6559), 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, @@ -182232,8 +184004,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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182250,119 +184022,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123005] = 3, - ACTIONS(71), 1, + [118511] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6880), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, + [118571] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6883), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [123053] = 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), 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, - [123101] = 6, + sym_word, + [118631] = 8, 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6886), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 33, + ACTIONS(6557), 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(6559), 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, @@ -182370,8 +184160,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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182388,363 +184178,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123155] = 6, - ACTIONS(71), 1, + [118691] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6587), 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(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6889), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123209] = 7, - 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, 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, - [123265] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 13, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(2162), 24, + [118751] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6892), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123317] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6416), 1, - aux_sym_concatenation_token1, - ACTIONS(6593), 1, - sym__concat, - STATE(2365), 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, 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(1209), 23, + [118811] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6895), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [123371] = 6, - ACTIONS(71), 1, + sym_word, + [118871] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6595), 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(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6898), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [123425] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2528), 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), 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_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [123477] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2364), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 13, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(4313), 24, + [118931] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6901), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [123529] = 6, + sym_word, + [118991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(6597), 1, - sym__concat, - STATE(1600), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6904), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 33, + ACTIONS(6557), 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(6559), 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, @@ -182752,8 +184472,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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182770,29 +184490,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123583] = 6, + [119051] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - aux_sym_concatenation_token1, - ACTIONS(5854), 1, - sym__concat, - STATE(2416), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 4, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6907), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 33, + ACTIONS(6557), 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(6559), 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, @@ -182800,8 +184524,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(6555), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182818,2015 +184542,2684 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123637] = 5, - ACTIONS(71), 1, + [119111] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2356), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6458), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 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(5132), 24, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6910), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [123689] = 3, - ACTIONS(71), 1, + sym_word, + [119171] = 8, + 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), 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6913), 1, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [123737] = 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), 26, + ACTIONS(6567), 3, + 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, + ACTIONS(6557), 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, - [123785] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 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(6559), 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(1302), 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, - [123833] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6380), 1, - anon_sym_LPAREN, - ACTIONS(6386), 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_LT, + ACTIONS(6555), 16, 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(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, - ACTIONS(71), 1, + [119231] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1085), 1, - aux_sym_concatenation_token1, - ACTIONS(6605), 1, - anon_sym_RBRACK, - ACTIONS(6607), 1, - sym__concat, - STATE(2324), 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), 22, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6916), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_EQ_TILDE, - anon_sym_QMARK, - [123983] = 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), 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [124030] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 13, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(1278), 26, + [119291] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6919), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124077] = 3, - ACTIONS(71), 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, - 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), 26, + [119351] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6922), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124124] = 3, - ACTIONS(71), 1, + sym_word, + [119411] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6925), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1294), 25, + [119471] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6928), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [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, sym_word, - ACTIONS(4282), 25, + [119531] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6931), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124222] = 3, - ACTIONS(71), 1, + sym_word, + [119591] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6934), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1266), 26, + [119651] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6937), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124269] = 3, - ACTIONS(71), 1, + sym_word, + [119711] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6940), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1258), 25, + [119771] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6943), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124316] = 3, - ACTIONS(71), 1, + sym_word, + [119831] = 8, + ACTIONS(3), 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), 25, - sym__concat, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6946), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [124363] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(1270), 25, + [119891] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6949), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124410] = 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), 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, - [124457] = 3, - ACTIONS(71), 1, + sym_word, + [119951] = 8, + ACTIONS(3), 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6952), 1, anon_sym_RPAREN, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [124504] = 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), 25, - sym__concat, + ACTIONS(6567), 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(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [124551] = 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), 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [124598] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(1314), 25, + [120011] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6955), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124645] = 3, - ACTIONS(71), 1, + sym_word, + [120071] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6958), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1215), 25, + [120131] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6961), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124692] = 3, - ACTIONS(71), 1, + sym_word, + [120191] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6964), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1294), 26, + [120251] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6967), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124739] = 3, - ACTIONS(71), 1, + sym_word, + [120311] = 8, + 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, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 25, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6970), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124786] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4441), 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(4443), 25, + [120371] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6973), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124833] = 3, - ACTIONS(71), 1, + sym_word, + [120431] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6976), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1282), 26, + [120491] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6979), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [124880] = 5, - ACTIONS(71), 1, + sym_word, + [120551] = 8, + ACTIONS(3), 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, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6982), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [124931] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6617), 1, - sym__special_character, - STATE(2452), 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), 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, - [124982] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 13, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(1250), 26, + [120611] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6985), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125029] = 3, - ACTIONS(71), 1, + sym_word, + [120671] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6988), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1274), 25, + [120731] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6991), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125076] = 3, - ACTIONS(71), 1, + sym_word, + [120791] = 8, + ACTIONS(3), 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, - sym__concat, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6994), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [125123] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1252), 13, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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(1254), 26, + [120851] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6997), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125170] = 3, - ACTIONS(71), 1, + sym_word, + [120911] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7000), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1266), 25, + [120971] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7003), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125217] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 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(5689), 25, + [121031] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(7006), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125268] = 3, - ACTIONS(71), 1, + sym_word, + [121091] = 8, + ACTIONS(3), 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), 25, - sym__concat, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7009), 1, + anon_sym_RPAREN, + ACTIONS(6567), 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(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [125315] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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), 25, + [121151] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7012), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125362] = 3, - ACTIONS(71), 1, + sym_word, + [121211] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7015), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1278), 25, + [121271] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7018), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125409] = 3, - ACTIONS(71), 1, + sym_word, + [121331] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7021), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1254), 25, + [121391] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7024), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125456] = 3, - ACTIONS(71), 1, + sym_word, + [121451] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7027), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1282), 25, + [121511] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7030), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125503] = 3, - ACTIONS(71), 1, + sym_word, + [121571] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7033), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1306), 25, + [121631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7036), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125550] = 5, - ACTIONS(71), 1, + sym_word, + [121691] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2474), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7039), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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(1225), 22, + [121751] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(7042), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125601] = 3, - ACTIONS(71), 1, + sym_word, + [121811] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7045), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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), 26, + [121871] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7048), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125648] = 3, - ACTIONS(71), 1, + sym_word, + [121931] = 8, + ACTIONS(3), 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), 25, - sym__concat, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7051), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + 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, + ACTIONS(6557), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [125695] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 13, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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), 26, + [121991] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7054), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125742] = 3, - ACTIONS(71), 1, + sym_word, + [122051] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(7057), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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), 25, + [122111] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(7060), 1, + anon_sym_RPAREN, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [125789] = 3, - 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_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1314), 26, + [122171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 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(5726), 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, @@ -184834,318 +187227,754 @@ 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, - [125836] = 3, + sym_word, + [122221] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1290), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, + 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3273), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125883] = 3, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122317] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 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(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, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym_word, - ACTIONS(1310), 26, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3333), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [125930] = 6, - ACTIONS(71), 1, + sym_word, + [122463] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 1, + ACTIONS(6600), 1, aux_sym_concatenation_token1, - ACTIONS(6624), 1, + ACTIONS(6602), 1, sym__concat, - STATE(2476), 1, + STATE(2325), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 14, + ACTIONS(5904), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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), 22, + [122519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6602), 1, + sym__concat, + STATE(2326), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5906), 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_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, - [125983] = 6, + sym_word, + [122575] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6620), 1, - aux_sym_concatenation_token1, - ACTIONS(6626), 1, - sym__concat, - STATE(2479), 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(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1229), 22, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3170), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [126036] = 6, + sym_word, + [122721] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6622), 1, - aux_sym_concatenation_token1, - ACTIONS(6628), 1, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3254), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [122817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 5, + sym_file_descriptor, sym__concat, - STATE(2476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 14, + 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_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, sym_word, - ACTIONS(1209), 22, + [122867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6380), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6378), 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_RBRACE, 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, - [126089] = 5, + sym_word, + [122917] = 26, ACTIONS(71), 1, sym_comment, - STATE(2476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6630), 2, - sym__concat, - aux_sym_concatenation_token1, - 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, + ACTIONS(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + 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(1215), 22, - sym_file_descriptor, + 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, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3329), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126140] = 3, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123013] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 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(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, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym_word, - ACTIONS(1262), 26, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3309), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -185153,180 +187982,374 @@ 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, - [126187] = 3, - ACTIONS(71), 1, + sym_word, + [123159] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(1328), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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, + 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(1270), 26, + [123209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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, 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, - [126234] = 5, + sym_word, + [123259] = 26, ACTIONS(71), 1, sym_comment, - STATE(2479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6633), 2, - sym__concat, - aux_sym_concatenation_token1, - 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, + 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, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1215), 22, - sym_file_descriptor, + 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3268), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126285] = 3, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123355] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(4303), 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, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym_word, - ACTIONS(4305), 25, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3161), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 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, + 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, - [126332] = 5, - ACTIONS(71), 1, + sym_word, + [123501] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1318), 25, + [123551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6384), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6382), 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_RBRACE, 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, @@ -185334,219 +188357,212 @@ 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, - [126383] = 3, + sym_word, + [123601] = 26, 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), 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, - [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, + 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(1270), 25, - sym_file_descriptor, - sym__concat, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3464), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126477] = 3, - ACTIONS(71), 1, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123697] = 3, + ACTIONS(3), 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), 25, + ACTIONS(1364), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 37, + 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_QMARK, - aux_sym_concatenation_token1, - [126524] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1256), 13, 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, - sym_word, - 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_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, 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, - [126571] = 3, - ACTIONS(71), 1, + sym_word, + [123747] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(7063), 1, + sym__special_character, + STATE(2456), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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, - ACTIONS(1302), 25, + [123801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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, @@ -185554,246 +188570,136 @@ 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, - [126618] = 4, - ACTIONS(71), 1, + sym_word, + [123851] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6643), 1, + ACTIONS(1356), 5, + sym_file_descriptor, sym__concat, - 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, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 37, + 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_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_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(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_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, + 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, - [126714] = 3, - ACTIONS(71), 1, + sym_word, + [123901] = 5, + ACTIONS(3), 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), 25, - sym__concat, + ACTIONS(7066), 1, + sym__special_character, + STATE(2252), 1, + aux_sym__literal_repeat1, + ACTIONS(5978), 5, + 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5976), 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_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_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(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_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_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, - [126812] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6649), 1, - anon_sym_LBRACK, - ACTIONS(6647), 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(6645), 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, - [126861] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [123955] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, - anon_sym_PIPE, + STATE(3807), 1, + aux_sym__literal_repeat1, + STATE(3857), 1, + sym_concatenation, + STATE(3722), 9, + 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(2643), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -185801,43 +188707,39 @@ 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), 26, + ACTIONS(2645), 21, 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_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, - [126908] = 3, + [124011] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1318), 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, @@ -185846,23 +188748,24 @@ 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), 25, + ACTIONS(1320), 27, 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_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, @@ -185874,35 +188777,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126955] = 3, - ACTIONS(71), 1, + [124061] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 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(1274), 25, + ACTIONS(1344), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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, @@ -185910,115 +188810,91 @@ 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, - [127002] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6655), 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, - 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), 25, + [124111] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6562), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6567), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [127102] = 3, + sym_word, + [124169] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, + STATE(3786), 1, + aux_sym__literal_repeat1, + STATE(3921), 1, + sym_concatenation, + STATE(3708), 9, + 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(2548), 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, @@ -186027,20 +188903,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4439), 25, + ACTIONS(2550), 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_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, @@ -186053,286 +188925,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127149] = 3, + [124225] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 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(105), 1, + anon_sym_TILDE, + ACTIONS(235), 1, + sym_word, + ACTIONS(246), 1, + anon_sym_BANG, + 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(1254), 25, - sym_file_descriptor, - sym__concat, + 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1161), 1, + sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3338), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127196] = 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), 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, - [127243] = 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), 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, - [127290] = 3, - ACTIONS(71), 1, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124321] = 3, + ACTIONS(3), 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, + ACTIONS(1340), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 37, + 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_QMARK, - [127337] = 3, - ACTIONS(71), 1, - sym_comment, - 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), 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, - [127384] = 6, - 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, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + 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, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1209), 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, + 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, - [127437] = 5, + sym_word, + [124371] = 5, ACTIONS(71), 1, sym_comment, - STATE(2514), 1, + STATE(2505), 1, aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, + ACTIONS(6794), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5130), 13, + ACTIONS(5060), 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, @@ -186342,9 +189066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5132), 23, + ACTIONS(5062), 24, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -186366,14 +189091,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127488] = 3, + [124425] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + STATE(2508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5064), 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, @@ -186382,13 +189114,11 @@ 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), 25, + ACTIONS(5066), 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, @@ -186399,9 +189129,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, @@ -186410,14 +189140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127535] = 3, + [124479] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1326), 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, @@ -186426,23 +189158,24 @@ 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(1328), 27, 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_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, @@ -186454,14 +189187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127582] = 3, + [124529] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1330), 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, @@ -186470,23 +189205,24 @@ 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), 25, + ACTIONS(1332), 27, 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_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, @@ -186498,239 +189234,910 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127629] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6661), 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(6663), 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, - [127676] = 3, + [124579] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 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(4313), 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, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3209), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127723] = 3, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124675] = 26, 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, + 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(1274), 26, - sym_file_descriptor, - sym__concat, - 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_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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3200), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127770] = 3, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124771] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3243), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124867] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3253), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124963] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3327), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125059] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3330), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125155] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3225), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125251] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3217), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125347] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3152), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125443] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3271), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125539] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3282), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125635] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym_word, - ACTIONS(1282), 25, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3284), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125731] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7068), 1, + sym__special_character, + STATE(2483), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [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, + sym_word, + [125785] = 5, ACTIONS(71), 1, sym_comment, - STATE(2503), 1, + STATE(2505), 1, aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, + ACTIONS(6794), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5289), 14, + ACTIONS(5076), 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, @@ -186739,11 +190146,11 @@ 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(5291), 22, + ACTIONS(5078), 24, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -186754,6 +190161,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, @@ -186764,20 +190172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127915] = 6, + [125839] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6659), 1, - aux_sym_concatenation_token1, - ACTIONS(6669), 1, - sym__concat, - STATE(2527), 1, + STATE(2508), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 13, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4853), 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, @@ -186787,9 +190196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1229), 23, + ACTIONS(4855), 24, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -186811,34 +190221,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127968] = 3, + [125893] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1334), 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(1286), 25, + ACTIONS(1336), 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_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186848,6 +190260,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, @@ -186855,868 +190268,923 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128015] = 3, - ACTIONS(71), 1, + [125943] = 7, + ACTIONS(3), 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), 25, - sym__concat, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6567), 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(6557), 10, + 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_QMARK, - aux_sym_concatenation_token1, - [128062] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(1215), 25, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_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(6555), 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, + [126001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 37, + 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_QMARK, - aux_sym_concatenation_token1, - [128109] = 3, - 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), 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, - [128156] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6659), 1, - aux_sym_concatenation_token1, - ACTIONS(6671), 1, - sym__concat, - STATE(2527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 13, - 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, + 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(1209), 23, + [126051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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, + 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, - [128209] = 4, - ACTIONS(71), 1, + sym_word, + [126101] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6677), 1, + ACTIONS(1348), 5, + sym_file_descriptor, sym__concat, - ACTIONS(6675), 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(6673), 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_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 37, + 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128258] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 14, 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, sym_word, - ACTIONS(1215), 25, + [126151] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 10, + 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_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6559), 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(6555), 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, - [128305] = 3, - ACTIONS(71), 1, + sym_word, + [126209] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 14, - anon_sym_EQ, + ACTIONS(2178), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 36, + 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(1225), 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + 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, - [128352] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [126259] = 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), 25, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 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, - aux_sym_concatenation_token1, - [128399] = 3, - ACTIONS(71), 1, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3202), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126355] = 3, + ACTIONS(3), 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), 25, + ACTIONS(1320), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 37, + 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_QMARK, - aux_sym_concatenation_token1, - [128446] = 3, - ACTIONS(71), 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), 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, - [128493] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2474), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6620), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5387), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5389), 22, + [126405] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6564), 1, sym_file_descriptor, + ACTIONS(6562), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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(6555), 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, - [128544] = 5, - ACTIONS(71), 1, + sym_word, + [126463] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2527), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6679), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 13, + ACTIONS(4947), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4945), 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, - ACTIONS(1215), 23, + [126513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [128595] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6682), 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), 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, - [128648] = 3, - ACTIONS(71), 1, + sym_word, + [126563] = 5, + 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), 25, - sym__concat, + ACTIONS(7071), 1, + sym__special_character, + STATE(2279), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 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(5902), 36, + 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_QMARK, - aux_sym_concatenation_token1, - [128695] = 6, - 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, - 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), 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, - [128748] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_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, sym_word, - ACTIONS(1225), 23, + [126617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [128799] = 3, + sym_word, + [126667] = 26, 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, + 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym_word, - ACTIONS(1258), 25, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3185), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6392), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(4732), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(4720), 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(6390), 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_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, + [126817] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3176), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128846] = 5, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126913] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6686), 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, + sym_word, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, sym__special_character, - STATE(2533), 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), 23, + ACTIONS(1215), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [128897] = 3, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3244), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127009] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + ACTIONS(1306), 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(1302), 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [128944] = 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, @@ -187725,23 +191193,24 @@ 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(1308), 27, 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_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, @@ -187753,45 +191222,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128991] = 5, + [127059] = 6, ACTIONS(71), 1, sym_comment, - STATE(2473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, + ACTIONS(6794), 1, aux_sym_concatenation_token1, - ACTIONS(5130), 14, + ACTIONS(7073), 1, + sym__concat, + STATE(2509), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(5132), 22, + ACTIONS(1283), 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_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, @@ -187799,156 +191272,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129042] = 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), 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [129089] = 5, + [127115] = 26, ACTIONS(71), 1, sym_comment, - STATE(2475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 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(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5136), 22, - sym_file_descriptor, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, sym_test_operator, + ACTIONS(543), 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(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3187), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127211] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(1125), 1, + sym_word, + ACTIONS(1127), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_BANG, + ACTIONS(1137), 1, + anon_sym_TILDE, + ACTIONS(1147), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6502), 1, + sym__special_character, + STATE(2661), 1, + aux_sym__literal_repeat1, + STATE(2923), 1, + sym__expression, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129140] = 6, - ACTIONS(3), 1, + ACTIONS(1133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1143), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3078), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2747), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127307] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(6794), 1, aux_sym_concatenation_token1, - ACTIONS(6689), 1, + ACTIONS(7075), 1, sym__concat, - STATE(1759), 1, + STATE(2509), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(1275), 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(1277), 24, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, 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_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [129193] = 5, + [127363] = 5, ACTIONS(71), 1, sym_comment, - STATE(2519), 1, + STATE(2509), 1, aux_sym_concatenation_repeat1, - ACTIONS(6659), 2, + ACTIONS(7077), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5134), 13, + ACTIONS(1261), 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, @@ -187958,9 +191486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5136), 23, + ACTIONS(1263), 24, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -187982,978 +191511,1229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129244] = 3, + [127417] = 26, 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, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 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, - [129291] = 3, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3196), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127513] = 26, 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, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, 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, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, sym_test_operator, + ACTIONS(543), 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, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, sym__special_character, - anon_sym_DQUOTE, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3197), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(539), 2, 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, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127609] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 1, - sym__special_character, - STATE(2481), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 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(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5563), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, sym_test_operator, + ACTIONS(543), 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, - anon_sym_DQUOTE, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3203), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129438] = 4, - 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, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127705] = 26, 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, + 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(1314), 25, - sym_file_descriptor, - sym__concat, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3597), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129534] = 6, - ACTIONS(3), 1, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127801] = 26, + 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, - 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), 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, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3600), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [129587] = 3, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127897] = 26, 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, + 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, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1262), 25, - sym_file_descriptor, - sym__concat, - 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [129634] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6701), 1, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, sym__special_character, - STATE(2452), 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, + ACTIONS(1235), 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, - [129685] = 3, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3601), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127993] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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(1310), 25, - sym_file_descriptor, - sym__concat, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3602), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129732] = 3, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128089] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 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(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(1302), 26, - sym_file_descriptor, - sym__concat, - 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_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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3603), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129779] = 3, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128185] = 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, - sym_word, - ACTIONS(1278), 25, - sym_file_descriptor, - sym__concat, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3604), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129826] = 3, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128281] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 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(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), 26, - sym_file_descriptor, - sym__concat, - 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_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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3606), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129873] = 3, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128377] = 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, + ACTIONS(262), 1, aux_sym_number_token1, + ACTIONS(264), 1, aux_sym_number_token2, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1306), 25, - sym_file_descriptor, - sym__concat, - 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3607), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129920] = 6, - ACTIONS(3), 1, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128473] = 26, + 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, + 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(5130), 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, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3608), 1, + sym__expression, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [129973] = 6, - ACTIONS(3), 1, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128569] = 26, + ACTIONS(71), 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, - 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(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_AMP_GT_GT, - anon_sym_LT_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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1221), 1, 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, - 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), 25, - sym__concat, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130124] = 3, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3609), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128665] = 26, 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, - 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130171] = 3, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3610), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128761] = 26, ACTIONS(71), 1, sym_comment, - 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, + 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, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1310), 25, - sym_file_descriptor, - sym__concat, - sym_variable_name, + 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_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1161), 1, sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3324), 1, + sym__expression, + ACTIONS(101), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(103), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1165), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130218] = 6, - ACTIONS(3), 1, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2708), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128857] = 26, + 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(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), 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, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1163), 1, anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3617), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, sym_raw_string, sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128953] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, + ACTIONS(529), 1, aux_sym_number_token2, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 1, + sym_test_operator, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3210), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [130271] = 3, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129049] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + STATE(2505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6794), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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), 25, + ACTIONS(1273), 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_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -188962,7 +192742,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, @@ -188970,191 +192750,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130318] = 3, + [129103] = 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), 25, - sym__concat, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 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, - aux_sym_concatenation_token1, - [130365] = 3, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3211), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129199] = 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), 25, - sym__concat, + ACTIONS(185), 1, + anon_sym_TILDE, + ACTIONS(502), 1, + sym_word, + ACTIONS(509), 1, + anon_sym_LPAREN, + ACTIONS(511), 1, + anon_sym_BANG, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(541), 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, - aux_sym_concatenation_token1, - [130412] = 4, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + sym__special_character, + STATE(2814), 1, + aux_sym__literal_repeat1, + STATE(3215), 1, + sym__expression, + ACTIONS(181), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(183), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(525), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3317), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2719), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129295] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6707), 1, - sym__concat, - ACTIONS(6705), 14, - anon_sym_EQ, + ACTIONS(1366), 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(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, - ACTIONS(71), 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), 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, - [130508] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 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, @@ -189164,15 +192909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1368), 27, 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_AMP_GT_GT, anon_sym_GT_PIPE, @@ -189191,81 +192937,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130555] = 3, - ACTIONS(71), 1, + [129345] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 14, + ACTIONS(7080), 1, + sym__special_character, + STATE(2332), 1, + aux_sym__literal_repeat1, + ACTIONS(5978), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5976), 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_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, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 25, + [129399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [130602] = 5, + sym_word, + [129449] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6609), 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, sym__special_character, - STATE(2481), 1, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, aux_sym__literal_repeat1, - ACTIONS(4307), 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, + STATE(2833), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129545] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, + sym_word, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3618), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129641] = 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(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1201), 1, sym_word, - ACTIONS(4309), 25, + ACTIONS(1203), 1, + anon_sym_BANG, + ACTIONS(1209), 1, + anon_sym_TILDE, + ACTIONS(1211), 1, + sym__special_character, + ACTIONS(1215), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3332), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1205), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1207), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1213), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2741), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [129737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2178), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 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, @@ -189273,42 +193276,50 @@ 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, - [130653] = 3, + sym_word, + [129787] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(1314), 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(1262), 25, + ACTIONS(1316), 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_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189318,6 +193329,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,78 +193337,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130700] = 3, + [129837] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, - anon_sym_EQ, + ACTIONS(1261), 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(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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1248), 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(1250), 25, + ACTIONS(1263), 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_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189406,6 +193376,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,42 +193384,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130794] = 3, + [129887] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1302), 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(1302), 24, + ACTIONS(1304), 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_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,42 +193431,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130840] = 3, + [129937] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1322), 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(1306), 24, + ACTIONS(1324), 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_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,156 +193478,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130886] = 6, - ACTIONS(71), 1, + [129987] = 3, + ACTIONS(3), 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, - 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), 22, + ACTIONS(1360), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [130938] = 6, - 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, - 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, + [130037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [130990] = 5, - ACTIONS(71), 1, + sym_word, + [130087] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6719), 2, + ACTIONS(1368), 6, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 13, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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, aux_sym_number_token1, aux_sym_number_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), 22, + [130137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [131040] = 5, + sym_word, + [130187] = 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(1362), 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, @@ -189658,21 +193685,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1225), 22, + ACTIONS(1364), 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, @@ -189681,100 +193713,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131090] = 3, - ACTIONS(71), 1, + [130237] = 3, + ACTIONS(3), 1, sym_comment, - 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), 25, + ACTIONS(1340), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [131136] = 3, - ACTIONS(71), 1, + sym_word, + [130287] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 13, + ACTIONS(1316), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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, aux_sym_number_token1, aux_sym_number_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), 25, + [130337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, 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, - [131182] = 3, + sym_word, + [130387] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 13, + ACTIONS(1310), 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, @@ -189784,14 +193873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 25, + ACTIONS(1312), 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, @@ -189810,96 +193901,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131228] = 3, + [130437] = 26, 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, + 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, + ACTIONS(282), 1, + sym__brace_start, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1163), 1, + anon_sym_DQUOTE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1221), 1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1223), 1, + anon_sym_BANG, + ACTIONS(1229), 1, + anon_sym_TILDE, + ACTIONS(1231), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + STATE(2654), 1, + aux_sym__literal_repeat1, + STATE(3598), 1, + sym__expression, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1225), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1227), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1233), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2784), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2898), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [130533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 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(5726), 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, - 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, - [131274] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [130583] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1320), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + 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_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(1310), 25, + [130633] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7084), 1, + anon_sym_DQUOTE, + ACTIONS(7088), 1, + sym_variable_name, + STATE(3753), 1, + sym_string, + ACTIONS(7086), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1245), 3, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7082), 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(1237), 25, + 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, 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, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131320] = 3, + sym_word, + [130692] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + STATE(2650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189914,9 +194139,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + sym__special_character, + ACTIONS(1273), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189936,17 +194161,67 @@ 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, - anon_sym_COLON, - [131366] = 3, + [130745] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7090), 1, + sym__special_character, + STATE(2555), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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, + [130798] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(1330), 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, @@ -189956,10 +194231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 25, + ACTIONS(1332), 26, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -189982,53 +194258,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131412] = 3, - ACTIONS(71), 1, + [130847] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 13, + ACTIONS(7093), 1, + sym__special_character, + STATE(2557), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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, + 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(1270), 25, + [130900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7096), 1, + sym__special_character, + STATE(2578), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [131458] = 3, + sym_word, + [130953] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6653), 14, + ACTIONS(1366), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190043,9 +194372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6651), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1368), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190065,13 +194394,62 @@ 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, - [131504] = 3, + aux_sym_concatenation_token1, + [131002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [131051] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6641), 14, + ACTIONS(1314), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190086,9 +194464,9 @@ 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(1316), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190108,13 +194486,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, anon_sym_COLON, - [131550] = 3, + aux_sym_concatenation_token1, + [131100] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1261), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190129,9 +194510,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 24, + ACTIONS(1263), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190151,13 +194532,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131596] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131149] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1310), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190172,9 +194556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 24, + ACTIONS(1312), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190194,13 +194578,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131642] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131198] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(1302), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190215,9 +194602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 24, + ACTIONS(1304), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190237,13 +194624,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131688] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131247] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1306), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190258,9 +194648,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 24, + ACTIONS(1308), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190280,13 +194670,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131734] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131296] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1322), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190301,9 +194694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 24, + ACTIONS(1324), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190323,15 +194716,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131780] = 4, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131345] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6722), 1, - sym_extglob_pattern, - ACTIONS(6466), 14, + ACTIONS(1318), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190346,7 +194740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6468), 23, + ACTIONS(1320), 27, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -190367,13 +194762,62 @@ 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, - [131828] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [131443] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6726), 14, + ACTIONS(1358), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190388,9 +194832,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6724), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1360), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190410,13 +194854,212 @@ 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, - [131874] = 3, + aux_sym_concatenation_token1, + [131492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(7098), 1, + sym__concat, + STATE(1517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [131547] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(7100), 1, + sym__concat, + STATE(1517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [131602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(7102), 1, + sym__concat, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [131657] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(7104), 1, + sym__concat, + STATE(1530), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [131712] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6730), 14, + ACTIONS(1354), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190431,9 +195074,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6728), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1356), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190453,13 +195096,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, anon_sym_COLON, - [131920] = 3, + aux_sym_concatenation_token1, + [131761] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1326), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190474,9 +195120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 24, + ACTIONS(1328), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190496,13 +195142,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131966] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131810] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1330), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190517,9 +195166,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 24, + ACTIONS(1332), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190539,13 +195188,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [132012] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131859] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1342), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190560,9 +195212,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 24, + ACTIONS(1344), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190582,60 +195234,70 @@ 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, - [132058] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131908] = 5, + ACTIONS(3), 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), 25, + ACTIONS(7106), 1, + sym__special_character, + STATE(2578), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - [132104] = 3, + sym_word, + [131961] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(1362), 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, @@ -190645,10 +195307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 25, + ACTIONS(1364), 26, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -190671,156 +195334,108 @@ 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, + [132010] = 3, + ACTIONS(71), 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, + ACTIONS(1334), 15, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5862), 2, - anon_sym_PIPE, anon_sym_LT_LT, - ACTIONS(5864), 5, - anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_TILDE, 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(1336), 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(5872), 13, - sym_variable_name, - sym_test_operator, - sym__brace_start, 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, - [132252] = 7, - ACTIONS(71), 1, + [132059] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 37, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5864), 5, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_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, - sym_word, - 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), 13, - sym_variable_name, - sym_test_operator, - sym__brace_start, + 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, - [132306] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [132108] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6738), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 13, + ACTIONS(1358), 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, @@ -190828,12 +195443,13 @@ 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(5266), 23, + ACTIONS(1360), 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, @@ -190844,24 +195460,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_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, - [132356] = 3, + [132157] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(1346), 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, @@ -190871,10 +195491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 25, + ACTIONS(1348), 26, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -190897,14 +195518,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132402] = 3, + [132206] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(7109), 1, + sym__special_character, + STATE(2646), 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, @@ -190912,16 +195539,16 @@ 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(1290), 25, + ACTIONS(276), 25, 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, @@ -190931,19 +195558,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, - 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, - [132448] = 3, + [132259] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 14, + ACTIONS(1334), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190958,7 +195584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 24, + ACTIONS(1336), 27, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -190980,21 +195606,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_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [132494] = 5, + anon_sym_COLON, + aux_sym_concatenation_token1, + [132308] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 12, + ACTIONS(1354), 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, @@ -191002,11 +195629,13 @@ 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(1356), 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, @@ -191020,67 +195649,211 @@ 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, - [132544] = 5, + [132357] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6738), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(5184), 13, + ACTIONS(1338), 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, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5186), 23, - sym_file_descriptor, - 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(1340), 27, + sym__concat, 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_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, + [132406] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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_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, - [132594] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1348), 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, + [132455] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, + ACTIONS(1350), 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(1352), 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, + [132504] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2738), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1139), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 12, + ACTIONS(1273), 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, + [132557] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7111), 1, + aux_sym_concatenation_token1, + ACTIONS(7113), 1, + sym__concat, + STATE(2594), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191089,11 +195862,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(5563), 24, + ACTIONS(1283), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -191102,6 +195877,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, @@ -191114,18 +195890,19 @@ 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, - [132644] = 3, + [132612] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(1342), 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, @@ -191135,10 +195912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1266), 25, + ACTIONS(1344), 26, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -191161,10 +195939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132690] = 3, + [132661] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(7111), 1, + aux_sym_concatenation_token1, + ACTIONS(7115), 1, + sym__concat, + STATE(2594), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191173,20 +195957,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(1294), 25, + ACTIONS(1277), 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, @@ -191195,8 +195981,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, @@ -191204,10 +195988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132736] = 3, + [132716] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + STATE(2594), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7117), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191216,20 +196005,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(1250), 25, + ACTIONS(1263), 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, @@ -191238,8 +196029,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, @@ -191247,10 +196036,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132782] = 3, + [132769] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [132818] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + STATE(2591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191259,20 +196099,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(1298), 25, + ACTIONS(1273), 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, @@ -191281,8 +196123,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, @@ -191290,149 +196130,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132828] = 3, - ACTIONS(71), 1, + [132871] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_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(1258), 25, + [132920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, - 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, - [132874] = 8, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [132969] = 8, + ACTIONS(3), 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, + ACTIONS(7084), 1, + anon_sym_DQUOTE, + ACTIONS(7088), 1, + sym_variable_name, + STATE(3753), 1, + sym_string, + ACTIONS(7086), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1251), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(7082), 8, 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_BANG, anon_sym_QMARK, - anon_sym_COLON, - [132930] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 12, - anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1249), 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(5266), 24, + [133028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132980] = 4, + sym_word, + [133077] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6744), 14, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + STATE(2652), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1271), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191447,9 +196341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6742), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + sym__special_character, + ACTIONS(1273), 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, @@ -191467,17 +196364,67 @@ 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, - [133028] = 3, + [133130] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7120), 1, + sym__special_character, + STATE(2557), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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, + 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, + [133183] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1350), 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, @@ -191487,10 +196434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 25, + ACTIONS(1352), 26, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -191513,53 +196461,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133074] = 3, - ACTIONS(71), 1, + [133232] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, + sym_file_descriptor, + ACTIONS(6567), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6557), 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(6559), 12, 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_BQUOTE, + ACTIONS(6555), 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_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1306), 25, + [133289] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6564), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6567), 3, + sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(6557), 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(6559), 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_DASH, anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(6555), 15, 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_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133120] = 3, + sym_word, + [133346] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + STATE(2591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5902), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191568,20 +196578,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), 25, + ACTIONS(5904), 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, @@ -191590,8 +196602,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, @@ -191599,350 +196609,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133166] = 8, + [133399] = 5, 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, + STATE(2593), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5906), 14, 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_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(5908), 24, + 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_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133280] = 8, - 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_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133452] = 5, + ACTIONS(3), 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, + ACTIONS(6392), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4732), 3, + 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, + ACTIONS(4720), 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(6390), 20, + 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_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, 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, - 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, - [133384] = 8, + 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, + [133505] = 5, 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, + STATE(2593), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, 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, - sym_comment, - ACTIONS(6709), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(2176), 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(6711), 24, - sym__concat, + 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(2178), 24, + 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, 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, - [133486] = 16, - 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_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133558] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6770), 1, - anon_sym_EQ, - ACTIONS(6772), 1, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 36, + anon_sym_SEMI, 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, + 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, + [133607] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6788), 1, - sym__special_character, - STATE(2793), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + STATE(2591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4941), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191951,12 +196816,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(5132), 24, + ACTIONS(4943), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -191976,61 +196844,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, - [133608] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6792), 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(6790), 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, - [133654] = 5, + [133660] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 12, + STATE(2593), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4945), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192039,11 +196864,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(4282), 24, + ACTIONS(4947), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -192052,6 +196879,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, @@ -192064,22 +196892,19 @@ 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, - [133704] = 5, + [133713] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 12, + ACTIONS(1338), 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, @@ -192087,11 +196912,13 @@ 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(1340), 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, @@ -192105,26 +196932,25 @@ 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, - [133754] = 5, + [133762] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6740), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(1366), 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, @@ -192132,11 +196958,13 @@ 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), 24, + ACTIONS(1368), 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, @@ -192150,547 +196978,254 @@ 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, - [133804] = 3, + [133811] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6665), 14, - anon_sym_EQ, + ACTIONS(1314), 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(6667), 24, + 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(1316), 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, - [133850] = 8, + 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, + [133860] = 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(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(6611), 6, - anon_sym_EQ, + ACTIONS(1261), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 22, + 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(1263), 26, + sym_file_descriptor, 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, + 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, - [133906] = 18, + 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, + [133909] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - 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, + ACTIONS(1346), 15, 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_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, - 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_RBRACK, + anon_sym_LT_LT, anon_sym_EQ_TILDE, - [133982] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, + 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(1348), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6794), 1, + sym__bare_dollar, + sym__brace_start, 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(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_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, - 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_RBRACK, - [134060] = 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, + 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, + [133958] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - 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, + ACTIONS(1302), 15, 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_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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [134132] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - 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_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_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(1304), 26, + sym_file_descriptor, 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, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134202] = 14, + 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, + [134007] = 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, - anon_sym_EQ, + ACTIONS(1322), 15, anon_sym_PIPE, - 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(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, - 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, - [134270] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, - sym_test_operator, - ACTIONS(6802), 1, - anon_sym_AMP, - 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(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(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6762), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 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, - [134336] = 12, - 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(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(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 17, + 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(1324), 26, + sym_file_descriptor, 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, - [134400] = 11, - 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(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, - 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, + sym__bare_dollar, + sym__brace_start, 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, - [134462] = 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, + [134056] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + STATE(2754), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192705,8 +197240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6613), 24, - sym__concat, + ACTIONS(1273), 24, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192727,118 +197261,67 @@ 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, - [134508] = 9, - ACTIONS(71), 1, + anon_sym_COLON, + sym__special_character, + [134109] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6766), 1, + ACTIONS(7122), 1, + sym__special_character, + STATE(2555), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, 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(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 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, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134566] = 7, - 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, - 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(6613), 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, - [134620] = 6, + 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, + [134162] = 5, 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, + STATE(2716), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192849,9 +197332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 22, - sym__concat, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1273), 24, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -192869,179 +197357,177 @@ 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, - [134672] = 5, - ACTIONS(71), 1, + sym__special_character, + [134215] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_STAR_STAR, - ACTIONS(6756), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, - anon_sym_EQ, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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, - ACTIONS(6613), 22, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [134270] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, + STATE(2571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 5, + 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(5906), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134722] = 5, - 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, - 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(6613), 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, - [134772] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [134325] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, - anon_sym_EQ, + ACTIONS(1310), 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(6613), 24, + 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(1312), 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, - [134818] = 8, + 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, + [134374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, + sym__concat, + STATE(2572), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5594), 5, 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, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5592), 33, anon_sym_PIPE_PIPE, anon_sym_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, @@ -193051,45 +197537,46 @@ 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, - [134874] = 8, + 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, + [134429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, + sym__concat, + STATE(2573), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5602), 5, 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_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5600), 33, anon_sym_PIPE_PIPE, anon_sym_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, @@ -193099,17 +197586,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_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [134930] = 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, + aux_sym__simple_variable_name_token1, + sym_word, + [134484] = 5, ACTIONS(71), 1, sym_comment, - STATE(2575), 1, + STATE(2593), 1, aux_sym_concatenation_repeat1, - ACTIONS(6713), 2, + ACTIONS(7111), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5130), 13, + ACTIONS(2180), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193118,27 +197620,30 @@ 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(2182), 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, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -193146,310 +197651,547 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134980] = 5, - ACTIONS(71), 1, + [134537] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2576), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6713), 2, - sym__concat, + ACTIONS(6140), 1, aux_sym_concatenation_token1, - ACTIONS(5134), 13, + ACTIONS(6142), 1, + sym__concat, + STATE(2571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 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, - ACTIONS(5136), 22, + [134592] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 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, - [135030] = 21, - ACTIONS(71), 1, + sym_word, + [134647] = 6, + ACTIONS(3), 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, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4945), 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, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [134702] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1318), 15, + anon_sym_PIPE, 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, - ACTIONS(71), 1, + 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(1320), 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, + [134751] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 1, - anon_sym_RBRACK, - ACTIONS(6834), 1, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, sym__concat, - ACTIONS(1235), 14, - anon_sym_EQ, + STATE(2571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2180), 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(1332), 22, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [134806] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 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(5052), 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, - [135162] = 3, - ACTIONS(71), 1, + 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, + [134861] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 15, - anon_sym_EQ, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - ACTIONS(1225), 23, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [134916] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 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(5722), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [135208] = 21, - ACTIONS(71), 1, + 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, + [134971] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6140), 1, + aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5726), 33, 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_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_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [135026] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 15, + anon_sym_PIPE, 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, - [135290] = 5, + 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(1308), 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, + [135075] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_RBRACK, - ACTIONS(6838), 1, + STATE(2591), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, sym__concat, - ACTIONS(1235), 14, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(5052), 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(5054), 24, + 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, 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, - [135340] = 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_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135128] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 13, + STATE(2593), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5056), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193462,8 +198204,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(2158), 25, + ACTIONS(5058), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -193485,102 +198228,303 @@ 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, - [135386] = 3, - ACTIONS(71), 1, + [135181] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, + sym__concat, + STATE(2572), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5722), 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(1302), 24, - sym_file_descriptor, + [135236] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, + STATE(2573), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5726), 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, 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, + [135291] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6140), 1, aux_sym_concatenation_token1, + ACTIONS(6142), 1, + sym__concat, + STATE(2570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, - [135432] = 5, - ACTIONS(71), 1, + sym_word, + [135346] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6840), 1, + ACTIONS(6160), 1, + aux_sym_concatenation_token1, + ACTIONS(6162), 1, sym__concat, - ACTIONS(1235), 14, - anon_sym_EQ, + STATE(2572), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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(1332), 22, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [135401] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(1328), 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_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, + [135450] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7124), 1, + sym__special_character, + STATE(2646), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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, - [135482] = 3, + 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(1372), 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, + 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, + [135503] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1362), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193595,9 +198539,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(1364), 27, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -193617,13 +198561,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, anon_sym_COLON, - [135528] = 3, + aux_sym_concatenation_token1, + [135552] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 13, + ACTIONS(1322), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193636,9 +198583,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(4439), 25, + ACTIONS(1324), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -193655,107 +198604,87 @@ 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, - [135574] = 3, - ACTIONS(71), 1, + [135600] = 3, + ACTIONS(3), 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), 25, + ACTIONS(1273), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135620] = 21, + sym_word, + [135648] = 6, 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(1159), 1, + aux_sym_concatenation_token1, + ACTIONS(7127), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(1283), 23, + 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 +198696,70 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [135750] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym_RBRACK, - ACTIONS(6844), 1, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7129), 1, sym__concat, - ACTIONS(1235), 14, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193789,7 +198774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1283), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193810,58 +198795,82 @@ 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, + [135804] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2653), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7131), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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(1263), 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_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, + [135856] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7134), 1, + sym__special_character, + STATE(2687), 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(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(504), 24, + 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 +198882,28 @@ 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135908] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6483), 1, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7136), 1, anon_sym_RBRACK, - ACTIONS(6848), 1, + ACTIONS(7138), 1, sym__concat, - ACTIONS(1235), 14, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193895,7 +198918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 22, + ACTIONS(1379), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193918,56 +198941,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135884] = 21, + [135964] = 7, 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(1193), 1, + anon_sym_RBRACK, + ACTIONS(7140), 1, + sym__special_character, + ACTIONS(7142), 1, + sym__concat, + STATE(2746), 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(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(504), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193979,239 +198982,38 @@ 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_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_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, - [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_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_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, - [136130] = 21, + [136020] = 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(7148), 1, + sym_extglob_pattern, + ACTIONS(7144), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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_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, + ACTIONS(7146), 25, + sym_test_operator, 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, @@ -194223,94 +199025,181 @@ 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_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_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, - [136376] = 3, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [136070] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7156), 1, + anon_sym_esac, + ACTIONS(7158), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7566), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3680), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7152), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136164] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7192), 1, + anon_sym_esac, + ACTIONS(7194), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7575), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3681), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7190), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136258] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(1287), 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, sym_word, - ACTIONS(2162), 25, + ACTIONS(1294), 26, 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_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -194319,6 +199208,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, @@ -194327,117 +199217,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136422] = 21, + [136306] = 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(7140), 1, + sym__special_character, + STATE(2746), 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(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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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_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, + ACTIONS(504), 24, + sym__concat, + sym_test_operator, 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, @@ -194449,376 +199255,165 @@ 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_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_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, - [136668] = 21, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136358] = 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, + STATE(2689), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7196), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5592), 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(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_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, - [136750] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(5594), 23, + 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_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_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, - [136832] = 21, + 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, + [136410] = 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, + STATE(2692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7196), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5600), 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(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_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, - [136914] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(5602), 23, + 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_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_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, - [136996] = 21, + 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, + [136462] = 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(7198), 1, + sym__special_character, + STATE(2742), 1, + aux_sym__literal_repeat1, + ACTIONS(5060), 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(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_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, - [137078] = 3, + 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(5062), 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, + [136514] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 13, + STATE(2756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5722), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194827,12 +199422,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(4313), 25, + ACTIONS(5724), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -194841,7 +199436,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, @@ -194850,125 +199444,91 @@ 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, - [137124] = 21, + [136566] = 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, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5726), 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(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_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, - [137206] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(5728), 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_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, + [136618] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7202), 1, + anon_sym_RBRACK, + ACTIONS(7204), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1289), 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(1379), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194980,117 +199540,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137288] = 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_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6882), 1, - anon_sym_RPAREN_RPAREN, - STATE(6603), 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, - [137370] = 21, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136674] = 6, 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(1159), 1, + aux_sym_concatenation_token1, + ACTIONS(7206), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195102,117 +199587,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137452] = 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_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6886), 1, - anon_sym_RPAREN_RPAREN, - STATE(6526), 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, - [137534] = 21, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136728] = 7, 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(1197), 1, + anon_sym_RBRACK, + ACTIONS(7140), 1, + sym__special_character, + ACTIONS(7208), 1, + sym__concat, + STATE(2746), 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(6888), 1, - anon_sym_RPAREN_RPAREN, - STATE(6554), 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(504), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195224,239 +199637,914 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137616] = 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_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6890), 1, - anon_sym_RPAREN_RPAREN, - STATE(6596), 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, - [137698] = 21, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136784] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7212), 1, + anon_sym_esac, + ACTIONS(7214), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7587), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3664), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7210), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136878] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7218), 1, + anon_sym_esac, + ACTIONS(7220), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7599), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3674), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7216), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [136972] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4941), 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(4943), 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_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, + [137024] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7224), 1, + anon_sym_esac, + ACTIONS(7226), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7638), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3675), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7222), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137118] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1366), 14, anon_sym_PIPE, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1368), 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, + [137166] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7230), 1, + anon_sym_esac, + ACTIONS(7232), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7643), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3686), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7228), 3, + anon_sym_SEMI, 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(6892), 1, - anon_sym_RPAREN_RPAREN, - STATE(6452), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6748), 2, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [137260] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4945), 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(4947), 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(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 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, + [137312] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + sym__special_character, + STATE(2742), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 14, + anon_sym_PIPE, 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, - [137780] = 21, + 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(4943), 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, + [137364] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1314), 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(1316), 26, + sym_file_descriptor, + sym__concat, + 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_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, + [137412] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 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(6894), 1, - anon_sym_RPAREN_RPAREN, - STATE(6467), 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_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(1263), 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, - ACTIONS(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 2, + 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, + [137460] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1302), 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(1304), 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, + [137508] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(7234), 1, + sym__concat, + STATE(1845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [137562] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(7236), 1, + sym__concat, + STATE(1845), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [137616] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + sym__special_character, + STATE(2742), 1, + aux_sym__literal_repeat1, + ACTIONS(5076), 14, + anon_sym_PIPE, 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, - [137862] = 21, + 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(5078), 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, + [137668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6396), 1, + sym__concat, + STATE(2681), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [137722] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1310), 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(1312), 26, + sym_file_descriptor, + sym__concat, + 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_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, + [137770] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 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(1308), 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, + [137818] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7238), 1, + sym__special_character, + STATE(2687), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(6896), 1, - anon_sym_RPAREN_RPAREN, - STATE(6497), 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(1372), 24, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195468,56 +200556,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [137944] = 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [137870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + sym_word, + [137918] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7196), 1, + aux_sym_concatenation_token1, + ACTIONS(7241), 1, + sym__concat, + STATE(2696), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(1283), 23, + 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_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137972] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7243), 1, + anon_sym_RBRACK, + ACTIONS(7245), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1289), 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(6898), 1, - anon_sym_RPAREN_RPAREN, - STATE(6507), 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(1379), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195529,56 +200700,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138026] = 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, + [138028] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_RBRACK, + ACTIONS(7140), 1, + sym__special_character, + ACTIONS(7247), 1, + sym__concat, + STATE(2746), 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(6900), 1, - anon_sym_RPAREN_RPAREN, - STATE(6517), 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(504), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195590,803 +200749,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [138108] = 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_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, - 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_TILDE, - ACTIONS(6832), 1, anon_sym_QMARK, - ACTIONS(6904), 1, - anon_sym_RPAREN_RPAREN, - STATE(6627), 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, - [138272] = 21, + [138084] = 6, 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(7196), 1, + aux_sym_concatenation_token1, + ACTIONS(7249), 1, + sym__concat, + STATE(2696), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(6906), 1, - anon_sym_RPAREN_RPAREN, - STATE(6550), 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, - [138354] = 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_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6908), 1, - anon_sym_RPAREN_RPAREN, - STATE(6558), 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, - [138436] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(1277), 23, + 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_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(6910), 1, - anon_sym_RPAREN_RPAREN, - STATE(6564), 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, - [138518] = 21, + 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, + [138138] = 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, + STATE(2756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5052), 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(6912), 1, - anon_sym_RPAREN_RPAREN, - STATE(6568), 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, - [138600] = 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_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6914), 1, - anon_sym_RPAREN_RPAREN, - STATE(6586), 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, - [138682] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(5054), 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_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(6916), 1, - anon_sym_RPAREN_RPAREN, - STATE(6597), 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, - [138764] = 21, + 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, + [138190] = 6, 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(7251), 1, + aux_sym_concatenation_token1, + ACTIONS(7253), 1, + sym__concat, + STATE(2709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(6918), 1, - anon_sym_RPAREN_RPAREN, - STATE(6613), 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, - [138846] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(1283), 23, + 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_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(6920), 1, - anon_sym_RPAREN_RPAREN, - STATE(6625), 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, - [138928] = 21, - ACTIONS(71), 1, + 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, + [138244] = 26, + ACTIONS(3), 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, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7257), 1, + anon_sym_esac, + ACTIONS(7259), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7570), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3653), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7255), 3, + anon_sym_SEMI, 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_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, - [139010] = 21, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138338] = 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, + STATE(2696), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7261), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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(6924), 1, - anon_sym_RPAREN_RPAREN, - STATE(6483), 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, - [139092] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(1263), 23, + 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_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(6926), 1, - anon_sym_RPAREN_RPAREN, - STATE(6527), 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, - [139174] = 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, + 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, + [138390] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7264), 1, + anon_sym_RBRACK, + ACTIONS(7266), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196401,9 +201041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6928), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1379), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196425,133 +201064,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [139220] = 21, - ACTIONS(71), 1, + [138446] = 26, + ACTIONS(3), 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, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7270), 1, + anon_sym_esac, + ACTIONS(7272), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7639), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3652), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7268), 3, + anon_sym_SEMI, 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(6932), 1, - anon_sym_RPAREN_RPAREN, - STATE(6547), 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, - [139302] = 21, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138540] = 26, + ACTIONS(3), 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, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7276), 1, + anon_sym_esac, + ACTIONS(7278), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7489), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3650), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7274), 3, + anon_sym_SEMI, 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(6934), 1, - anon_sym_RPAREN_RPAREN, - STATE(6557), 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, - [139384] = 3, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138634] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6938), 14, + ACTIONS(1217), 1, + anon_sym_RBRACK, + ACTIONS(7140), 1, + sym__special_character, + ACTIONS(7280), 1, + sym__concat, + STATE(2746), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196566,9 +201226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6936), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(504), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196590,301 +201249,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [139430] = 21, + [138690] = 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, + STATE(2689), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7196), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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(6940), 1, - anon_sym_RPAREN_RPAREN, - STATE(6582), 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, - [139512] = 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_TILDE, - ACTIONS(6832), 1, - anon_sym_QMARK, - ACTIONS(6942), 1, - anon_sym_RPAREN_RPAREN, - STATE(6598), 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, - [139594] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(1273), 23, + 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_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(6944), 1, - anon_sym_RPAREN_RPAREN, - STATE(6451), 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, - [139676] = 21, + 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, + [138742] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7284), 1, + anon_sym_esac, + ACTIONS(7286), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7596), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3651), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7282), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [138836] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7251), 1, + aux_sym_concatenation_token1, + ACTIONS(7288), 1, + sym__concat, + STATE(2709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 23, + 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_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, + [138890] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5056), 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(6946), 1, - anon_sym_RPAREN_RPAREN, - STATE(6454), 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_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(5058), 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(6750), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6782), 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, + [138942] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7198), 1, + sym__special_character, + STATE(2742), 1, + aux_sym__literal_repeat1, + ACTIONS(5052), 14, + anon_sym_PIPE, 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, - [139758] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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(5054), 24, + 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, + 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, + [138994] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7292), 1, + anon_sym_esac, + ACTIONS(7294), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7809), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3657), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7290), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139088] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7298), 1, + anon_sym_esac, + ACTIONS(7300), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7839), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3659), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7296), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139182] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2720), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1289), 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(6948), 1, - anon_sym_RPAREN_RPAREN, - STATE(6461), 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(1379), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196896,56 +201680,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139840] = 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139234] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7302), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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(1263), 23, + 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_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, + [139286] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7307), 1, + anon_sym_esac, + ACTIONS(7309), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7393), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3668), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7305), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139380] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7313), 1, + anon_sym_esac, + ACTIONS(7315), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7438), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3670), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7311), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [139474] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7200), 1, + aux_sym_concatenation_token1, + ACTIONS(7317), 1, + sym__concat, + STATE(2653), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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, + [139528] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2694), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7251), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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(1273), 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_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, + [139580] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7319), 1, + anon_sym_RBRACK, + ACTIONS(7321), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1289), 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(6950), 1, - anon_sym_RPAREN_RPAREN, - STATE(6471), 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(1379), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196957,56 +202008,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [139922] = 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, + [139636] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1149), 1, + anon_sym_RBRACK, + ACTIONS(7140), 1, + sym__special_character, + ACTIONS(7323), 1, + sym__concat, + STATE(2746), 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(6952), 1, - anon_sym_RPAREN_RPAREN, - STATE(6487), 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(504), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197018,56 +202057,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140004] = 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, + [139692] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1159), 1, + aux_sym_concatenation_token1, + ACTIONS(7325), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(6954), 1, - anon_sym_RPAREN_RPAREN, - STATE(6503), 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(1283), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197079,56 +202104,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140086] = 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139746] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1326), 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(1328), 26, + sym_file_descriptor, + sym__concat, + 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_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, + [139794] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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(1332), 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, + [139842] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2745), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1139), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1289), 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(6956), 1, - anon_sym_RPAREN_RPAREN, - STATE(6506), 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(1379), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197140,56 +202241,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140168] = 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, + [139894] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1159), 1, + aux_sym_concatenation_token1, + ACTIONS(7327), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(6958), 1, - anon_sym_RPAREN_RPAREN, - STATE(6509), 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(1277), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197201,56 +202289,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140250] = 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139948] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1334), 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(1336), 26, + sym_file_descriptor, + sym__concat, + 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_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, + [139996] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(6960), 1, - anon_sym_RPAREN_RPAREN, - STATE(6516), 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(1328), 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, @@ -197262,10 +202377,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140332] = 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_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [140044] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7329), 1, + sym__concat, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197280,9 +202412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6962), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1277), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197302,59 +202433,39 @@ 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, - [140378] = 21, + [140098] = 7, 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(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7331), 1, + anon_sym_RBRACK, + ACTIONS(7333), 1, + sym__concat, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1289), 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(6966), 1, - anon_sym_RPAREN_RPAREN, - STATE(6519), 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(1379), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197366,10 +202477,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140460] = 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_EQ_TILDE, + anon_sym_QMARK, + [140154] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(1189), 1, + anon_sym_RBRACK, + ACTIONS(7140), 1, + sym__special_character, + ACTIONS(7335), 1, + sym__concat, + STATE(2746), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197384,9 +202511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6962), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(504), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197408,57 +202534,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [140506] = 21, + [140210] = 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(1342), 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(6968), 1, - anon_sym_RPAREN_RPAREN, - STATE(6522), 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(1344), 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, @@ -197470,56 +202568,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140588] = 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, + [140258] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 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(6970), 1, - anon_sym_RPAREN_RPAREN, - STATE(6529), 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(1336), 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, @@ -197531,56 +202613,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140670] = 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, + [140306] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(6972), 1, - anon_sym_RPAREN_RPAREN, - STATE(6536), 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(1340), 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, @@ -197592,56 +202658,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140752] = 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, + [140354] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(6974), 1, - anon_sym_RPAREN_RPAREN, - STATE(6542), 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(1364), 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, @@ -197653,56 +202703,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140834] = 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, + [140402] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(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, + anon_sym_STAR_STAR, + ACTIONS(1348), 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, @@ -197714,56 +202748,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140916] = 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, + [140450] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(6978), 1, - anon_sym_RPAREN_RPAREN, - STATE(6552), 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_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1352), 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, - 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_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [140498] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, @@ -197775,10 +202838,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [140998] = 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_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [140546] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + STATE(2694), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7251), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5902), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197787,30 +202866,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(1254), 24, + ACTIONS(5904), 23, 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, @@ -197818,14 +202896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141044] = 5, + [140598] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6980), 1, - sym__special_character, - STATE(2737), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 13, + STATE(2703), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7251), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5906), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197834,82 +202913,85 @@ 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(1318), 23, + ACTIONS(5908), 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, 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, - [141094] = 3, + [140650] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, - anon_sym_EQ, + ACTIONS(1362), 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(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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(1364), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [141140] = 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, + [140698] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1358), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197918,30 +203000,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(1286), 24, + ACTIONS(1360), 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, @@ -197949,10 +203033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141186] = 3, + [140746] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(1354), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197961,30 +203045,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(1215), 24, + ACTIONS(1356), 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, @@ -197992,10 +203078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141232] = 3, + [140794] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7337), 1, + sym__concat, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198010,9 +203102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1290), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1283), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198032,13 +203123,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, - anon_sym_COLON, - [141278] = 3, + [140848] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + STATE(2668), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198053,9 +203149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1379), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198075,13 +203170,13 @@ 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, - anon_sym_COLON, - [141324] = 3, + [140900] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1342), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198090,30 +203185,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(1314), 24, + ACTIONS(1344), 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, @@ -198121,53 +203218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141370] = 3, + [140948] = 5, ACTIONS(71), 1, sym_comment, - 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, - 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, - sym_file_descriptor, + STATE(2755), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 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_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, - [141416] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1280), 14, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198182,9 +203241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1282), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1379), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198207,57 +203265,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [141462] = 3, + [141000] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, + ACTIONS(7339), 1, + sym__special_character, + STATE(2742), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1294), 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, - [141508] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1260), 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, @@ -198265,13 +203286,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(1262), 24, + ACTIONS(1372), 24, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -198282,21 +203301,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, - 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, - [141554] = 3, + [141052] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2176), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198309,11 +203333,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(1270), 24, + ACTIONS(2178), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198325,9 +203348,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, @@ -198336,10 +203359,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141600] = 3, + [141104] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7344), 1, + anon_sym_esac, + ACTIONS(7346), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7842), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3665), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7342), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [141198] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + ACTIONS(7348), 1, + sym__concat, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198354,8 +203451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6663), 24, - sym__concat, + ACTIONS(1277), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -198379,49 +203475,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141646] = 17, + [141252] = 5, 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(7350), 1, + sym__special_character, + STATE(2746), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6800), 1, anon_sym_CARET, - ACTIONS(6802), 1, anon_sym_AMP, - ACTIONS(6983), 1, - anon_sym_EQ, - 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(6985), 15, + anon_sym_STAR_STAR, + ACTIONS(1372), 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, @@ -198433,13 +203513,23 @@ 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, - [141720] = 3, + [141304] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(1139), 1, + aux_sym_concatenation_token1, + STATE(2723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198454,9 +203544,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6987), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1379), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198476,70 +203566,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, - anon_sym_COLON, - [141766] = 17, - 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(6832), 1, - anon_sym_QMARK, - ACTIONS(6993), 1, - anon_sym_EQ, - 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(6991), 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, - [141840] = 3, + [141356] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + STATE(2756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5902), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198552,11 +203590,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(1274), 24, + ACTIONS(5904), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198568,9 +203605,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, @@ -198579,10 +203616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141886] = 3, + [141408] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5906), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198595,11 +203637,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(1266), 24, + ACTIONS(5908), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198611,9 +203652,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, @@ -198622,96 +203663,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141932] = 3, - ACTIONS(71), 1, + [141460] = 6, + ACTIONS(3), 1, sym_comment, - 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, - 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), 24, - sym_file_descriptor, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, sym__concat, + STATE(2764), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5978), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5976), 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, - [141978] = 3, - ACTIONS(71), 1, - sym_comment, - 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, aux_sym_number_token1, aux_sym_number_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(1250), 24, - sym_file_descriptor, + [141514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, sym__concat, + STATE(2766), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6008), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6006), 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, - [142024] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [141568] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1338), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198720,30 +203771,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(1258), 24, + ACTIONS(1340), 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, @@ -198751,10 +203804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142070] = 3, + [141616] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + STATE(2756), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198767,11 +203825,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(1278), 24, + ACTIONS(1273), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198783,9 +203840,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, @@ -198794,53 +203851,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142116] = 3, + [141668] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1159), 1, + aux_sym_concatenation_token1, + ACTIONS(7353), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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), 24, - 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(1283), 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, + 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, + [141722] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1159), 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, - [142162] = 3, + ACTIONS(7355), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [141776] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(7200), 1, + aux_sym_concatenation_token1, + ACTIONS(7357), 1, + sym__concat, + STATE(2653), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198853,11 +203969,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(1294), 24, + ACTIONS(1283), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198869,9 +203984,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, @@ -198880,53 +203995,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142208] = 3, - ACTIONS(71), 1, + [141830] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6396), 1, + sym__concat, + STATE(2681), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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(1298), 24, - sym_file_descriptor, + [141884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6394), 1, + aux_sym_concatenation_token1, + ACTIONS(6396), 1, sym__concat, + STATE(2682), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5906), 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, - 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, - [142254] = 3, + sym_word, + [141938] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + STATE(2712), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7200), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2180), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198939,11 +204112,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(1302), 24, + ACTIONS(2182), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -198955,9 +204127,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, @@ -198966,10 +204138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142300] = 3, + [141990] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + STATE(2689), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7196), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5722), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198984,9 +204161,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 24, + ACTIONS(5724), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199000,7 +204177,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, @@ -199009,10 +204185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142346] = 3, + [142042] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + STATE(2692), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7196), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5726), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199027,9 +204208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 24, + ACTIONS(5728), 23, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199043,7 +204224,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, @@ -199052,52 +204232,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142392] = 18, + [142094] = 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, + STATE(2762), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7359), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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(1263), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199109,515 +204270,236 @@ 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6776), 1, - 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_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_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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142538] = 14, - ACTIONS(71), 1, + [142146] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6776), 1, - 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_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_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, - [142606] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6778), 1, - anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7154), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7162), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7166), 1, + sym__special_character, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7174), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7364), 1, + anon_sym_esac, + ACTIONS(7366), 1, + aux_sym_heredoc_redirect_token1, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7908), 1, + sym_last_case_item, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3688), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(7150), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7362), 3, + anon_sym_SEMI, 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(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_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, - [142672] = 12, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [142240] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - 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(6993), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6991), 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, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(7368), 1, + sym__concat, + STATE(1934), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 33, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [142736] = 11, - 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(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_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, - [142798] = 10, - 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(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_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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [142858] = 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(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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [142914] = 7, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [142294] = 6, + ACTIONS(3), 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, - 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), 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, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(6388), 1, + sym__concat, + STATE(2764), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, - [142968] = 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(6752), 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), 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_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [142348] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6386), 1, + aux_sym_concatenation_token1, + ACTIONS(7370), 1, + sym__concat, + STATE(1934), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, - [143020] = 5, - 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, - 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(6991), 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, - [143070] = 4, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [142402] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6746), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 14, + STATE(2876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199632,9 +204514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6991), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1273), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199654,97 +204537,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143118] = 3, + sym__special_character, + [142454] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 14, + ACTIONS(1271), 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(1254), 24, + ACTIONS(1273), 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, anon_sym_GT_AMP_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, - [143164] = 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, - 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, - [143210] = 3, + [142502] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 14, + ACTIONS(1346), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199759,9 +204601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 24, + ACTIONS(1348), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199774,6 +204617,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, @@ -199784,10 +204628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143256] = 3, + [142550] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 14, + ACTIONS(1350), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199802,9 +204646,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 24, + ACTIONS(1352), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199817,6 +204662,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, @@ -199827,10 +204673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143302] = 3, + [142598] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1346), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199845,9 +204691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 24, + ACTIONS(1348), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199860,6 +204707,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, @@ -199870,10 +204718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143348] = 3, + [142646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1318), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199888,9 +204736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 24, + ACTIONS(1320), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -199903,6 +204752,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, @@ -199913,96 +204763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143394] = 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), 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, - [143440] = 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, - 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, - [143486] = 3, + [142694] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1338), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200017,9 +204781,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(1340), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200039,17 +204803,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, - [143532] = 5, + aux_sym_concatenation_token1, + [142741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6995), 1, - sym__special_character, - STATE(2786), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(1346), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200061,9 +204822,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(1318), 24, + ACTIONS(1348), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -200076,21 +204840,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, - [143582] = 3, + [142788] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 14, + ACTIONS(7372), 1, + aux_sym_concatenation_token1, + ACTIONS(7374), 1, + sym__concat, + STATE(2787), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200099,22 +204869,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(1262), 24, + ACTIONS(1283), 22, 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, @@ -200122,7 +204890,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, sym_ansi_c_string, @@ -200130,10 +204898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143628] = 3, + [142841] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 14, + ACTIONS(7376), 1, + sym__special_character, + STATE(2852), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200142,15 +204914,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), 24, + ACTIONS(5904), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -200163,20 +204933,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, - [143674] = 3, + [142892] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1366), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200191,54 +204962,8 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [143720] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6998), 1, + ACTIONS(1368), 25, sym__concat, - 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, @@ -200259,120 +204984,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, - [143770] = 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_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_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, - [143852] = 3, + aux_sym_concatenation_token1, + [142939] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 15, - anon_sym_EQ, + ACTIONS(1314), 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, - sym__special_character, - ACTIONS(1225), 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, + sym_word, + ACTIONS(1316), 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_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [143898] = 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, + [142986] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7002), 1, - sym__special_character, - STATE(2793), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(1306), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200384,16 +205047,18 @@ 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(1308), 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, @@ -200402,18 +205067,24 @@ 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, - [143948] = 3, + [143033] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + STATE(2819), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7378), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5906), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200428,9 +205099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 24, + ACTIONS(5908), 22, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -200445,7 +205115,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_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -200453,10 +205122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143994] = 3, + [143084] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1302), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200465,30 +205134,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(1266), 24, + ACTIONS(1304), 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, @@ -200496,10 +205166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144040] = 3, + [143131] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, + ACTIONS(1261), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200508,30 +205178,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(1282), 24, + ACTIONS(1263), 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, @@ -200539,10 +205210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144086] = 3, + [143178] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(7372), 1, + aux_sym_concatenation_token1, + ACTIONS(7380), 1, + sym__concat, + STATE(2787), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200551,22 +205228,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(1250), 24, + ACTIONS(1277), 22, 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, @@ -200574,7 +205249,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, sym_ansi_c_string, @@ -200582,10 +205257,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144132] = 3, + [143231] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1289), 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(1379), 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, + [143278] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7382), 1, + sym__special_character, + STATE(2857), 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(504), 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, + [143329] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(1350), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200594,22 +205359,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, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1258), 24, + ACTIONS(1352), 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, @@ -200618,6 +205383,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 +205391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144178] = 3, + [143376] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + STATE(2787), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7384), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200637,22 +205408,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(1263), 22, 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, @@ -200660,7 +205429,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, sym_ansi_c_string, @@ -200668,10 +205437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144224] = 3, + [143427] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(1310), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200680,22 +205449,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, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1290), 24, + ACTIONS(1312), 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, @@ -200704,6 +205473,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 +205481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144270] = 3, + [143474] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(7376), 1, + sym__special_character, + STATE(2852), 1, + aux_sym__literal_repeat1, + ACTIONS(6242), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200723,15 +205497,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(1294), 24, + ACTIONS(6244), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -200744,20 +205516,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, - [144316] = 3, + [143525] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1314), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200772,7 +205545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 24, + ACTIONS(1316), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200787,6 +205560,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, @@ -200797,93 +205571,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144362] = 21, + [143572] = 6, 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(1159), 1, + aux_sym_concatenation_token1, + ACTIONS(7387), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(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, + 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7011), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(1277), 22, + sym_test_operator, 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, - 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, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200901,116 +205616,74 @@ 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, - [144497] = 20, + [143625] = 3, 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(1261), 14, 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 25, + sym_file_descriptor, + sym__concat, + 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_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, + [143672] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7043), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(7051), 1, + ACTIONS(7389), 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(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_STAR_STAR, + ACTIONS(7391), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201022,59 +205695,153 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + 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, + [143719] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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(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_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, + [143766] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 13, + anon_sym_PIPE, 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_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(1332), 26, + sym_file_descriptor, + sym__concat, + 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_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, + [143813] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [144714] = 3, + 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(1308), 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, + [143860] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(1338), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201088,9 +205855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1250), 24, + ACTIONS(1340), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -201102,6 +205870,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, @@ -201113,54 +205882,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [144759] = 20, + [143907] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2775), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7372), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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(1273), 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, + [143958] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7393), 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(7395), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201172,113 +205961,130 @@ 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, 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_COLON, + [144005] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7376), 1, + sym__special_character, + STATE(2852), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 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(4943), 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(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_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, + [144056] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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_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_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(1328), 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_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, + [144103] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(1346), 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(1348), 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, @@ -201290,54 +206096,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144996] = 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [144150] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(1310), 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(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_STAR_STAR, + ACTIONS(1312), 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, @@ -201349,10 +206140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145075] = 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, + aux_sym_concatenation_token1, + [144197] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1322), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201366,9 +206167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 24, + ACTIONS(1324), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -201380,6 +206182,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, @@ -201391,10 +206194,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [145120] = 3, + [144244] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7378), 1, + aux_sym_concatenation_token1, + ACTIONS(7397), 1, + sym__concat, + STATE(2865), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(1283), 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, + [144297] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 13, + ACTIONS(1334), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201408,9 +206258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1286), 24, + ACTIONS(1336), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -201422,6 +206273,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, @@ -201433,10 +206285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [145165] = 3, + [144344] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6709), 14, + ACTIONS(7399), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201451,7 +206303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6711), 23, + ACTIONS(7401), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -201472,57 +206324,79 @@ 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, - [145210] = 20, + anon_sym_COLON, + [144391] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1350), 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(1352), 25, + 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_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, + [144438] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(7109), 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(1340), 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, @@ -201534,54 +206408,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145289] = 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144485] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(849), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + 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, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1320), 26, + sym_file_descriptor, + sym__concat, + 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_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, + [144532] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7403), 1, + sym__special_character, + STATE(2811), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201593,54 +206498,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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144583] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(1350), 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(1352), 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, @@ -201652,54 +206541,86 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [144630] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(1338), 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(1340), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 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, + [144677] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7406), 1, + sym__special_character, + STATE(2811), 1, + aux_sym__literal_repeat1, + ACTIONS(239), 14, + anon_sym_EQ, 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_STAR_STAR, + ACTIONS(504), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201711,34 +206632,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145526] = 9, - ACTIONS(3), 1, + 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, + [144728] = 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(7093), 2, + ACTIONS(1334), 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(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_STAR_STAR, + ACTIONS(1336), 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, @@ -201751,62 +206676,84 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [144775] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + STATE(2827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7408), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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(1273), 23, + 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_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, + [144826] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, @@ -201818,12 +206765,20 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [144873] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7115), 1, - anon_sym_LBRACK, - ACTIONS(6647), 14, + ACTIONS(1362), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201838,7 +206793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6645), 22, + ACTIONS(1364), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -201861,54 +206818,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [145709] = 20, + aux_sym_concatenation_token1, + [144920] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(857), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7378), 1, + aux_sym_concatenation_token1, + ACTIONS(7410), 1, + sym__concat, + STATE(2865), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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_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, + [144973] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, @@ -201920,54 +206901,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145788] = 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [145020] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(1358), 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(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_STAR_STAR, + ACTIONS(1360), 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, @@ -201979,88 +206944,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145867] = 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [145067] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(1354), 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(1356), 25, + sym__concat, + sym_test_operator, 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,156 +206989,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_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, - 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_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7119), 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, - [146080] = 20, + aux_sym_concatenation_token1, + [145114] = 3, 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, + ACTIONS(1306), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [146159] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(1308), 25, + sym__concat, + sym_test_operator, 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, @@ -202235,87 +207033,66 @@ 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, - [146212] = 20, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [145161] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(7412), 1, + sym__concat, + STATE(1962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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(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_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, + [145214] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7123), 1, - sym__special_character, - STATE(2921), 1, - aux_sym__literal_repeat1, - ACTIONS(5387), 13, + ACTIONS(1346), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202327,10 +207104,12 @@ 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(5389), 22, + ACTIONS(1348), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -202342,20 +207121,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, + 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, - [146340] = 3, + [145261] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(1342), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202368,10 +207149,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(1258), 24, + ACTIONS(1344), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -202394,10 +207177,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146385] = 3, + [145308] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 12, + ACTIONS(7408), 1, + aux_sym_concatenation_token1, + ACTIONS(7414), 1, + sym__concat, + STATE(2860), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202409,10 +207198,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(2162), 25, + ACTIONS(1283), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -202432,14 +207221,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, - [146430] = 3, + [145361] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 13, + STATE(2805), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7378), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202448,20 +207241,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(1215), 24, + ACTIONS(1273), 22, 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, @@ -202469,8 +207263,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, sym_ansi_c_string, @@ -202478,64 +207270,30 @@ 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, + [145412] = 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(7097), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 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, + ACTIONS(1350), 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, anon_sym_DASH, - [146526] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7087), 2, + ACTIONS(1352), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 33, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202548,62 +207306,24 @@ 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, - [146575] = 5, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [145459] = 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(7085), 33, - 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(1346), 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,14 +207331,11 @@ 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_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1348), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -202633,30 +207350,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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [145506] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 13, + ACTIONS(1302), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202665,62 +207370,107 @@ 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(5888), 24, + ACTIONS(1304), 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, + [145553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(7416), 1, + sym__concat, + STATE(1962), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146714] = 8, + sym_word, + [145606] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 2, + ACTIONS(7418), 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(7422), 23, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -202739,17 +207489,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, - [146769] = 3, + anon_sym_COLON, + [145655] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(4945), 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, @@ -202757,12 +207511,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, sym_word, - ACTIONS(5707), 24, + ACTIONS(4947), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -202773,6 +207526,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, @@ -202784,122 +207538,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146814] = 3, + [145702] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, - anon_sym_EQ, + ACTIONS(1350), 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(6613), 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, + sym_word, + ACTIONS(1352), 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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [146859] = 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, + 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, + [145749] = 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(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, + ACTIONS(1271), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 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, - [146916] = 7, - 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, + 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_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(6613), 21, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1273), 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, @@ -202920,69 +207626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146969] = 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(7129), 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, - [147048] = 3, + [145796] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1346), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -202996,9 +207643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 24, + ACTIONS(1348), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -203010,6 +207658,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 +207670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147093] = 3, + [145843] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 14, + ACTIONS(7424), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203039,7 +207688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1332), 23, + ACTIONS(7426), 25, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -203060,13 +207709,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, - [147138] = 3, + anon_sym_COLON, + [145890] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1318), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203075,12 +207726,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(1306), 24, + ACTIONS(1320), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -203089,26 +207741,71 @@ 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, + 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, + [145937] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4853), 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(4855), 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, - [147183] = 3, + [145984] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1342), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203122,9 +207819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 24, + ACTIONS(1344), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -203136,6 +207834,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,14 +207846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147228] = 5, + [146031] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7131), 1, - sym__special_character, - STATE(2850), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(1326), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203163,18 +207858,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(1318), 23, + ACTIONS(1328), 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, @@ -203183,71 +207882,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, - [147277] = 14, + [146078] = 3, ACTIONS(71), 1, sym_comment, - 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(6611), 2, - anon_sym_EQ, + ACTIONS(1330), 14, anon_sym_PIPE, - 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), 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_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(1332), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147344] = 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, + [146125] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 12, + ACTIONS(1334), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203256,19 +207946,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(5270), 25, + ACTIONS(1336), 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, @@ -203277,28 +207970,20 @@ 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, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147389] = 6, + [146172] = 4, 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, + ACTIONS(7432), 1, + sym__concat, + ACTIONS(7430), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203309,8 +207994,15 @@ 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(7428), 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, @@ -203328,109 +208020,104 @@ 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, - [147440] = 13, - ACTIONS(71), 1, + anon_sym_COLON, + [146221] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 1, - anon_sym_AMP, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6602), 1, + sym__concat, + STATE(2824), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, 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, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 32, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, 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(6611), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7075), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6613), 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, - [147505] = 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, + sym_word, + [146274] = 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, - anon_sym_EQ, + ACTIONS(1362), 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, - ACTIONS(6613), 21, + 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(1364), 25, + sym_file_descriptor, + 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, + 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, - [147554] = 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, + [146321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1346), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203443,10 +208130,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(1274), 24, + ACTIONS(1348), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -203469,63 +208158,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147599] = 12, + [146368] = 3, ACTIONS(71), 1, sym_comment, - 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, + ACTIONS(6108), 14, + anon_sym_PIPE, 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(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 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_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(6110), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147662] = 4, + 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, + [146415] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7134), 1, + ACTIONS(1342), 14, anon_sym_EQ, - ACTIONS(6732), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -203539,9 +208220,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6736), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1344), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -203556,25 +208237,25 @@ 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, - [147709] = 5, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [146462] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7136), 1, - sym__special_character, - STATE(2999), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(1271), 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, @@ -203583,22 +208264,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5132), 23, + ACTIONS(1273), 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_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, @@ -203607,10 +208290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [147758] = 3, + [146509] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(7434), 1, + sym__special_character, + STATE(2852), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203622,67 +208309,58 @@ 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(1282), 24, + ACTIONS(1372), 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, - [147803] = 11, + [146560] = 3, ACTIONS(71), 1, sym_comment, - 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(7067), 2, + ACTIONS(1318), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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(6611), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6613), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, + anon_sym_STAR_STAR, + ACTIONS(1320), 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, @@ -203696,45 +208374,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147864] = 13, + aux_sym_concatenation_token1, + [146607] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7027), 1, + STATE(2858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7408), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5906), 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(5908), 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, + [146658] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7441), 1, + sym__concat, + ACTIONS(7439), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7041), 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(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7437), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_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(7031), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7033), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [146707] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1322), 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(1324), 25, + sym_file_descriptor, + sym__concat, + 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(6611), 3, + 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, + [146754] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7443), 1, + sym__special_character, + STATE(2857), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7039), 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), 16, + anon_sym_STAR_STAR, + ACTIONS(1372), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203748,57 +208554,84 @@ 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, - [147929] = 20, + [146805] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(799), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7408), 1, + aux_sym_concatenation_token1, + ACTIONS(7446), 1, + sym__concat, + STATE(2860), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 23, + 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_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, + [146858] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, @@ -203810,10 +208643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148008] = 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, + [146905] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 13, + STATE(2860), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7448), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203827,9 +208674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1254), 24, + ACTIONS(1263), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -203841,9 +208687,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, @@ -203852,10 +208698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148053] = 3, + [146956] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1358), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203869,9 +208715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 24, + ACTIONS(1360), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -203883,6 +208730,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, @@ -203894,40 +208742,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148098] = 3, - ACTIONS(3), 1, + [147003] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7140), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7138), 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(1354), 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(1356), 25, + sym_file_descriptor, + sym__concat, + 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_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, + [147050] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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, @@ -203936,34 +208804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [148143] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(7083), 1, + ACTIONS(1328), 25, + sym__concat, sym_test_operator, - ACTIONS(6695), 2, + sym_extglob_pattern, 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(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203981,18 +208827,15 @@ 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, - [148200] = 5, + [147097] = 4, 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(7451), 1, + sym_extglob_pattern, + ACTIONS(7144), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204006,8 +208849,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(7146), 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 +208875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148249] = 3, + [147146] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + STATE(2865), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7453), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204040,20 +208892,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(1310), 24, + ACTIONS(1263), 22, 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, @@ -204061,8 +208914,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, sym_ansi_c_string, @@ -204070,50 +208921,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148294] = 18, + [147197] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7399), 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(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(6613), 13, + anon_sym_STAR_STAR, + ACTIONS(7401), 25, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204125,12 +208954,21 @@ 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_RBRACK_RBRACK, anon_sym_EQ_TILDE, - [148369] = 3, + anon_sym_QMARK, + anon_sym_COLON, + [147244] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 12, + ACTIONS(1354), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204142,9 +208980,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(4439), 25, + ACTIONS(1356), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -204160,19 +209000,19 @@ 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, - [148414] = 3, + [147291] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6661), 14, + ACTIONS(1314), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204187,7 +209027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6663), 23, + ACTIONS(1316), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -204211,66 +209052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148459] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6983), 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(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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [148532] = 3, + aux_sym_concatenation_token1, + [147338] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 12, + ACTIONS(1310), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204282,9 +209068,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(4313), 25, + ACTIONS(1312), 26, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -204300,75 +209088,65 @@ 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, - [148577] = 17, + [147385] = 5, 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, + STATE(2805), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7378), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5902), 14, 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_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(5904), 22, + sym_file_descriptor, + 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(6985), 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, - [148650] = 3, + 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, + [147436] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 12, + ACTIONS(1366), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204380,9 +209158,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(5888), 25, + ACTIONS(1368), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -204395,24 +209176,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, - [148695] = 4, + [147483] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7142), 1, - sym__concat, - ACTIONS(6675), 14, + ACTIONS(1326), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204427,7 +209205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6673), 22, + ACTIONS(1328), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204450,12 +209230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148742] = 4, + aux_sym_concatenation_token1, + [147530] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7144), 1, - sym__concat, - ACTIONS(6705), 14, + ACTIONS(1322), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204470,7 +209249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6703), 22, + ACTIONS(1324), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204493,52 +209274,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148789] = 3, + aux_sym_concatenation_token1, + [147577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6602), 1, + sym__concat, + STATE(2824), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, 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, + ACTIONS(5902), 32, 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, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [147630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6600), 1, + aux_sym_concatenation_token1, + ACTIONS(6602), 1, + sym__concat, + STATE(2832), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5906), 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [147683] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 14, + ACTIONS(1159), 1, + aux_sym_concatenation_token1, + ACTIONS(7456), 1, + sym__concat, + STATE(2241), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204553,7 +209393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6613), 23, + ACTIONS(1283), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -204574,43 +209414,64 @@ 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, + [147736] = 5, + 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(7376), 1, + sym__special_character, + STATE(2852), 1, + aux_sym__literal_repeat1, + ACTIONS(6248), 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(6250), 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_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, + [147787] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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, @@ -204619,14 +209480,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [148924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1282), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1332), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204641,124 +209497,84 @@ 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, - [148969] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [147834] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7055), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, - anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(1358), 14, 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(7146), 1, - anon_sym_EQ, - 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1360), 25, + sym_file_descriptor, + sym__concat, + 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(6613), 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_RBRACK, - [149046] = 16, + 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, + [147881] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7462), 1, + sym__concat, + ACTIONS(7460), 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(7458), 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,94 +209587,39 @@ 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, + [147930] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(7468), 1, + sym__concat, + ACTIONS(7466), 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(7129), 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, - [149196] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7464), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, 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, - 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(6613), 21, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204876,76 +209637,73 @@ 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, - [149249] = 20, + anon_sym_COLON, + [147979] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, - anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(1318), 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(1320), 25, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 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, + [148026] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 14, + anon_sym_EQ, 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_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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [149328] = 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_STAR_STAR, + ACTIONS(1273), 25, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204960,73 +209718,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_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, - [149373] = 19, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym__special_character, + [148073] = 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(1261), 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(7184), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6752), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + anon_sym_STAR_STAR, + ACTIONS(1263), 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, @@ -205038,10 +209762,20 @@ 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, + aux_sym_concatenation_token1, + [148120] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 13, + ACTIONS(1314), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205054,10 +209788,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(1262), 24, + ACTIONS(1316), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -205080,10 +209816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149495] = 3, + [148167] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(1261), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205096,10 +209832,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(1278), 24, + ACTIONS(1263), 25, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -205122,36 +209860,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149540] = 3, + [148214] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(1302), 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(1290), 24, - 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(1304), 25, sym__concat, 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_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, + [148261] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(1328), 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, @@ -205164,10 +209948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149585] = 3, + [148308] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 13, + STATE(2775), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7372), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5976), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205180,10 +209969,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(1270), 24, + ACTIONS(5978), 22, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -205197,7 +209986,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, @@ -205206,98 +209994,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149630] = 15, + [148359] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7023), 1, + ACTIONS(1310), 14, 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_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(1312), 25, + sym_file_descriptor, + sym__concat, + 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(6613), 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_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, + [148406] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 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(1356), 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_EQ_TILDE, - anon_sym_QMARK, - [149699] = 15, + anon_sym_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, + [148453] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(1362), 14, anon_sym_EQ, - 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), 16, + anon_sym_STAR_STAR, + ACTIONS(1364), 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, @@ -205311,107 +210119,151 @@ 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, - [149768] = 8, - ACTIONS(3), 1, + [148500] = 3, + 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1366), 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_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1368), 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, - aux_sym_heredoc_redirect_token1, - [149823] = 8, - ACTIONS(3), 1, + 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, + [148547] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(1362), 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(1364), 26, sym_file_descriptor, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(7190), 1, + sym__concat, 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(1183), 23, - anon_sym_SEMI, + 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, + [148594] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2783), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7372), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6006), 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_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(6008), 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, - aux_sym_heredoc_redirect_token1, - [149878] = 3, + 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, + [148645] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 13, + ACTIONS(1302), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205423,10 +210275,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(1225), 24, + ACTIONS(1304), 25, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -205441,94 +210295,86 @@ 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, - [149923] = 3, - ACTIONS(3), 1, + [148692] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 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, + ACTIONS(1330), 14, 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, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1332), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [149968] = 14, + 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, + [148739] = 5, ACTIONS(71), 1, sym_comment, - 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(6611), 2, + STATE(2791), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1159), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, - 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_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(6613), 16, + anon_sym_STAR_STAR, + ACTIONS(1379), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205542,13 +210388,20 @@ 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_EQ_TILDE, anon_sym_QMARK, - [150035] = 3, + [148790] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(7376), 1, + sym__special_character, + STATE(2852), 1, + aux_sym__literal_repeat1, + ACTIONS(5052), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205560,9 +210413,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(5270), 24, + ACTIONS(5054), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -205571,14 +210423,15 @@ 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, @@ -205587,86 +210440,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [150080] = 16, - ACTIONS(3), 1, + [148841] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7200), 1, + ACTIONS(1334), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7202), 1, anon_sym_CARET, - ACTIONS(7204), 1, anon_sym_AMP, - ACTIONS(7206), 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, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7194), 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, - [150151] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(1336), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7075), 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, @@ -205684,200 +210481,235 @@ 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, - [150202] = 20, + [148888] = 3, 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(1366), 13, 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(7208), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [150281] = 3, - ACTIONS(3), 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, + 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(1368), 26, + sym_file_descriptor, + sym__concat, + 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_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, + [148935] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 14, 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, - [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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1364), 25, + sym_file_descriptor, + sym__concat, + 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_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, + [148982] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 14, 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1344), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [150371] = 3, - ACTIONS(3), 1, + 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, + [149029] = 3, + ACTIONS(71), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(1338), 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(1340), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_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, + [149076] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 14, 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, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1336), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [150416] = 4, + 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, + [149123] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7218), 1, + ACTIONS(7474), 1, anon_sym_LBRACK, - ACTIONS(6647), 14, + ACTIONS(7472), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -205892,7 +210724,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6645), 22, + ACTIONS(7470), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -205912,264 +210746,369 @@ 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, - [150463] = 8, + anon_sym_COLON, + [149172] = 3, 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(7220), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 6, - anon_sym_EQ, + ACTIONS(1346), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 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(1348), 25, + sym_file_descriptor, + 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, + 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, - [150518] = 18, + anon_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, + [149219] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 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, + ACTIONS(5064), 14, 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(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), 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_LT_LT, anon_sym_EQ_TILDE, - [150593] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + 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(5066), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, 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, - 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [150670] = 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, + 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, + [149266] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7224), 1, - anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(1322), 14, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - 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_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(1324), 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, + [149313] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5056), 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(5058), 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, + [149360] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [149407] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 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(1308), 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, + [149454] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7408), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5902), 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(5904), 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, + [149505] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7476), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + STATE(7168), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206181,48 +211120,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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150810] = 14, + [149587] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 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, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(7514), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206234,47 +211177,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_COLON, + [149663] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7516), 1, + sym__special_character, + STATE(2916), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150877] = 13, + anon_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, + [149713] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - 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, + ACTIONS(1314), 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(1316), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(7232), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7234), 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, + 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, + [149759] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6611), 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(1263), 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, + [149805] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7009), 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), 16, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1273), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206288,44 +211345,100 @@ 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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150942] = 12, + [149851] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7519), 1, + anon_sym_RPAREN_RPAREN, + STATE(7124), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(7484), 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, + [149933] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7243), 1, + anon_sym_RBRACK, + ACTIONS(7521), 1, + sym__concat, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 16, + 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(1379), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206339,41 +211452,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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151005] = 11, + [149983] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7533), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7525), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7236), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(7418), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206389,37 +211502,39 @@ 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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151066] = 9, + [150041] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7220), 2, + ACTIONS(7525), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(7418), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 20, + ACTIONS(7422), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206437,42 +211552,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, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151123] = 11, - ACTIONS(3), 1, + [150097] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7204), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7535), 1, + anon_sym_RPAREN_RPAREN, + STATE(7175), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(7506), 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, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206484,39 +211616,76 @@ 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, - [151184] = 8, + [150179] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(7418), 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(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_STAR_STAR, + ACTIONS(7422), 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, + [150227] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7319), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + sym__concat, + ACTIONS(1289), 14, 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, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1379), 22, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206534,17 +211703,12 @@ 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, - [151239] = 5, + [150277] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7246), 1, - sym__special_character, - STATE(2921), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 13, + ACTIONS(1366), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -206556,10 +211720,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(1318), 22, + ACTIONS(1368), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -206571,39 +211736,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, - [151288] = 5, + [150323] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6611), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7525), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7527), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, + ACTIONS(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 22, + sym__concat, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -206622,18 +211793,13 @@ 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, - [151337] = 5, + [150379] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, + ACTIONS(7424), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206647,8 +211813,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(7426), 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, @@ -206666,19 +211836,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, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151386] = 3, - ACTIONS(3), 1, + [150425] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 36, - anon_sym_SEMI, + ACTIONS(7478), 1, anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7539), 1, + anon_sym_RPAREN_RPAREN, + STATE(7109), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206690,37 +211900,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_DASHo, + [150507] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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, + ACTIONS(7514), 17, + 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, @@ -206733,18 +211952,23 @@ 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, + [150577] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7331), 1, + anon_sym_RBRACK, + ACTIONS(7543), 1, + sym__concat, + ACTIONS(1289), 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, @@ -206753,14 +211977,8 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1379), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -206775,30 +211993,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_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, + [150627] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1302), 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(1304), 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_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151521] = 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_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, + [150673] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 12, + ACTIONS(1326), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -206810,10 +212058,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(5707), 25, + ACTIONS(1328), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -206828,38 +212077,108 @@ 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, - [151566] = 4, + [150719] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(1338), 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(1340), 24, + sym_file_descriptor, sym__concat, - ACTIONS(6653), 14, + 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, + [150765] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7545), 1, + anon_sym_RPAREN_RPAREN, + STATE(7024), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206871,160 +212190,185 @@ 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, - [151613] = 7, + [150847] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(1342), 13, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, 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_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(5864), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5869), 7, + ACTIONS(1344), 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, - ACTIONS(5872), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, 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, - [151666] = 7, + [150893] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5862), 2, + ACTIONS(1334), 13, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, 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_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(5864), 5, + ACTIONS(1336), 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, + [150939] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(5869), 7, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 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, - ACTIONS(5872), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, 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, - [151719] = 4, - ACTIONS(3), 1, + [150985] = 21, + ACTIONS(71), 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, + ACTIONS(7478), 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(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7547), 1, + anon_sym_RPAREN_RPAREN, + STATE(7097), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207036,50 +212380,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151067] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7549), 1, + sym__special_character, + STATE(2916), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 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(5904), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_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, + [151117] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7551), 1, + anon_sym_RPAREN_RPAREN, + STATE(7052), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151811] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7259), 1, - sym__concat, - 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), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207091,80 +212486,117 @@ 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, - [151858] = 3, - ACTIONS(3), 1, + [151199] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 36, - anon_sym_SEMI, + ACTIONS(7478), 1, 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(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7553), 1, + anon_sym_RPAREN_RPAREN, + STATE(7126), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [151903] = 4, + ACTIONS(7484), 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, + [151281] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7261), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(6732), 13, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7555), 1, + anon_sym_RPAREN_RPAREN, + STATE(7075), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6736), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207176,177 +212608,99 @@ 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, - [151950] = 8, - ACTIONS(3), 1, + [151363] = 3, + ACTIONS(71), 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_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, + ACTIONS(1362), 13, 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, - [152005] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 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_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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1364), 25, + sym_file_descriptor, + sym__concat, + 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_AMP_GT_GT, - anon_sym_LT_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, - [152060] = 5, + 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, + [151409] = 21, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 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(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_RBRACK, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, + ACTIONS(7512), 1, anon_sym_QMARK, - [152109] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7557), 1, + anon_sym_RPAREN_RPAREN, + STATE(7037), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6611), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207358,157 +212712,99 @@ 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, - [152158] = 8, - ACTIONS(3), 1, + [151491] = 3, + ACTIONS(71), 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, + ACTIONS(1322), 13, 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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1324), 25, + sym_file_descriptor, + sym__concat, + 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_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, + 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, + [151537] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(807), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(7559), 1, + anon_sym_RPAREN_RPAREN, + STATE(7008), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207520,54 +212816,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152347] = 20, + [151619] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7277), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(7561), 1, + anon_sym_RPAREN_RPAREN, + STATE(7174), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207579,54 +212877,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152426] = 20, + [151701] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7081), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7277), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(7563), 1, + anon_sym_RPAREN_RPAREN, + STATE(7099), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207638,85 +212938,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152505] = 5, + [151783] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4153), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5856), 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(5858), 10, - sym_file_descriptor, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 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, - ACTIONS(4161), 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152554] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7041), 1, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7565), 1, + anon_sym_RPAREN_RPAREN, + STATE(7026), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207728,59 +212999,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, - [152617] = 20, + [151865] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7279), 1, + ACTIONS(7567), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + STATE(7083), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207792,54 +213060,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152696] = 20, + [151947] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(7494), 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, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7283), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7569), 1, + anon_sym_RPAREN_RPAREN, + STATE(7132), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207851,58 +213121,56 @@ 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, + [152029] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, - anon_sym_SEMI, + ACTIONS(7478), 1, 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(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7571), 1, + anon_sym_RPAREN_RPAREN, + STATE(7190), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207914,55 +213182,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152111] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7573), 1, + anon_sym_RPAREN_RPAREN, + STATE(7074), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, 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, - 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, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207974,42 +213243,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152193] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 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, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, + ACTIONS(7512), 1, anon_sym_QMARK, - [152922] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7077), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7575), 1, + anon_sym_RPAREN_RPAREN, + STATE(7169), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7071), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208021,84 +213304,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152977] = 3, - ACTIONS(3), 1, + [152275] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 36, - anon_sym_SEMI, + ACTIONS(7478), 1, 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(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7577), 1, + anon_sym_RPAREN_RPAREN, + STATE(7049), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [153022] = 8, - 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, - 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), 21, - sym_test_operator, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208110,63 +213365,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153077] = 20, + [152357] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(7285), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(7579), 1, + anon_sym_RPAREN_RPAREN, + STATE(7066), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208178,128 +213426,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [153156] = 9, + [152439] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - 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(7009), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6697), 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, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, + ACTIONS(7512), 1, anon_sym_QMARK, - [153213] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7581), 1, + anon_sym_RPAREN_RPAREN, + STATE(7101), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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, - 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153268] = 8, - 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(7220), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7009), 3, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208311,38 +213487,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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153323] = 4, + [152521] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7287), 1, - sym__concat, - ACTIONS(6675), 14, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7583), 1, + anon_sym_RPAREN_RPAREN, + STATE(7129), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6673), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208354,38 +213548,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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153370] = 4, + [152603] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7289), 1, - sym__concat, - ACTIONS(6705), 14, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7585), 1, + anon_sym_RPAREN_RPAREN, + STATE(7149), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208397,42 +213609,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152685] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 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(1312), 25, + 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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153417] = 8, + 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, + [152731] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7587), 1, + anon_sym_RPAREN_RPAREN, + STATE(7179), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 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, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208444,59 +213713,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, - [153472] = 18, + [152813] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7178), 1, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7589), 1, + anon_sym_RPAREN_RPAREN, + STATE(7191), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208508,54 +213774,56 @@ 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, + [152895] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7591), 1, + anon_sym_RPAREN_RPAREN, + STATE(7027), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208567,47 +213835,56 @@ 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, + [152977] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7154), 1, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7593), 1, + anon_sym_RPAREN_RPAREN, + STATE(7167), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208619,48 +213896,44 @@ 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_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153695] = 15, + [153059] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(7514), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208677,43 +213950,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [153764] = 14, + [153127] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7158), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6611), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7595), 1, + anon_sym_RPAREN_RPAREN, + STATE(7184), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 16, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208725,47 +214011,90 @@ 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, - [153831] = 13, + [153209] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7160), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7597), 1, + anon_sym_RPAREN_RPAREN, + STATE(7137), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6611), 3, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [153291] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7172), 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), 16, + anon_sym_STAR_STAR, + ACTIONS(1364), 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, @@ -208779,44 +214108,63 @@ 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, - [153896] = 12, + [153337] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7599), 1, + anon_sym_RPAREN_RPAREN, + STATE(7082), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208828,43 +214176,43 @@ 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, - [153959] = 11, + [153419] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7164), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7541), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7506), 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(7514), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208878,39 +214226,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_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [154020] = 9, + [153485] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7601), 1, + anon_sym_RPAREN_RPAREN, + STATE(7050), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 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), 20, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208922,41 +214290,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [153567] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 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(1308), 25, + 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, - [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_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, + [153613] = 21, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7603), 1, + anon_sym_RPAREN_RPAREN, + STATE(7015), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208968,40 +214394,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, - [154130] = 6, + [153695] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_RPAREN_RPAREN, + STATE(7103), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209013,39 +214455,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, - [154181] = 5, + [153777] = 21, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7607), 1, + anon_sym_RPAREN_RPAREN, + STATE(7016), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209057,39 +214516,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, - [154230] = 5, + [153859] = 21, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7609), 1, + anon_sym_RPAREN_RPAREN, + STATE(7172), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209101,23 +214577,15 @@ 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, + [153941] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7291), 1, - sym__special_character, - STATE(2850), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + STATE(3120), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -209129,8 +214597,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), 23, + ACTIONS(1273), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -209143,40 +214612,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, 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, - [154328] = 4, + [153991] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7293), 1, - sym__concat, - ACTIONS(6653), 14, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7613), 1, + anon_sym_RPAREN_RPAREN, + STATE(7087), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209188,38 +214683,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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [154375] = 4, + [154073] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7295), 1, - sym__concat, - ACTIONS(6641), 14, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7615), 1, + anon_sym_RPAREN_RPAREN, + STATE(7118), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209231,58 +214744,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [154155] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 25, + 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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [154422] = 15, - ACTIONS(3), 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, + 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, + [154201] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7617), 1, + anon_sym_RPAREN_RPAREN, + STATE(7034), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7504), 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(7506), 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, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209294,48 +214848,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154491] = 17, + [154283] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(1352), 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, + [154329] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7619), 1, + anon_sym_RPAREN_RPAREN, + STATE(7147), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209347,57 +214952,99 @@ 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, + [154411] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(815), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(1346), 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(1348), 25, + 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_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, + [154457] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(7621), 1, + anon_sym_RPAREN_RPAREN, + STATE(7028), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209409,54 +215056,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154643] = 20, + [154539] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7297), 1, + ACTIONS(7623), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + STATE(7171), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209468,54 +215117,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154722] = 20, + [154621] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(1340), 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, + [154667] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7299), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(7625), 1, + anon_sym_RPAREN_RPAREN, + STATE(7116), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209527,54 +215221,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154801] = 20, + [154749] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(7430), 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(7299), 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_STAR_STAR, + ACTIONS(7428), 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, @@ -209586,46 +215255,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154880] = 14, - ACTIONS(3), 1, + 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, + [154795] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7627), 1, + anon_sym_RPAREN_RPAREN, + STATE(7110), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7198), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7097), 3, + ACTIONS(7506), 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, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209637,45 +215325,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_DASHo, - [154947] = 13, - ACTIONS(3), 1, + [154877] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7200), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7202), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7629), 1, + anon_sym_RPAREN_RPAREN, + STATE(7088), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(7506), 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_SEMI, - anon_sym_COMMA, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209687,58 +215386,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_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [155012] = 20, + [154959] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7301), 1, + ACTIONS(7631), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + STATE(7180), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209750,54 +215447,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155091] = 20, + [155041] = 3, 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(7439), 14, + 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(7303), 1, - anon_sym_RPAREN, - 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(7281), 11, + anon_sym_STAR_STAR, + ACTIONS(7437), 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, @@ -209809,54 +215481,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155170] = 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, + [155087] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(7305), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(7633), 1, + anon_sym_RPAREN_RPAREN, + STATE(7185), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209868,34 +215551,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155249] = 9, + [155169] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7635), 1, + anon_sym_RPAREN_RPAREN, + STATE(7162), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209907,42 +215612,42 @@ 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, - [155306] = 8, + [155251] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7174), 1, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6693), 6, + ACTIONS(7541), 3, 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(7514), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209956,82 +215661,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, - [155361] = 3, + [155315] = 21, 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), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 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_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, - [155406] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7174), 1, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7637), 1, + anon_sym_RPAREN_RPAREN, + STATE(7166), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7168), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210043,63 +215725,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, - [155461] = 20, + [155397] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(823), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(6746), 2, + ACTIONS(7639), 1, + anon_sym_RPAREN_RPAREN, + STATE(7055), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210111,34 +215786,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155540] = 9, + [155479] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7641), 1, + anon_sym_RPAREN_RPAREN, + STATE(7173), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210150,63 +215847,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, - [155597] = 20, + [155561] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(7494), 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, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7307), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7643), 1, + anon_sym_RPAREN_RPAREN, + STATE(7078), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210218,41 +215908,56 @@ 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, + [155643] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7099), 1, - anon_sym_STAR_STAR, - ACTIONS(7101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7202), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7204), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7087), 2, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7645), 1, + anon_sym_RPAREN_RPAREN, + STATE(7161), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7089), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7093), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7095), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7097), 3, + ACTIONS(7506), 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, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210264,53 +215969,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_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - [155739] = 17, + [155725] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7647), 1, + anon_sym_RPAREN_RPAREN, + STATE(7038), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6985), 14, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210322,57 +216030,56 @@ 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, + [155807] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7309), 1, - anon_sym_RBRACK, - ACTIONS(7015), 2, + ACTIONS(7649), 1, + anon_sym_RPAREN_RPAREN, + STATE(7140), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7017), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210384,72 +216091,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155891] = 5, + [155889] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7311), 1, - sym__special_character, - STATE(2999), 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), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, 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, - [155940] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6665), 14, - anon_sym_EQ, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7651), 1, + anon_sym_RPAREN_RPAREN, + STATE(7011), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, 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, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210461,42 +216152,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [155971] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, + ACTIONS(7512), 1, anon_sym_QMARK, - [155985] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7041), 1, - anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(7653), 1, + anon_sym_RPAREN_RPAREN, + STATE(7120), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(7484), 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, + [156053] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7655), 1, + anon_sym_RPAREN_RPAREN, + STATE(7192), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210508,59 +216274,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [156135] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7657), 1, + anon_sym_RPAREN_RPAREN, + STATE(7053), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156040] = 18, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [156217] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7047), 1, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7659), 1, + anon_sym_RPAREN_RPAREN, + STATE(7127), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 13, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210572,54 +216396,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, - [156115] = 19, + [156299] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7019), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7045), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7047), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7661), 1, + anon_sym_RPAREN_RPAREN, + STATE(7142), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 12, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210631,55 +216457,56 @@ 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, + [156381] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7152), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7154), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7156), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7158), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7160), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7174), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7176), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7178), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7182), 1, - sym_test_operator, - ACTIONS(7314), 1, - anon_sym_COLON, - ACTIONS(6695), 2, + ACTIONS(7663), 1, + anon_sym_RPAREN_RPAREN, + STATE(7060), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7162), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7164), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7166), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7168), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7170), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7172), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7150), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210691,46 +216518,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156271] = 16, + [156463] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7021), 1, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7023), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7025), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7027), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7041), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7665), 1, + anon_sym_RPAREN_RPAREN, + STATE(7115), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7029), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7031), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 15, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210742,58 +216579,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156342] = 20, + [156545] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7055), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7057), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7059), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7061), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7063), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7077), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7079), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7081), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7083), 1, - sym_test_operator, - ACTIONS(7309), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6695), 2, + ACTIONS(7667), 1, + anon_sym_RPAREN_RPAREN, + STATE(7061), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7067), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7069), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7071), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7073), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7075), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7053), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210805,94 +216640,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156421] = 3, + [156627] = 21, 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, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2156), 12, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7669), 1, + anon_sym_RPAREN_RPAREN, + STATE(7065), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 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(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, - [156511] = 3, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [156709] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(1326), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -210901,12 +216713,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(1266), 24, + ACTIONS(1328), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -210915,6 +216728,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, @@ -210923,7 +216737,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, @@ -210931,54 +216744,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156556] = 20, + [156755] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_COMMA, - ACTIONS(7316), 1, + ACTIONS(7671), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6746), 2, + STATE(7031), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210990,38 +216805,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156635] = 11, + [156837] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7015), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7673), 1, + anon_sym_RPAREN_RPAREN, + STATE(7119), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7031), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7033), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7035), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(7484), 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, + [156919] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7675), 1, + sym_extglob_pattern, + ACTIONS(7144), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 18, + 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(7146), 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 +216905,61 @@ 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, + [156967] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7224), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7226), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7228), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7230), 1, + ACTIONS(7494), 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, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7318), 1, - anon_sym_RPAREN, - ACTIONS(6695), 2, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7677), 1, + anon_sym_RPAREN_RPAREN, + STATE(7194), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7234), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7236), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7009), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7281), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211099,33 +216971,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156775] = 8, + [157049] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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(1332), 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, + [157095] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7015), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7679), 1, + anon_sym_RPAREN_RPAREN, + STATE(7059), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7035), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7037), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7039), 3, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211137,19 +217075,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, + [157177] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1334), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -211162,8 +217091,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(1294), 24, + ACTIONS(1336), 24, sym_file_descriptor, sym__concat, sym_test_operator, @@ -211188,54 +217118,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [156875] = 20, + [157223] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7683), 14, 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(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, + ACTIONS(7681), 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, @@ -211247,13 +217152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156954] = 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, + [157269] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6693), 14, + ACTIONS(7687), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -211268,8 +217179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6697), 21, - sym_test_operator, + ACTIONS(7685), 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, @@ -211287,57 +217201,44 @@ 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, + [157315] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(833), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6754), 1, + ACTIONS(7508), 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(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7541), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7514), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211349,31 +217250,43 @@ 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_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157377] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7009), 3, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 10, + ACTIONS(7541), 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, - ACTIONS(6613), 21, - sym_test_operator, + ACTIONS(7514), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211389,39 +217302,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, - [157131] = 9, + anon_sym_COLON, + [157437] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 6, + ACTIONS(7541), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6613), 19, + ACTIONS(7514), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211441,52 +217352,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157187] = 19, + anon_sym_COLON, + [157493] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6854), 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(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7482), 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(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7541), 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(7514), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211498,44 +217391,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157263] = 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, + anon_sym_COLON, + [157547] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 10, 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, - anon_sym_STAR_STAR, - 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(6991), 15, + ACTIONS(7514), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211548,45 +217438,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, + 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, - [157331] = 14, + anon_sym_COLON, + [157599] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7541), 13, anon_sym_EQ, - ACTIONS(7370), 1, anon_sym_PIPE, - ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7374), 1, anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - 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(6991), 16, + ACTIONS(7514), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211600,70 +217484,20 @@ 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, - [157397] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6856), 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, - [157473] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157649] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7541), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -211678,9 +217512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6928), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7514), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211698,44 +217532,227 @@ 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, - [157517] = 13, + anon_sym_COLON, + [157697] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7372), 1, + ACTIONS(1334), 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(1336), 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, + [157743] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(1328), 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, + [157789] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7689), 1, + sym__special_character, + STATE(3146), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 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(5904), 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, + [157839] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7689), 1, + sym__special_character, + STATE(3146), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 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(4943), 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, + [157889] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(6993), 2, + ACTIONS(7693), 1, anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7366), 2, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(7691), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211747,72 +217764,230 @@ 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, - [157581] = 19, + anon_sym_COLON, + [157961] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1318), 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(1320), 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, + [158007] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6858), 1, + ACTIONS(1346), 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(1348), 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, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 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_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, + [158053] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(1352), 24, + sym_file_descriptor, + sym__concat, + 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_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, + [158099] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(1364), 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, + [158145] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7689), 1, + sym__special_character, + STATE(3146), 1, + aux_sym__literal_repeat1, + ACTIONS(5052), 12, 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_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(5054), 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(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, - [157657] = 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_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, + [158195] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6938), 14, + ACTIONS(1358), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -211827,7 +218002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6936), 22, + ACTIONS(1360), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -211847,55 +218024,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, - [157701] = 19, + anon_sym_COLON, + [158241] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1326), 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(1328), 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, @@ -211907,40 +218061,38 @@ 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_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158287] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7374), 1, + ACTIONS(1354), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7388), 1, - anon_sym_STAR_STAR, - 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(6993), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7386), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + anon_sym_STAR_STAR, + ACTIONS(1356), 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, @@ -211954,70 +218106,103 @@ 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_EQ_TILDE, anon_sym_QMARK, - [157839] = 19, + anon_sym_COLON, + [158333] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6862), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(1358), 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(1360), 24, + sym_file_descriptor, + sym__concat, + 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, + 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, + [158379] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 14, 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_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(1356), 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(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, - [157915] = 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, + [158425] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(7389), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212032,7 +218217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6962), 22, + ACTIONS(7391), 24, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -212055,39 +218242,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157959] = 11, + [158471] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7523), 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(7525), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, + ACTIONS(7399), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6991), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212101,55 +218283,60 @@ 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, - [158019] = 19, + [158527] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6864), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7695), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7697), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7699), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7701), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7703), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7705), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7713), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7715), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7707), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7711), 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(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7401), 13, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212161,27 +218348,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158095] = 3, + anon_sym_RBRACK, + [158605] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(7399), 1, anon_sym_EQ, + ACTIONS(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7699), 1, + anon_sym_AMP_AMP, + ACTIONS(7701), 1, anon_sym_PIPE, + ACTIONS(7703), 1, anon_sym_CARET, + ACTIONS(7705), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7523), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7525), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7527), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7707), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7529), 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(7401), 16, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212194,44 +218402,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_LT_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158139] = 10, + [158677] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7701), 1, + anon_sym_PIPE, + ACTIONS(7703), 1, + anon_sym_CARET, + ACTIONS(7705), 1, + anon_sym_AMP, + ACTIONS(7523), 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, + ACTIONS(7525), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7707), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7529), 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, + ACTIONS(7401), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212245,57 +218457,47 @@ 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_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158197] = 19, + [158747] = 14, ACTIONS(71), 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(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7703), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7705), 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(7399), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7707), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7711), 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(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7401), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212307,32 +218509,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158273] = 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158815] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7705), 1, + anon_sym_AMP, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, + ACTIONS(7525), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7707), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7399), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 6, + ACTIONS(7401), 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, + [158881] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6991), 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(1344), 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, @@ -212350,55 +218607,45 @@ 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, - [158327] = 19, + [158927] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(6868), 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(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7707), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7711), 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(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212410,31 +218657,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158403] = 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158991] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7384), 2, + ACTIONS(7525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 8, + ACTIONS(7399), 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, - ACTIONS(6991), 20, + ACTIONS(7401), 19, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212450,57 +218710,32 @@ 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, - [158455] = 19, + [159053] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6870), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7399), 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(7401), 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, @@ -212512,30 +218747,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158531] = 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159099] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7386), 3, + ACTIONS(7525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 10, + ACTIONS(7399), 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(6991), 20, + ACTIONS(7401), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212553,55 +218802,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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158581] = 19, + [159157] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6872), 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(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7523), 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(7527), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7399), 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(7401), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212613,15 +218843,28 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159211] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7531), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 13, + ACTIONS(7529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212632,10 +218875,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, - ACTIONS(6991), 20, + ACTIONS(7401), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212653,55 +218895,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, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158705] = 19, + [159263] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6874), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7523), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 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(7401), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212713,13 +218934,24 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159313] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7366), 2, + ACTIONS(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(7399), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212733,8 +218965,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6991), 20, + ACTIONS(7401), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212752,55 +218985,32 @@ 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, - [158827] = 19, + [159363] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6876), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7399), 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(7401), 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, @@ -212812,47 +219022,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158903] = 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159409] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(7136), 1, + anon_sym_RBRACK, + ACTIONS(7717), 1, + sym__concat, + ACTIONS(1289), 14, + anon_sym_EQ, 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_STAR_STAR, + ACTIONS(1379), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212864,208 +219068,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [158971] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6878), 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, - [159047] = 14, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159459] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(1346), 14, 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_DASH, - ACTIONS(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7101), 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_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(1348), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_RPAREN, - [159113] = 19, + 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, + [159505] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6880), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + STATE(3120), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5902), 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(5904), 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, + 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, + [159555] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3123), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7611), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5906), 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_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(5908), 22, + sym_file_descriptor, + 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, - [159189] = 13, + 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, + [159605] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(1330), 14, + anon_sym_EQ, 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_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), 17, + anon_sym_STAR_STAR, + ACTIONS(1332), 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, @@ -213078,102 +219244,123 @@ 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, + 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, + [159651] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6882), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(1330), 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(1332), 24, + sym_file_descriptor, + sym__concat, + 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, + 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, + [159697] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1318), 14, 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_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(1320), 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(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, - [159329] = 13, + 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, + [159743] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7085), 1, + ACTIONS(1334), 14, + anon_sym_EQ, 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_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), 17, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1336), 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, @@ -213186,56 +219373,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_RPAREN, - [159393] = 19, + 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, + [159789] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6884), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1338), 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(1340), 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, @@ -213247,97 +219415,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159469] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6886), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159835] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1366), 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(1368), 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(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, - [159545] = 12, + 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, + [159881] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7400), 1, - anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7085), 2, + ACTIONS(1362), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7402), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7404), 2, + 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, + anon_sym_STAR_STAR, + ACTIONS(1364), 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, @@ -213350,56 +219502,131 @@ 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, - [159607] = 19, + 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, + [159927] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6888), 1, + ACTIONS(6557), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6559), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6562), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6555), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6564), 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(6567), 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, + [159981] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6557), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6559), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6562), 5, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6555), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6564), 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(6567), 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, + [160035] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1289), 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(1379), 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, @@ -213411,96 +219638,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159683] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6890), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160081] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1314), 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(1316), 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(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, + 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, + [160127] = 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(7402), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(1261), 14, + 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 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, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7101), 17, + 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, + [160173] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7721), 1, + anon_sym_EQ, + ACTIONS(7723), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7719), 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, @@ -213516,136 +219760,131 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [159895] = 19, + anon_sym_STAR_STAR, + [160221] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6894), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7725), 1, + sym__special_character, + STATE(3113), 1, + aux_sym__literal_repeat1, + ACTIONS(5592), 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(5594), 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, + [160271] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(3182), 1, + anon_sym_DQUOTE, + ACTIONS(7731), 1, + sym_variable_name, + STATE(4766), 1, + sym_string, + ACTIONS(7729), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7727), 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(1249), 24, + anon_sym_SEMI, 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, - [159971] = 8, + 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, + [160327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 1, + ACTIONS(1245), 1, sym_file_descriptor, - ACTIONS(3512), 1, + ACTIONS(3182), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(7731), 1, sym_variable_name, - STATE(4218), 1, + STATE(4766), 1, sym_string, - ACTIONS(7418), 2, + ACTIONS(7729), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(7727), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -213654,7 +219893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1183), 22, + ACTIONS(1237), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -213664,7 +219903,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, @@ -213676,93 +219918,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [160025] = 19, + [160383] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6896), 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(1302), 14, 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_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(1304), 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(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, - [160101] = 10, + 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, + [160429] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7404), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7406), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7408), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7085), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7412), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 19, + ACTIONS(7735), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7733), 22, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -213776,58 +220001,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_RPAREN, - [160159] = 19, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [160485] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6898), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7735), 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(7733), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213839,31 +220044,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160235] = 8, + 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, + [160533] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7390), 2, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7408), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 5, + ACTIONS(7735), 6, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7101), 21, + ACTIONS(7733), 22, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -213877,60 +220093,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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [160289] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [160589] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7739), 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(7737), 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, @@ -213942,356 +220135,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160365] = 7, + 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, + [160635] = 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(7410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 7, + ACTIONS(1322), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7101), 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, - [160417] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6902), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + 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(1324), 24, + sym_file_descriptor, + sym__concat, + 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_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_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, + [160681] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7412), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 9, + ACTIONS(7689), 1, + sym__special_character, + STATE(3146), 1, + aux_sym__literal_repeat1, + ACTIONS(5722), 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, - ACTIONS(7101), 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_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(5724), 24, + 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [160543] = 19, + 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, + [160731] = 5, 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, + ACTIONS(7725), 1, + sym__special_character, + STATE(3113), 1, + aux_sym__literal_repeat1, + ACTIONS(5722), 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_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(5724), 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, - 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, - [160619] = 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_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, + [160781] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6906), 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(1342), 14, 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, - [160695] = 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(1225), 4, + 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(1344), 24, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 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_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, - 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, - [160745] = 19, + [160827] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6908), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1346), 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(1348), 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, @@ -214303,10 +220354,19 @@ 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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160873] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1271), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -214321,7 +220381,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 22, + sym__special_character, + ACTIONS(1273), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -214341,55 +220403,32 @@ 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, - [160865] = 19, + [160919] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6910), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1350), 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(1352), 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, @@ -214401,15 +220440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160941] = 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, + [160965] = 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(7085), 12, + ACTIONS(1346), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214422,8 +220466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1348), 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, @@ -214436,23 +220484,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, - [160989] = 5, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161011] = 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(7085), 12, + ACTIONS(1318), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -214465,8 +220509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, + anon_sym_STAR_STAR, + ACTIONS(1320), 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, @@ -214479,262 +220527,211 @@ 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, + anon_sym_COLON, + [161057] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6912), 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(1310), 14, 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, - [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, + 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(1312), 24, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 29, 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, + [161103] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 13, + 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_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1273), 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_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, + [161149] = 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(1318), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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, + 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(1320), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 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_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, 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, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [161195] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7689), 1, + sym__special_character, + STATE(3146), 1, + aux_sym__literal_repeat1, + ACTIONS(6242), 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_LBRACE, anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6244), 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, - sym_word, - [161289] = 19, + [161245] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6916), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7393), 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(7395), 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, @@ -214746,109 +220743,58 @@ 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_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, - [161441] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161291] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6920), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7697), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7699), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7701), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7703), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7705), 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(7741), 1, + anon_sym_EQ, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7707), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7711), 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(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7743), 15, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214860,168 +220806,187 @@ 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_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, + [161365] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 14, + 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, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1308), 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(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_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, + [161411] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 13, + ACTIONS(1330), 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(1266), 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_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(1332), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, 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, - [161637] = 19, + 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, + [161457] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6924), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7689), 1, + sym__special_character, + STATE(3146), 1, + aux_sym__literal_repeat1, + ACTIONS(6248), 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(6250), 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_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, + [161507] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 14, 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_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(1364), 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(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, - [161713] = 4, + 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, + [161553] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6993), 14, + ACTIONS(7747), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215036,7 +221001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6991), 20, + ACTIONS(7745), 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, @@ -215054,55 +221023,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, - [161759] = 19, + anon_sym_COLON, + [161599] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6926), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7749), 1, + anon_sym_RPAREN_RPAREN, + STATE(7064), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215114,10 +221087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161835] = 3, + [161681] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(1326), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215132,7 +221105,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 22, + ACTIONS(1328), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215152,153 +221127,494 @@ 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, - [161879] = 3, + anon_sym_COLON, + [161727] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, + ACTIONS(1366), 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(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_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(1368), 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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [161923] = 19, + 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, + [161773] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6932), 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(7751), 1, + sym__special_character, + STATE(3113), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [161999] = 19, + 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(1372), 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, + [161823] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6934), 1, + ACTIONS(1314), 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(1316), 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, + [161869] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 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(1263), 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, + [161915] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2176), 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(2178), 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, + [161961] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1302), 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(1304), 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, + [162007] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1322), 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(1324), 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, + [162053] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4945), 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(4947), 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, - ACTIONS(7332), 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, + [162099] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7611), 1, + aux_sym_concatenation_token1, + ACTIONS(7754), 1, + sym__concat, + STATE(3126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(1283), 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, + [162151] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [162197] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7756), 1, + anon_sym_RPAREN_RPAREN, + STATE(7077), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215310,10 +221626,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162075] = 3, + [162279] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7611), 1, + aux_sym_concatenation_token1, + ACTIONS(7758), 1, + sym__concat, + STATE(3126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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, + [162331] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(7264), 1, + anon_sym_RBRACK, + ACTIONS(7760), 1, + sym__concat, + ACTIONS(1289), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215327,9 +221694,8 @@ 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, - anon_sym_COMMA, + ACTIONS(1379), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215344,59 +221710,425 @@ 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, - [162119] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162381] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6940), 1, + ACTIONS(1310), 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(1312), 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, + [162427] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3126), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7762), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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(1263), 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, + [162477] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 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_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, + [162523] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 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(1356), 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, + [162569] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(1352), 24, + sym_file_descriptor, + sym__concat, + 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, + 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, + [162615] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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, + [162661] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 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(1356), 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, + [162707] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 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(1308), 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, + [162753] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, + [162799] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7767), 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(7765), 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, @@ -215408,10 +222140,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_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, + [162845] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6653), 14, + ACTIONS(1334), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215426,7 +222167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6651), 22, + ACTIONS(1336), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215446,55 +222189,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, - [162239] = 19, + anon_sym_COLON, + [162891] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6942), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1338), 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(1340), 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, @@ -215506,10 +222226,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162315] = 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [162937] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1346), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215523,7 +222253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 23, + ACTIONS(1348), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -215540,59 +222270,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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [162359] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [162983] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6944), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(1350), 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(1352), 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, @@ -215604,10 +222312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162435] = 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [163029] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6641), 14, + ACTIONS(1346), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215622,7 +222339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6639), 22, + ACTIONS(1348), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215642,55 +222361,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, - [162479] = 19, + anon_sym_COLON, + [163075] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6946), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7771), 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(7769), 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, @@ -215702,10 +222398,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162555] = 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [163121] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7214), 13, + ACTIONS(7747), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -215719,7 +222425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7216), 23, + ACTIONS(7745), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -215736,59 +222442,123 @@ 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, - [162599] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [163167] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6948), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(1346), 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(1348), 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, + [163213] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2180), 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(2182), 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_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, + [163259] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, @@ -215800,105 +222570,126 @@ 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [163305] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5056), 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(5058), 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(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_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, + [163351] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6950), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7773), 1, + sym__special_character, + STATE(3146), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 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_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, + [163401] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7778), 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(7776), 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, @@ -215910,45 +222701,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162819] = 14, + 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, + [163447] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7434), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7436), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7450), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7780), 1, + anon_sym_RPAREN_RPAREN, + STATE(7181), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7430), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7438), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215960,54 +222771,50 @@ 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, - [162885] = 19, + [163529] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6952), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7514), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216019,10 +222826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162961] = 3, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [163603] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, + ACTIONS(7202), 1, + anon_sym_RBRACK, + ACTIONS(7782), 1, + sym__concat, + ACTIONS(1289), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -216037,7 +222850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1250), 22, + ACTIONS(1379), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -216057,55 +222871,53 @@ 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, - [163005] = 19, + [163653] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6954), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7399), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7533), 1, + sym_test_operator, + ACTIONS(7697), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7699), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7701), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7703), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7705), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7715), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7523), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7525), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7527), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7707), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7709), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7711), 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(7529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7401), 14, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216117,93 +222929,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163081] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [163729] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7138), 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(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7140), 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, - [163125] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6956), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7399), 8, 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216215,96 +222968,51 @@ 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, + anon_sym_COLON, + [163782] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, - anon_sym_PIPE, - ACTIONS(7434), 1, - anon_sym_CARET, - ACTIONS(7436), 1, + ACTIONS(7790), 1, anon_sym_AMP, - ACTIONS(7450), 1, + ACTIONS(7804), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(7792), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(7796), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(7399), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216317,55 +223025,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_DASHa, - [163335] = 19, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163847] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6958), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7808), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216377,45 +223088,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163411] = 12, + [163926] = 3, 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7454), 5, + ACTIONS(5056), 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(7466), 13, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5058), 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, @@ -216427,10 +223130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [163473] = 3, + [163971] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(7812), 1, + sym__concat, + ACTIONS(7430), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -216444,9 +223150,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(7428), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -216461,59 +223165,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_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, + [164018] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6960), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7814), 1, + sym__concat, + ACTIONS(7439), 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(7437), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216525,42 +223207,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163593] = 13, + 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, + [164065] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7085), 1, + ACTIONS(5726), 13, anon_sym_PIPE, - ACTIONS(7434), 1, - anon_sym_CARET, - ACTIONS(7436), 1, - anon_sym_AMP, - ACTIONS(7450), 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, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5728), 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, + [164110] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7804), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7438), 2, + ACTIONS(7792), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(7796), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7444), 2, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7446), 2, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216573,105 +223305,100 @@ 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, - [163657] = 12, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164173] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7436), 1, - anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7085), 2, + ACTIONS(1306), 13, anon_sym_PIPE, - anon_sym_CARET, - 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1308), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [163719] = 19, + 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, + [164218] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6966), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7816), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7820), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7822), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7824), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7826), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7828), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7838), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7840), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7842), 1, + anon_sym_COLON, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7834), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7818), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216683,86 +223410,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163795] = 11, + [164297] = 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(1326), 13, + anon_sym_PIPE, 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_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(1328), 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(7446), 2, - anon_sym_PLUS, + 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, + [164342] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(3671), 1, + anon_sym_DQUOTE, + ACTIONS(7850), 1, + sym_variable_name, + STATE(4968), 1, + sym_string, + ACTIONS(7848), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7846), 8, 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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(1249), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [163855] = 10, + 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, + [164397] = 4, 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(7852), 1, + sym__concat, + ACTIONS(7466), 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), 19, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(7464), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216775,57 +223534,109 @@ 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, - [163913] = 19, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164444] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(3671), 1, + anon_sym_DQUOTE, + ACTIONS(7850), 1, + sym_variable_name, + STATE(4968), 1, + sym_string, + ACTIONS(7848), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7846), 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(1237), 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, + [164499] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6968), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(887), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216837,98 +223648,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [163989] = 8, + [164578] = 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(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(7085), 5, + ACTIONS(1342), 13, 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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_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(1344), 24, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, 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, - [164043] = 19, + 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, + [164623] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6970), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7854), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7860), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7862), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7864), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7866), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7884), 1, + anon_sym_RBRACK, + ACTIONS(7886), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7888), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7874), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7858), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216940,32 +223749,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164119] = 7, + [164702] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(7804), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7446), 2, + ACTIONS(7794), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7448), 3, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7085), 7, + ACTIONS(7399), 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, - ACTIONS(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7401), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216978,91 +223793,54 @@ 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, - [164171] = 19, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164763] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6972), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7741), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7860), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7862), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7864), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7866), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7874), 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, - [164247] = 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, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 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(7743), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217074,61 +223852,57 @@ 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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164291] = 19, + [164836] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6974), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7884), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7892), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7896), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7900), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7902), 1, anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7904), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7906), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7792), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7796), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7894), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217140,31 +223914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164367] = 6, - ACTIONS(71), 1, + [164915] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(1328), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7448), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7085), 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(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217180,91 +223939,51 @@ 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, - [164417] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6976), 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, - [164493] = 5, + anon_sym_STAR_STAR, + [164960] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(7804), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217277,94 +223996,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, - [164541] = 19, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165017] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6978), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7389), 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, - [164617] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7450), 1, anon_sym_STAR_STAR, - ACTIONS(7426), 2, + ACTIONS(7391), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7085), 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(7101), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217377,21 +224038,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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [164665] = 5, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165062] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7474), 1, - sym__special_character, - STATE(3239), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 12, + ACTIONS(1334), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -217403,9 +224061,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), 22, + ACTIONS(1336), 24, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -217419,35 +224079,42 @@ 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, - [164713] = 3, + [165107] = 8, 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, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 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(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217465,146 +224132,69 @@ 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, - [164757] = 8, - ACTIONS(3), 1, + [165162] = 5, + 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7908), 1, + sym__special_character, + STATE(3198), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 12, 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, - [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, - 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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5904), 23, + 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_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, + 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, + [165211] = 7, 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, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_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, - [164909] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, + ACTIONS(7399), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217613,15 +224203,8 @@ 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(1274), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217639,123 +224222,123 @@ 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, - [164953] = 8, - ACTIONS(3), 1, + [165264] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(7484), 1, - anon_sym_DQUOTE, - ACTIONS(7488), 1, - sym_variable_name, - STATE(4380), 1, - sym_string, - ACTIONS(7486), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 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, + ACTIONS(1338), 13, 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_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 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, - [165007] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(7484), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7488), 1, - sym_variable_name, - STATE(4380), 1, - sym_string, - ACTIONS(7486), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [165309] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4720), 5, 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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6390), 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_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, + ACTIONS(6392), 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, - aux_sym_heredoc_redirect_token1, - [165061] = 3, + ACTIONS(4732), 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, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [165358] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 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(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1250), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217768,34 +224351,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_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165105] = 3, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [165415] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, + ACTIONS(7920), 1, anon_sym_PIPE, + ACTIONS(7922), 1, anon_sym_CARET, + ACTIONS(7924), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(7938), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7910), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7916), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7918), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7930), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7932), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7934), 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(7928), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7914), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217807,34 +224414,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, - [165149] = 3, - ACTIONS(71), 1, + [165486] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 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(1298), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(7942), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7940), 36, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -217853,56 +224439,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_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165193] = 19, + 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, + [165531] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6822), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7944), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217914,28 +224515,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165269] = 3, + [165610] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 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(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1258), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217948,59 +224554,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, - [165313] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [165665] = 6, ACTIONS(71), 1, sym_comment, - 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(7804), 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, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7802), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, 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, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218012,52 +224598,82 @@ 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_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, + [165716] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7862), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7864), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7866), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7490), 1, - anon_sym_EQ, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7498), 1, - anon_sym_EQ_TILDE, - ACTIONS(7500), 1, + ACTIONS(7888), 1, anon_sym_QMARK, - ACTIONS(7502), 1, - anon_sym_RPAREN, - ACTIONS(7366), 2, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7874), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7492), 11, + ACTIONS(7401), 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_RBRACK, + anon_sym_EQ_TILDE, + [165791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7948), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7946), 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, @@ -218069,10 +224685,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165465] = 3, + 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, + [165836] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 13, + ACTIONS(7950), 1, + sym__special_character, + STATE(3303), 1, + aux_sym__literal_repeat1, + ACTIONS(5976), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -218086,7 +224727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1225), 23, + ACTIONS(5978), 22, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -218101,7 +224742,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, @@ -218110,16 +224750,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165509] = 3, - ACTIONS(71), 1, + [165885] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6726), 14, - anon_sym_EQ, + ACTIONS(1336), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 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, @@ -218128,7 +224792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6724), 22, + [165930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7942), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7940), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218143,35 +224814,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165553] = 3, + 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, + [165975] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6730), 14, + ACTIONS(897), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218183,19 +224893,15 @@ 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, - [165597] = 3, + [166054] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218209,10 +224915,8 @@ static const uint16_t ts_small_parse_table[] = { 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218230,55 +224934,19 @@ 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, - [165641] = 19, - ACTIONS(71), 1, + [166103] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7000), 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, + ACTIONS(1332), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 36, + anon_sym_SEMI, + anon_sym_COMMA, 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, @@ -218290,84 +224958,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165717] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7368), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + anon_sym_DASHa, 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(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(6991), 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, - [165791] = 3, + anon_sym_STAR_STAR, + [166148] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7138), 13, + ACTIONS(7854), 1, + anon_sym_EQ, + ACTIONS(7860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, anon_sym_PIPE, + ACTIONS(7866), 1, anon_sym_CARET, + ACTIONS(7868), 1, anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7886), 1, + anon_sym_EQ_TILDE, + ACTIONS(7888), 1, + anon_sym_QMARK, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7952), 1, + anon_sym_RBRACK, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7140), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7858), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218379,60 +225038,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, - [165835] = 19, + [166227] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7854), 1, + anon_sym_EQ, + ACTIONS(7860), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7862), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7864), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7866), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7886), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7888), 1, anon_sym_QMARK, - ACTIONS(7504), 1, - anon_sym_COLON, - ACTIONS(6746), 2, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 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(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7874), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7878), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7401), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218444,46 +225095,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165911] = 16, + anon_sym_RBRACK, + [166304] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6770), 1, + ACTIONS(7399), 1, anon_sym_EQ, - ACTIONS(7368), 1, + ACTIONS(7862), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7864), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7866), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(7388), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7494), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7366), 2, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7874), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6768), 14, + ACTIONS(7401), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218495,156 +225147,146 @@ 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_PIPE_PIPE, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165981] = 25, + [166375] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(7954), 1, + sym__special_character, + STATE(3198), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 23, + sym_file_descriptor, 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_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, + 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(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, + [166424] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(6557), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6562), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6555), 5, 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(6559), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6564), 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(6567), 14, + sym_variable_name, 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_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, + [166477] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7816), 1, anon_sym_EQ, + ACTIONS(7820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, + anon_sym_AMP_AMP, + ACTIONS(7824), 1, anon_sym_PIPE, + ACTIONS(7826), 1, anon_sym_CARET, + ACTIONS(7828), 1, anon_sym_AMP, + ACTIONS(7838), 1, + anon_sym_EQ_TILDE, + ACTIONS(7840), 1, + anon_sym_QMARK, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7786), 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(7401), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218656,121 +225298,91 @@ 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, + anon_sym_COLON, + [166554] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(5726), 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(5728), 25, + sym_file_descriptor, + sym_variable_name, 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, + 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(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, + [166599] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(7396), 1, + ACTIONS(7741), 1, + anon_sym_EQ, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, + anon_sym_AMP_AMP, + ACTIONS(7824), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7826), 1, anon_sym_CARET, - ACTIONS(7400), 1, + ACTIONS(7828), 1, anon_sym_AMP, - ACTIONS(7414), 1, - anon_sym_STAR_STAR, - ACTIONS(7206), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7390), 2, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 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(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7404), 2, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7406), 2, + ACTIONS(7834), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7408), 2, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7410), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7412), 3, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7528), 11, + ACTIONS(7743), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218782,27 +225394,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166359] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [166672] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7864), 1, anon_sym_PIPE, + ACTIONS(7866), 1, anon_sym_CARET, + ACTIONS(7868), 1, anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 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(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218815,81 +225447,14 @@ 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, - [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, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [166741] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 14, + ACTIONS(7393), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218904,7 +225469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1290), 22, + ACTIONS(7395), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218927,90 +225493,48 @@ static const uint16_t ts_small_parse_table[] = { 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, + [166786] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 14, + ACTIONS(7741), 1, anon_sym_EQ, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, anon_sym_PIPE, + ACTIONS(7902), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 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(7743), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219022,36 +225546,103 @@ 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_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166667] = 3, + [166859] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7210), 13, + ACTIONS(6557), 2, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(6562), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6555), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6559), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6564), 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(6567), 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, + [166912] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7790), 1, anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7892), 1, + anon_sym_EQ, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, + anon_sym_PIPE, + ACTIONS(7902), 1, + anon_sym_CARET, + ACTIONS(7904), 1, + anon_sym_EQ_TILDE, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(7952), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 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(7894), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219063,33 +225654,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_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, - [166711] = 3, - ACTIONS(71), 1, + [166991] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7125), 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(7127), 23, + ACTIONS(1344), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 36, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -219108,37 +225679,50 @@ 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, - [166755] = 8, + 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, + [167036] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7788), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7354), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, + ACTIONS(7399), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219156,31 +225740,46 @@ 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, - [166809] = 4, + anon_sym_COLON, + [167091] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7334), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6744), 14, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7866), 1, anon_sym_CARET, + ACTIONS(7868), 1, anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7399), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6742), 20, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219194,94 +225793,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, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166855] = 17, + [167158] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_EQ, - ACTIONS(7328), 1, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, + ACTIONS(7890), 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(6695), 2, + ACTIONS(7856), 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(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7874), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6985), 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, - [166927] = 8, - 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(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6744), 6, + ACTIONS(7399), 3, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(7880), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219295,75 +225845,180 @@ 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, - [166981] = 3, - ACTIONS(71), 1, + [167223] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6792), 14, - anon_sym_EQ, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(7959), 1, + anon_sym_DQUOTE, + ACTIONS(7963), 1, + sym_variable_name, + STATE(4639), 1, + sym_string, + ACTIONS(7961), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7957), 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(1249), 23, + 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_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, + [167278] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(7959), 1, + anon_sym_DQUOTE, + ACTIONS(7963), 1, + sym_variable_name, + STATE(4639), 1, + sym_string, + ACTIONS(7961), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7957), 8, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6790), 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(1237), 23, + 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_QMARK, - [167025] = 3, + 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, + [167333] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 14, - anon_sym_EQ, + ACTIONS(6378), 13, 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, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(6380), 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, + [167378] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 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(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219377,34 +226032,79 @@ 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, - [167069] = 3, + [167441] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, + ACTIONS(6382), 13, 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, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(6384), 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, + [167486] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 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(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219422,55 +226122,57 @@ 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, - [167113] = 19, + anon_sym_COLON, + [167543] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(941), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219482,52 +226184,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167189] = 19, + [167622] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7824), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7826), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7828), 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(7498), 1, - anon_sym_EQ_TILDE, - ACTIONS(7500), 1, + ACTIONS(7840), 1, anon_sym_QMARK, - ACTIONS(7550), 1, - anon_sym_RPAREN, - ACTIONS(7366), 2, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7834), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7492), 11, + ACTIONS(7401), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219539,84 +226239,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167265] = 19, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [167697] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, - anon_sym_STAR_STAR, - ACTIONS(6772), 1, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_EQ, - ACTIONS(6830), 1, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7552), 1, - anon_sym_COLON, - ACTIONS(6746), 2, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7965), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 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(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7500), 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, - [167341] = 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, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219628,99 +226300,80 @@ 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, - [167385] = 25, + [167776] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(6378), 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(6380), 25, + sym_file_descriptor, + sym_variable_name, 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_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, + 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(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, + [167821] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 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(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219736,78 +226389,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_RPAREN, + anon_sym_RBRACK, 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, + [167882] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(7399), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -219822,7 +226410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 22, + ACTIONS(7401), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219842,157 +226431,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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [167649] = 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(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, + [167927] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220005,34 +226473,49 @@ 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, - [167869] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [167982] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7786), 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(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220046,34 +226529,53 @@ 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, - [167913] = 3, + anon_sym_COLON, + [168045] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(7399), 1, anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7977), 1, + anon_sym_AMP_AMP, + ACTIONS(7979), 1, anon_sym_PIPE, + ACTIONS(7981), 1, anon_sym_CARET, + ACTIONS(7983), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7991), 1, + anon_sym_QMARK, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 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(7401), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220085,36 +226587,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, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167957] = 3, + [168120] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7977), 1, + anon_sym_AMP_AMP, + ACTIONS(7979), 1, anon_sym_PIPE, + ACTIONS(7981), 1, anon_sym_CARET, + ACTIONS(7983), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7991), 1, + anon_sym_QMARK, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7995), 1, + anon_sym_EQ, + ACTIONS(7997), 1, + anon_sym_EQ_TILDE, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 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(7401), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220126,36 +226646,47 @@ 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, + anon_sym_RPAREN, + [168197] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(7399), 1, anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7977), 1, + anon_sym_AMP_AMP, + ACTIONS(7979), 1, anon_sym_PIPE, + ACTIONS(7981), 1, anon_sym_CARET, + ACTIONS(7983), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 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(7401), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220168,35 +226699,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168045] = 3, + [168268] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(855), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220208,58 +226761,44 @@ 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, - [168089] = 16, + [168347] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7979), 1, anon_sym_PIPE, - ACTIONS(7434), 1, + ACTIONS(7981), 1, anon_sym_CARET, - ACTIONS(7436), 1, + ACTIONS(7983), 1, anon_sym_AMP, - ACTIONS(7450), 1, - anon_sym_STAR_STAR, - ACTIONS(7206), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(7426), 2, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 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, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7985), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7440), 2, + ACTIONS(7987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7442), 2, + ACTIONS(7989), 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, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7558), 11, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220271,28 +226810,48 @@ 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_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168416] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, - anon_sym_PIPE, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7981), 1, anon_sym_CARET, + ACTIONS(7983), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7399), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 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(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220305,59 +226864,145 @@ 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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168483] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7983), 1, + anon_sym_AMP, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7985), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [168203] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7005), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7399), 3, 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, + ACTIONS(7971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + [168548] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7985), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7989), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168611] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220369,10 +227014,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168279] = 3, + 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, + [168672] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 14, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220386,10 +227043,8 @@ static const uint16_t ts_small_parse_table[] = { 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220407,31 +227062,83 @@ 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, - [168323] = 3, + [168721] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7210), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 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, + [168778] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7973), 1, anon_sym_STAR_STAR, - ACTIONS(7212), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220444,17 +227151,27 @@ 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, - [168367] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168831] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6653), 14, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220465,13 +227182,8 @@ 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(6651), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220492,10 +227204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168411] = 3, + [168882] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7125), 13, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 13, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220508,12 +227226,8 @@ static const uint16_t ts_small_parse_table[] = { 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220526,17 +227240,23 @@ 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, - [168455] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168931] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6641), 14, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220550,10 +227270,8 @@ static const uint16_t ts_small_parse_table[] = { 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220574,32 +227292,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168499] = 8, + [168980] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, + ACTIONS(7399), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6742), 20, + ACTIONS(7401), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220617,122 +227337,91 @@ 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, - [168553] = 8, - ACTIONS(3), 1, + [169037] = 3, + 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1358), 13, 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, - [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, - 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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1360), 24, + sym_file_descriptor, + sym__concat, + 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_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_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, + [169082] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6726), 14, + ACTIONS(7399), 1, anon_sym_EQ, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 1, + anon_sym_AMP_AMP, + ACTIONS(7824), 1, anon_sym_PIPE, + ACTIONS(7826), 1, anon_sym_CARET, + ACTIONS(7828), 1, anon_sym_AMP, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7786), 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(7401), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220745,35 +227434,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168705] = 3, + anon_sym_COLON, + [169153] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6730), 14, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7816), 1, anon_sym_EQ, + ACTIONS(7820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, + anon_sym_AMP_AMP, + ACTIONS(7824), 1, anon_sym_PIPE, + ACTIONS(7826), 1, anon_sym_CARET, + ACTIONS(7828), 1, anon_sym_AMP, + ACTIONS(7838), 1, + anon_sym_EQ_TILDE, + ACTIONS(7840), 1, + anon_sym_QMARK, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7999), 1, + anon_sym_COLON, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7786), 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(7818), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220785,37 +227496,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [169232] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 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(1356), 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_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168749] = 4, + 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, + [169277] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7366), 2, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7420), 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, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6742), 20, + ACTIONS(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220833,98 +227583,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_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168795] = 25, + [169334] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(6382), 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(6384), 25, + 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(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, + 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(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, + [169379] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7388), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7366), 2, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6744), 6, + ACTIONS(7399), 8, 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, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220942,13 +227671,23 @@ 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, - [168937] = 3, + [169432] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7880), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 10, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -220958,14 +227697,8 @@ 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(1274), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220978,60 +227711,24 @@ 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, - [168981] = 19, - 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_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(6832), 1, anon_sym_QMARK, - ACTIONS(7560), 1, - anon_sym_COLON, - ACTIONS(6746), 2, + [169483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 36, + anon_sym_SEMI, + anon_sym_COMMA, 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, @@ -221043,15 +227740,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169057] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1264), 13, + 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, @@ -221060,10 +227761,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1266), 23, - anon_sym_COMMA, + [169528] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(1364), 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, + [169573] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7798), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7800), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7802), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221076,60 +227842,52 @@ 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, - [169101] = 19, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169628] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6754), 1, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7788), 1, anon_sym_STAR_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6774), 1, - anon_sym_AMP_AMP, - ACTIONS(6776), 1, + ACTIONS(7824), 1, anon_sym_PIPE, - ACTIONS(6778), 1, + ACTIONS(7826), 1, anon_sym_CARET, - ACTIONS(6780), 1, + ACTIONS(7828), 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(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6748), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6750), 2, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6782), 2, + ACTIONS(7830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6784), 2, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6786), 2, + ACTIONS(7834), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6752), 3, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 11, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221141,10 +227899,21 @@ 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_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [169697] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 13, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 13, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221157,11 +227926,8 @@ static const uint16_t ts_small_parse_table[] = { 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221174,18 +227940,24 @@ 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169746] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 13, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 13, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221198,11 +227970,8 @@ static const uint16_t ts_small_parse_table[] = { 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(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221215,60 +227984,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, - anon_sym_RPAREN, - [169265] = 19, - 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, - anon_sym_PIPE, - ACTIONS(6800), 1, - anon_sym_CARET, - ACTIONS(6802), 1, - anon_sym_AMP, - ACTIONS(6812), 1, - anon_sym_EQ, - ACTIONS(6814), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(7564), 1, anon_sym_QMARK, - ACTIONS(6695), 2, + [169795] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 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, - 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, + ACTIONS(7934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7562), 11, + ACTIONS(8001), 30, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221280,10 +228020,30 @@ 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_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, + [169846] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 13, + ACTIONS(8005), 1, + sym__concat, + ACTIONS(7460), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221297,8 +228057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1258), 23, - anon_sym_COMMA, + ACTIONS(7458), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -221313,81 +228072,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, - [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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169893] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(8007), 1, + anon_sym_LBRACK, + ACTIONS(7472), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -221401,8 +228100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 23, - anon_sym_COMMA, + ACTIONS(7470), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -221417,35 +228115,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, - [169517] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169940] = 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(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 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(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221458,81 +228162,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_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_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169995] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6792), 14, + ACTIONS(7399), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -221547,7 +228188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6790), 22, + ACTIONS(7401), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -221567,30 +228209,114 @@ 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, - [169693] = 3, + [170040] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, anon_sym_PIPE, + ACTIONS(7902), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7401), 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_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [170115] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7788), 1, anon_sym_STAR_STAR, - ACTIONS(1294), 23, - anon_sym_COMMA, + ACTIONS(7816), 1, + anon_sym_EQ, + ACTIONS(7820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, + anon_sym_AMP_AMP, + ACTIONS(7824), 1, + anon_sym_PIPE, + ACTIONS(7826), 1, + anon_sym_CARET, + ACTIONS(7828), 1, + anon_sym_AMP, + ACTIONS(7838), 1, + anon_sym_EQ_TILDE, + ACTIONS(7840), 1, + anon_sym_QMARK, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(8009), 1, + anon_sym_COLON, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7818), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221602,162 +228328,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [170194] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [169737] = 25, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8011), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [170271] = 20, 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(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 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(71), 1, - sym_comment, - ACTIONS(1296), 13, + ACTIONS(7892), 1, + anon_sym_EQ, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, anon_sym_PIPE, + ACTIONS(7902), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7904), 1, + anon_sym_EQ_TILDE, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(8013), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7894), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221769,111 +228445,116 @@ 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, - [169957] = 8, - ACTIONS(3), 1, + [170350] = 20, + ACTIONS(71), 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, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8015), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 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, - anon_sym_LT_LT_LT, - [170011] = 8, - ACTIONS(3), 1, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [170429] = 8, + ACTIONS(71), 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, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 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_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7418), 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_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(7422), 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170484] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 12, + ACTIONS(1271), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -221882,11 +228563,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, sym_word, - ACTIONS(1225), 24, + ACTIONS(1273), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -221894,6 +228576,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, @@ -221902,7 +228585,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, @@ -221911,28 +228593,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [170109] = 3, + [170529] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 13, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7975), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7977), 1, + anon_sym_AMP_AMP, + ACTIONS(7979), 1, anon_sym_PIPE, + ACTIONS(7981), 1, anon_sym_CARET, + ACTIONS(7983), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7991), 1, + anon_sym_QMARK, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7995), 1, + anon_sym_EQ, + ACTIONS(7997), 1, + anon_sym_EQ_TILDE, + ACTIONS(8019), 1, + anon_sym_RPAREN, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1290), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(8017), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221944,36 +228652,77 @@ 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, - [170153] = 3, + [170608] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(8021), 1, + sym__special_character, + STATE(3269), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 12, 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(1372), 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, + [170657] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, anon_sym_STAR, 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(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221986,17 +228735,28 @@ 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, - [170197] = 3, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170712] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7786), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 10, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222006,15 +228766,8 @@ 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(1306), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222027,35 +228780,42 @@ 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_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170763] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 3, anon_sym_STAR, 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(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222068,59 +228828,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, - [170285] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170820] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6842), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7975), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7977), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7979), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7981), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7983), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7362), 1, - anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7991), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7995), 1, + anon_sym_EQ, + ACTIONS(7997), 1, + anon_sym_EQ_TILDE, + ACTIONS(8024), 1, + anon_sym_RPAREN, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7985), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7989), 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(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(8017), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222132,27 +228895,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170361] = 3, + [170899] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, anon_sym_PIPE, + ACTIONS(7902), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7904), 1, + anon_sym_EQ_TILDE, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(8026), 1, + anon_sym_EQ, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, 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, + ACTIONS(7401), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222164,77 +228952,34 @@ 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, - [170405] = 3, + anon_sym_RBRACK_RBRACK, + [170976] = 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(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 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, - [170449] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 13, + ACTIONS(7418), 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, - 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, + ACTIONS(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222247,22 +228992,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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [170493] = 5, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171031] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7570), 1, - sym__special_character, - STATE(3239), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 12, + ACTIONS(1271), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -222274,9 +229015,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, sym_word, - ACTIONS(1318), 22, + ACTIONS(1273), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_PIPE_PIPE, @@ -222290,6 +229033,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, @@ -222298,142 +229042,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [170541] = 25, + [171076] = 4, 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(6563), 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(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(3319), 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, - [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, + ACTIONS(8028), 1, + sym__concat, + ACTIONS(7460), 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, - anon_sym_BQUOTE, - [170683] = 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(6611), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6613), 20, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(7458), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222451,52 +229082,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, - [170737] = 18, + [171123] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7418), 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(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222508,156 +229119,42 @@ 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, + [171170] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6611), 1, - anon_sym_EQ, - ACTIONS(7328), 1, + ACTIONS(7882), 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, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7878), 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, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 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, - [170957] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6611), 1, + ACTIONS(7418), 6, 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_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, + ACTIONS(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222671,45 +229168,23 @@ 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, - ACTIONS(71), 1, + [171225] = 3, + ACTIONS(3), 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, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6695), 2, + ACTIONS(1364), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 36, + anon_sym_SEMI, + anon_sym_COMMA, 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), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222722,95 +229197,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_TILDE, - anon_sym_QMARK, - [171091] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(7542), 1, + anon_sym_DASHa, + 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_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_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, 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_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171155] = 12, + anon_sym_STAR_STAR, + [171270] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7788), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, + ACTIONS(7844), 1, sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7544), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7546), 2, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7834), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7326), 3, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6611), 4, + ACTIONS(7399), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6613), 15, + ACTIONS(7401), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222824,40 +229262,35 @@ 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_EQ_TILDE, anon_sym_QMARK, - [171217] = 11, + anon_sym_COLON, + [171331] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7788), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7399), 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, - ACTIONS(7324), 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, 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), 17, + ACTIONS(7401), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222873,17 +229306,17 @@ 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, - [171277] = 5, + anon_sym_COLON, + [171380] = 4, 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(8030), 1, + sym__concat, + ACTIONS(7466), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222897,7 +229330,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(7464), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222918,22 +229354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171325] = 7, + [171427] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7788), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(7420), 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(7399), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222942,7 +229371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6613), 20, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222963,31 +229397,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171377] = 6, - ACTIONS(71), 1, + anon_sym_COLON, + [171476] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_STAR_STAR, - ACTIONS(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7326), 3, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(3555), 1, + anon_sym_DQUOTE, + ACTIONS(8036), 1, + sym_variable_name, + STATE(4895), 1, + sym_string, + ACTIONS(8034), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8032), 8, + anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6611), 10, - anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1249), 23, + 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_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, + [171531] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(3555), 1, + anon_sym_DQUOTE, + ACTIONS(8036), 1, + sym_variable_name, + STATE(4895), 1, + sym_string, + ACTIONS(8034), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8032), 8, anon_sym_DASH, - ACTIONS(6613), 20, - sym_test_operator, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + ACTIONS(1237), 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, + [171586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8040), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8038), 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, @@ -223000,37 +229514,69 @@ 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, - [171427] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7328), 1, + 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(6695), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6611), 13, - anon_sym_EQ, + [171631] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, anon_sym_PIPE, + ACTIONS(7922), 1, anon_sym_CARET, + ACTIONS(7924), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7916), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7918), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7930), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7932), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 20, - sym_test_operator, + ACTIONS(7928), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8001), 13, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223042,38 +229588,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_EQ_TILDE, - anon_sym_QMARK, - [171475] = 5, + [171700] = 20, 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(7854), 1, anon_sym_EQ, + ACTIONS(7860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, anon_sym_PIPE, + ACTIONS(7866), 1, anon_sym_CARET, + ACTIONS(7868), 1, anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7886), 1, + anon_sym_EQ_TILDE, + ACTIONS(7888), 1, + anon_sym_QMARK, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(8042), 1, + anon_sym_RBRACK, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6613), 20, - sym_test_operator, + ACTIONS(7858), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223085,101 +229647,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [171779] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(863), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171523] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1223), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7502), 2, 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), 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, - [171567] = 19, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [171858] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6846), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(7399), 1, anon_sym_EQ, - ACTIONS(7338), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7900), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7902), 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, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7792), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7796), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7401), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223191,34 +229757,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171643] = 9, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171929] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(905), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7330), 1, - sym_test_operator, - ACTIONS(6695), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(7506), 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, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223230,41 +229820,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_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, - [171699] = 8, - ACTIONS(71), 1, + [172008] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7920), 1, + anon_sym_PIPE, + ACTIONS(7922), 1, + anon_sym_CARET, + ACTIONS(7924), 1, + anon_sym_AMP, + ACTIONS(7936), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7918), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7930), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(7934), 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, + ACTIONS(7928), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, - sym_test_operator, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8001), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223277,40 +229872,44 @@ 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, - [171753] = 8, - ACTIONS(71), 1, + anon_sym_DASHo, + [172075] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(7328), 1, + ACTIONS(7920), 1, + anon_sym_PIPE, + ACTIONS(7922), 1, + anon_sym_CARET, + ACTIONS(7924), 1, + anon_sym_AMP, + ACTIONS(7936), 1, anon_sym_STAR_STAR, - ACTIONS(6695), 2, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7322), 2, + ACTIONS(7926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7930), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7324), 2, + ACTIONS(7932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7326), 3, + ACTIONS(7934), 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, + ACTIONS(7928), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(6697), 20, - sym_test_operator, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8001), 17, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223323,17 +229922,15 @@ 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_EQ_TILDE, - anon_sym_QMARK, - [171807] = 3, + anon_sym_DASHa, + [172140] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7214), 13, + ACTIONS(8044), 1, + anon_sym_EQ, + ACTIONS(7719), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223347,7 +229944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7216), 23, + ACTIONS(7723), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -223371,27 +229968,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [171851] = 3, + [172187] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6930), 14, + ACTIONS(7854), 1, anon_sym_EQ, + ACTIONS(7860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, anon_sym_PIPE, + ACTIONS(7866), 1, anon_sym_CARET, + ACTIONS(7868), 1, anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7886), 1, + anon_sym_EQ_TILDE, + ACTIONS(7888), 1, + anon_sym_QMARK, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(8046), 1, + anon_sym_RBRACK, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7880), 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(7858), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223403,22 +230027,11 @@ 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, + [172266] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7390), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7251), 13, + ACTIONS(7424), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223432,8 +230045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7253), 21, - anon_sym_COMMA, + ACTIONS(7426), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223446,35 +230061,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_RPAREN, - [171941] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172311] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7255), 13, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7892), 1, + anon_sym_EQ, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, anon_sym_PIPE, + ACTIONS(7902), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7904), 1, + anon_sym_EQ_TILDE, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(8046), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7257), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7894), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223486,36 +230128,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_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, - [171985] = 3, + [172390] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7892), 1, anon_sym_EQ, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, anon_sym_PIPE, + ACTIONS(7902), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7904), 1, + anon_sym_EQ_TILDE, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(8042), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6987), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7894), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223527,57 +230187,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, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172029] = 17, + [172469] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7854), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7860), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7862), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7864), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7866), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(7364), 1, + ACTIONS(7886), 1, + anon_sym_EQ_TILDE, + ACTIONS(7888), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(8048), 1, + anon_sym_RBRACK, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7874), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 13, + ACTIONS(7858), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223589,29 +230246,83 @@ 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, - [172101] = 3, + [172548] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6938), 14, - anon_sym_EQ, + ACTIONS(1318), 13, 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(1320), 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, + [172593] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7922), 1, + anon_sym_CARET, + ACTIONS(7924), 1, + anon_sym_AMP, + ACTIONS(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7930), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7932), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7934), 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(7928), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8001), 18, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223624,60 +230335,144 @@ 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, - [172145] = 19, + anon_sym_DASHa, + anon_sym_PIPE, + [172656] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6850), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, - anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(8050), 1, + sym__special_character, + STATE(3303), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 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, + [172705] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1314), 13, anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 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, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1316), 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, + [172750] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7790), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7804), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7892), 1, + anon_sym_EQ, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, + anon_sym_PIPE, + ACTIONS(7902), 1, + anon_sym_CARET, + ACTIONS(7904), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7906), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(8048), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7792), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7796), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7894), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223689,50 +230484,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172221] = 18, + [172829] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 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(1263), 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, + [172874] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2176), 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(2178), 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, + [172919] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7332), 1, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8053), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 12, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223744,45 +230627,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [172295] = 15, + [172998] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7816), 1, anon_sym_EQ, - ACTIONS(7340), 1, + ACTIONS(7820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7824), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7826), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7828), 1, anon_sym_AMP, - ACTIONS(7360), 1, - anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7838), 1, + anon_sym_EQ_TILDE, + ACTIONS(7840), 1, + anon_sym_QMARK, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(8055), 1, + anon_sym_COLON, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7832), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7834), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7836), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 15, + ACTIONS(7818), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223794,46 +230686,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172363] = 14, - ACTIONS(71), 1, + [173077] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6993), 1, - anon_sym_EQ, - ACTIONS(7342), 1, - anon_sym_PIPE, - ACTIONS(7344), 1, - anon_sym_CARET, - ACTIONS(7346), 1, - anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7936), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 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(6991), 16, + ACTIONS(8001), 33, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223846,14 +230711,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_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172429] = 3, + 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, + [173126] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(8057), 1, + anon_sym_LBRACK, + ACTIONS(7472), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223868,7 +230750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6962), 22, + ACTIONS(7470), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223891,41 +230773,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172473] = 13, + [173173] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(1330), 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(1332), 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, + [173218] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7854), 1, + anon_sym_EQ, + ACTIONS(7860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7866), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7868), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7882), 1, anon_sym_STAR_STAR, - ACTIONS(6993), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7334), 2, + ACTIONS(7886), 1, + anon_sym_EQ_TILDE, + ACTIONS(7888), 1, + anon_sym_QMARK, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(8013), 1, + anon_sym_RBRACK, + ACTIONS(7856), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7870), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7874), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7876), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7878), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7880), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(7858), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223937,30 +230874,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [173297] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7975), 1, anon_sym_PIPE_PIPE, + ACTIONS(7977), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, + ACTIONS(7979), 1, + anon_sym_PIPE, + ACTIONS(7981), 1, + anon_sym_CARET, + ACTIONS(7983), 1, + anon_sym_AMP, + ACTIONS(7991), 1, anon_sym_QMARK, - [172537] = 3, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7995), 1, + anon_sym_EQ, + ACTIONS(7997), 1, + anon_sym_EQ_TILDE, + ACTIONS(8059), 1, + anon_sym_RPAREN, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7987), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8017), 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, + [173376] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6964), 14, + ACTIONS(7480), 1, anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8061), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6962), 22, + ACTIONS(7484), 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, + [173455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223975,21 +231014,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_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, - [172581] = 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, + [173500] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7251), 13, + ACTIONS(1289), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224003,9 +231052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7253), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1379), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224018,47 +231068,52 @@ 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, + [173545] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7346), 1, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(7790), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7804), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7900), 1, + anon_sym_PIPE, + ACTIONS(7902), 1, + anon_sym_CARET, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7792), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7796), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6993), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7358), 3, + ACTIONS(7802), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 16, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224072,18 +231127,43 @@ 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_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172689] = 3, - ACTIONS(71), 1, + [173614] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 13, + ACTIONS(1352), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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, @@ -224092,8 +231172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7257), 23, - anon_sym_RPAREN_RPAREN, + [173659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 36, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -224112,43 +231197,60 @@ 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, - [172733] = 11, + 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, + [173704] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7806), 1, + sym_test_operator, + ACTIONS(7902), 1, + anon_sym_CARET, + ACTIONS(7399), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7792), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7796), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7798), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7800), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7802), 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), 16, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224162,99 +231264,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_RBRACK_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, + [173771] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6852), 1, - anon_sym_RBRACK, - ACTIONS(7332), 1, + ACTIONS(913), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, anon_sym_EQ, - ACTIONS(7338), 1, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, - ACTIONS(7340), 1, + ACTIONS(7488), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7490), 1, anon_sym_PIPE, - ACTIONS(7344), 1, + ACTIONS(7492), 1, anon_sym_CARET, - ACTIONS(7346), 1, + ACTIONS(7494), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7362), 1, + ACTIONS(7510), 1, anon_sym_EQ_TILDE, - ACTIONS(7364), 1, + ACTIONS(7512), 1, anon_sym_QMARK, - ACTIONS(7334), 2, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7348), 2, + ACTIONS(7496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7350), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7336), 11, + ACTIONS(7484), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224266,54 +231326,12 @@ 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, + [173850] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 14, + ACTIONS(8063), 1, + sym__concat, + ACTIONS(7430), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -224328,7 +231346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6987), 22, + ACTIONS(7428), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -224351,92 +231369,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173013] = 6, - ACTIONS(3), 1, + [173897] = 17, + ACTIONS(71), 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, + ACTIONS(7741), 1, + anon_sym_EQ, + ACTIONS(7973), 1, + anon_sym_STAR_STAR, + ACTIONS(7975), 1, anon_sym_PIPE_PIPE, + ACTIONS(7977), 1, anon_sym_AMP_AMP, + ACTIONS(7979), 1, + anon_sym_PIPE, + ACTIONS(7981), 1, + anon_sym_CARET, + ACTIONS(7983), 1, + anon_sym_AMP, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7985), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7987), 2, 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(7989), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7743), 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, + [173970] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4945), 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(4947), 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, + [174015] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1366), 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_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1368), 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, - sym_word, - [173063] = 17, + [174060] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7826), 1, + anon_sym_CARET, + ACTIONS(7828), 1, + anon_sym_AMP, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7399), 2, anon_sym_EQ, - ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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, - ACTIONS(7370), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [174127] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7924), 1, + anon_sym_AMP, + ACTIONS(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7928), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8001), 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, anon_sym_PIPE, - ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_AMP, - ACTIONS(7388), 1, + [174188] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7973), 1, anon_sym_STAR_STAR, - ACTIONS(7494), 1, + ACTIONS(7975), 1, anon_sym_PIPE_PIPE, - ACTIONS(7500), 1, + ACTIONS(7977), 1, + anon_sym_AMP_AMP, + ACTIONS(7979), 1, + anon_sym_PIPE, + ACTIONS(7981), 1, + anon_sym_CARET, + ACTIONS(7983), 1, + anon_sym_AMP, + ACTIONS(7991), 1, anon_sym_QMARK, - ACTIONS(7366), 2, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7995), 1, + anon_sym_EQ, + ACTIONS(7997), 1, + anon_sym_EQ_TILDE, + ACTIONS(8065), 1, + anon_sym_RPAREN, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7376), 2, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7985), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7378), 2, + ACTIONS(7987), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7380), 2, + ACTIONS(7989), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7384), 2, + ACTIONS(7971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8017), 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, + [174267] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7828), 1, + anon_sym_AMP, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7386), 3, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7399), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7786), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6991), 13, + ACTIONS(7401), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224448,38 +231718,118 @@ 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_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_TILDE, - [173135] = 10, + anon_sym_QMARK, + anon_sym_COLON, + [174332] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8067), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7350), 2, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7352), 2, + ACTIONS(7500), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7354), 2, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7504), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7506), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 4, + ACTIONS(7484), 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, + [174411] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7816), 1, anon_sym_EQ, + ACTIONS(7820), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, + anon_sym_AMP_AMP, + ACTIONS(7824), 1, anon_sym_PIPE, + ACTIONS(7826), 1, anon_sym_CARET, + ACTIONS(7828), 1, anon_sym_AMP, - ACTIONS(6991), 18, + ACTIONS(7838), 1, + anon_sym_EQ_TILDE, + ACTIONS(7840), 1, + anon_sym_QMARK, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(8069), 1, + anon_sym_COLON, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7818), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224491,39 +231841,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [174490] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7788), 1, + anon_sym_STAR_STAR, + ACTIONS(7816), 1, + anon_sym_EQ, + ACTIONS(7820), 1, anon_sym_PIPE_PIPE, + ACTIONS(7822), 1, anon_sym_AMP_AMP, + ACTIONS(7824), 1, + anon_sym_PIPE, + ACTIONS(7826), 1, + anon_sym_CARET, + ACTIONS(7828), 1, + anon_sym_AMP, + ACTIONS(7838), 1, + anon_sym_EQ_TILDE, + ACTIONS(7840), 1, + anon_sym_QMARK, + ACTIONS(7844), 1, + sym_test_operator, + ACTIONS(8071), 1, + anon_sym_COLON, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7830), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, + ACTIONS(7832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7834), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7836), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7786), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7818), 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, + [174569] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7854), 1, + anon_sym_EQ, + ACTIONS(7860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7862), 1, + anon_sym_AMP_AMP, + ACTIONS(7864), 1, + anon_sym_PIPE, + ACTIONS(7866), 1, + anon_sym_CARET, + ACTIONS(7868), 1, + anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7886), 1, anon_sym_EQ_TILDE, + ACTIONS(7888), 1, anon_sym_QMARK, - [173193] = 8, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(8073), 1, + anon_sym_RBRACK, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7878), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7880), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7858), 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, + [174648] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7928), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8001), 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [174707] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1302), 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(1304), 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, + [174752] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7973), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7993), 1, + sym_test_operator, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7354), 2, + ACTIONS(7967), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7356), 2, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 6, + ACTIONS(7418), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6991), 20, + ACTIONS(7422), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224541,34 +232095,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173247] = 7, + [174809] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7973), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7356), 2, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7358), 3, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 8, + ACTIONS(7418), 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, - ACTIONS(6991), 20, + ACTIONS(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224586,33 +232142,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_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173299] = 6, + [174864] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7360), 1, + ACTIONS(7973), 1, anon_sym_STAR_STAR, - ACTIONS(7334), 2, + ACTIONS(7420), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7358), 3, + ACTIONS(7967), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6993), 10, + ACTIONS(7418), 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(6991), 20, + ACTIONS(7422), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224630,1929 +232189,1518 @@ 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, - [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, + [174919] = 9, 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(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7932), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7934), 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_SLASH, + anon_sym_PERCENT, + ACTIONS(7928), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8001), 22, 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_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, - [173490] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [174976] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, - anon_sym_DQUOTE, - ACTIONS(7595), 1, - sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(1197), 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(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7932), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7934), 3, 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_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 26, 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_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, - [173543] = 8, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [175031] = 7, ACTIONS(3), 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(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7932), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7934), 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_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 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, 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_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_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, + [175084] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(8075), 1, + anon_sym_EQ, + ACTIONS(7719), 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(7723), 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, + [175131] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 30, + ACTIONS(7892), 1, + anon_sym_EQ, + ACTIONS(7896), 1, anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, anon_sym_AMP_AMP, + ACTIONS(7900), 1, + anon_sym_PIPE, + ACTIONS(7902), 1, + anon_sym_CARET, + ACTIONS(7904), 1, + anon_sym_EQ_TILDE, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(8073), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 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(7800), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7802), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7894), 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, + [175210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(7936), 1, + anon_sym_STAR_STAR, + ACTIONS(8003), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 30, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8001), 33, + 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, + [175259] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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_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, - sym_comment, - ACTIONS(1262), 5, + ACTIONS(1348), 24, sym_file_descriptor, sym__concat, 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_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, - [173725] = 3, + [175304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(8079), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 30, + ACTIONS(7912), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8077), 34, + 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, - [173768] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [175351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(8083), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 30, + ACTIONS(8081), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, - [173811] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [175396] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 12, + ACTIONS(8085), 1, + sym__concat, + ACTIONS(7439), 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(7437), 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, + 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, + [175443] = 20, 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(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_STAR_STAR, ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_TILDE, 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_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8087), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [175522] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(1310), 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, - 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_word, + ACTIONS(1312), 24, 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_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, - [174067] = 24, + [175567] = 20, 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(871), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_STAR_STAR, ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_TILDE, 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, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [175646] = 3, + ACTIONS(3), 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(1320), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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, + [175691] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(1271), 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_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_word, + ACTIONS(1273), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 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_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, + [175736] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, - sym_word, - ACTIONS(6390), 1, + ACTIONS(2180), 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(2182), 25, + sym_file_descriptor, + sym_variable_name, 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, - 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, - 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, + [175781] = 3, 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, - 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, + ACTIONS(1360), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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_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, + [175826] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7854), 1, + anon_sym_EQ, + ACTIONS(7860), 1, anon_sym_PIPE_PIPE, + ACTIONS(7862), 1, anon_sym_AMP_AMP, + ACTIONS(7864), 1, anon_sym_PIPE, + ACTIONS(7866), 1, + anon_sym_CARET, + ACTIONS(7868), 1, anon_sym_AMP, + ACTIONS(7882), 1, + anon_sym_STAR_STAR, + ACTIONS(7886), 1, + anon_sym_EQ_TILDE, + ACTIONS(7888), 1, + anon_sym_QMARK, + ACTIONS(7890), 1, + sym_test_operator, + ACTIONS(8089), 1, + anon_sym_RBRACK, + ACTIONS(7856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7870), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7872), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7874), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7876), 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, - [174641] = 24, + ACTIONS(7878), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7880), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7858), 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, + [175905] = 20, 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(7790), 1, + anon_sym_AMP, + ACTIONS(7804), 1, + anon_sym_STAR_STAR, + ACTIONS(7806), 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(7892), 1, + anon_sym_EQ, + ACTIONS(7896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, + anon_sym_PIPE, + ACTIONS(7902), 1, + anon_sym_CARET, + ACTIONS(7904), 1, + anon_sym_EQ_TILDE, + ACTIONS(7906), 1, + anon_sym_QMARK, + ACTIONS(8089), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7792), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7794), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7796), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7798), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7800), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7802), 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_SLASH, + anon_sym_PERCENT, + ACTIONS(7894), 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, + [175984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 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_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [176029] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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_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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [174779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 5, + sym_word, + ACTIONS(1352), 24, 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_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, - [174822] = 3, - ACTIONS(3), 1, + [176074] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 5, + ACTIONS(1322), 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(1324), 24, 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, + [176119] = 20, 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(919), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, ACTIONS(7508), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_STAR_STAR, ACTIONS(7510), 1, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_TILDE, 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, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7506), 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(7484), 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, + [176198] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, anon_sym_AMP_AMP, + ACTIONS(7490), 1, anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(8091), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [176277] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8093), 1, + sym__special_character, + STATE(3269), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 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_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, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5904), 23, sym_file_descriptor, - sym__concat, 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_PIPE_AMP, + 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_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, - [175046] = 8, - ACTIONS(3), 1, + [176326] = 3, + ACTIONS(71), 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), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1346), 13, 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, - [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_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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1348), 24, + sym_file_descriptor, + sym__concat, + 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_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(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, + aux_sym_concatenation_token1, 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, - 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, + [176371] = 3, 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), 21, + ACTIONS(8097), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8095), 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_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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [176416] = 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(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(1318), 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(1320), 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, + [176460] = 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(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(7567), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [176536] = 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(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(1358), 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(1360), 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, + [176580] = 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(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(1354), 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(1356), 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, + [176624] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(7150), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(7170), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(7172), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(7184), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(7186), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(7188), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(8133), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(8135), 1, + anon_sym_esac, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6865), 1, aux_sym__literal_repeat1, - STATE(7196), 1, + STATE(7698), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(8145), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3691), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(7029), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(6788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226562,342 +233710,439 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [175800] = 24, + [176712] = 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(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(7569), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [176788] = 4, 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, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8077), 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(8079), 21, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176834] = 3, + 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), 30, + ACTIONS(8081), 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(8083), 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, + [176878] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 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, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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, + [176944] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, + [176988] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8168), 1, + anon_sym_LT_LT_LT, + ACTIONS(8173), 1, + sym_file_descriptor, + ACTIONS(8176), 1, + sym_variable_name, + STATE(7199), 1, + sym_subscript, + ACTIONS(8165), 2, 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, + STATE(3377), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3937), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8162), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(8157), 5, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, + ACTIONS(8159), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(8171), 13, 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, + [177050] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6376), 1, + ACTIONS(7778), 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(7776), 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, + [177094] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(8181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8183), 1, + anon_sym_AMP_AMP, + ACTIONS(8185), 1, + anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8205), 1, + anon_sym_QMARK, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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, + [177166] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, sym_word, - ACTIONS(6390), 1, + ACTIONS(7164), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(7170), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(7172), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6410), 1, + ACTIONS(7184), 1, sym_test_operator, - ACTIONS(6412), 1, + ACTIONS(7186), 1, sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(7188), 1, sym__brace_start, - ACTIONS(7506), 1, + ACTIONS(7344), 1, + anon_sym_esac, + ACTIONS(8133), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6347), 1, + STATE(6865), 1, aux_sym__literal_repeat1, - STATE(6830), 1, + STATE(7842), 1, sym_last_case_item, - ACTIONS(7516), 2, + ACTIONS(8145), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7524), 2, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3665), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6599), 2, + STATE(7029), 2, sym_concatenation, sym__extglob_blob, - STATE(6223), 9, + STATE(6788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -226907,1146 +234152,995 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [176268] = 3, - ACTIONS(3), 1, + [177254] = 19, + ACTIONS(71), 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, - 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, - [176311] = 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(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, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 30, + ACTIONS(7571), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 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(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [177330] = 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(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, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1326), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_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, + 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, + anon_sym_STAR_STAR, + ACTIONS(1328), 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, + [177374] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8215), 1, anon_sym_PIPE, + ACTIONS(8217), 1, + anon_sym_CARET, + ACTIONS(8219), 1, anon_sym_AMP, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(7938), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8211), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(8213), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8223), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 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(8229), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(8231), 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_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8209), 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, + [177444] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7940), 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(7942), 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, - 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, + [177488] = 19, + ACTIONS(71), 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(7573), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 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(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [177564] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 30, + ACTIONS(8181), 1, anon_sym_PIPE_PIPE, + ACTIONS(8183), 1, anon_sym_AMP_AMP, + ACTIONS(8185), 1, + anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8205), 1, + anon_sym_QMARK, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8237), 1, + anon_sym_EQ_TILDE, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 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, - [176759] = 3, - ACTIONS(3), 1, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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, + [177638] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 30, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7683), 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, - [176802] = 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_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 21, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7681), 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, + [177682] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(8183), 1, + anon_sym_AMP_AMP, + ACTIONS(8185), 1, anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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_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, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177750] = 14, + ACTIONS(71), 1, sym_comment, - 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, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(8185), 1, + anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 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, - [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, + ACTIONS(8199), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(8201), 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(7514), 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_PIPE, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177816] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(7541), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 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, - [176951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1254), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 30, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177880] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 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, - [176994] = 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(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(8199), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7541), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8201), 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_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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_PIPE, - anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177942] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 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, - [177131] = 5, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7514), 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178002] = 10, 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(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8193), 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(5266), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 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, - [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, - 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, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 4, + 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, - [177255] = 5, + ACTIONS(7514), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178060] = 3, 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(7946), 13, + 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, - 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, - [177301] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7948), 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, + [178104] = 8, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5268), 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(5270), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8197), 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, - [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, + ACTIONS(8199), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(8201), 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_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7514), 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, + [178158] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 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_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, + ACTIONS(7514), 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, + [178210] = 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, + ACTIONS(1338), 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(1225), 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, - [177445] = 21, - ACTIONS(3), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1340), 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, + [178254] = 17, + 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(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(7541), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, 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(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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_RBRACK, + anon_sym_EQ_TILDE, + [178326] = 19, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 11, + ACTIONS(7575), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [178402] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, anon_sym_DOLLAR, + ACTIONS(7170), 1, aux_sym_number_token1, + ACTIONS(7172), 1, aux_sym_number_token2, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4439), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7184), 1, sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 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, - 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7619), 1, - sym_word, - ACTIONS(7622), 1, + ACTIONS(7292), 1, + anon_sym_esac, + ACTIONS(8133), 1, anon_sym_LPAREN, - ACTIONS(7625), 1, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7628), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7631), 1, - anon_sym_DOLLAR, - ACTIONS(7634), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(7637), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(7643), 1, - aux_sym_number_token1, - ACTIONS(7646), 1, - aux_sym_number_token2, - ACTIONS(7649), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7655), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(7658), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7664), 1, - sym_test_operator, - ACTIONS(7667), 1, - sym_extglob_pattern, - ACTIONS(7670), 1, - sym__brace_start, - STATE(6278), 1, + STATE(6865), 1, aux_sym__literal_repeat1, - ACTIONS(7640), 2, + STATE(7809), 1, + sym_last_case_item, + ACTIONS(8145), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7661), 2, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, + STATE(3657), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6513), 2, + STATE(7029), 2, sym_concatenation, sym__extglob_blob, - STATE(6152), 9, + STATE(6788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -228056,136 +235150,344 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [177651] = 5, + [178490] = 6, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 11, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 10, + 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(5132), 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, - [177697] = 5, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7514), 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, + [178540] = 19, ACTIONS(71), 1, sym_comment, - STATE(3359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7673), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 11, + ACTIONS(7577), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [178616] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7541), 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(7514), 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, + [178664] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7541), 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(7514), 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, + [178710] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7579), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [178786] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, + [178830] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, anon_sym_DOLLAR, + ACTIONS(7170), 1, aux_sym_number_token1, + ACTIONS(7172), 1, aux_sym_number_token2, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7184), 1, sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 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, - 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, + ACTIONS(7298), 1, + anon_sym_esac, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7682), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7685), 1, - anon_sym_DOLLAR, - ACTIONS(7688), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(7691), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(7694), 1, - aux_sym_number_token1, - ACTIONS(7697), 1, - aux_sym_number_token2, - ACTIONS(7700), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7706), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(7709), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7715), 1, - sym_test_operator, - ACTIONS(7718), 1, - sym__brace_start, - STATE(4982), 1, + STATE(6865), 1, aux_sym__literal_repeat1, - ACTIONS(7712), 2, + STATE(7839), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3360), 2, + STATE(3659), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 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__extglob_blob, + STATE(6788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -228195,102 +235497,163 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [177821] = 5, + [178918] = 19, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 11, + ACTIONS(7581), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 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(2158), 20, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 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, - [177867] = 6, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [178994] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7603), 1, + ACTIONS(7767), 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(7765), 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, + [179038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8239), 1, aux_sym_concatenation_token1, - ACTIONS(7721), 1, + ACTIONS(8241), 1, sym__concat, - STATE(3359), 1, + STATE(3585), 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, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1229), 20, + ACTIONS(5904), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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, - [177915] = 5, + sym_word, + [179088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, - sym__special_character, - STATE(3363), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(8239), 1, + aux_sym_concatenation_token1, + ACTIONS(8241), 1, + sym__concat, + STATE(3594), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 28, + ACTIONS(5906), 29, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -228307,6 +235670,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, @@ -228319,95 +235683,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [177961] = 5, + [179138] = 19, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 11, + ACTIONS(7583), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [179214] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7687), 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(7685), 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, + [179258] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(7541), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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, + [179322] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7585), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [179398] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, anon_sym_DOLLAR, + ACTIONS(7170), 1, aux_sym_number_token1, + ACTIONS(7172), 1, aux_sym_number_token2, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4282), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7184), 1, sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 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(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, sym__special_character, + ACTIONS(8143), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8243), 1, + anon_sym_esac, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(8127), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, 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, - 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(7728), 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, + STATE(3660), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 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(6788), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -228417,840 +235952,17207 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [178085] = 20, - ACTIONS(3), 1, + [179486] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(7732), 1, + ACTIONS(7476), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, 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, + ACTIONS(8103), 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, + [179562] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, anon_sym_DOLLAR, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(7170), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(7172), 1, aux_sym_number_token2, - ACTIONS(3568), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(7176), 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, + ACTIONS(7184), 1, sym_test_operator, - ACTIONS(7756), 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(7754), 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, - [178239] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7758), 1, - sym_word, - ACTIONS(7760), 1, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, anon_sym_LPAREN, - ACTIONS(7762), 1, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7764), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7766), 1, - anon_sym_DOLLAR, - ACTIONS(7768), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(7770), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(7778), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7780), 1, - anon_sym_RBRACE3, - ACTIONS(7782), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(7786), 1, + ACTIONS(8151), 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, + ACTIONS(8245), 1, + anon_sym_esac, + STATE(6865), 1, aux_sym__literal_repeat1, - ACTIONS(7772), 2, + STATE(7800), 1, + sym_last_case_item, + ACTIONS(8145), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7788), 2, + ACTIONS(8153), 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(3661), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, sym_number, - sym__concatenation_in_expansion, - [178325] = 5, - ACTIONS(3), 1, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179650] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(7798), 1, - sym__special_character, - STATE(3363), 1, - aux_sym__literal_repeat1, - ACTIONS(5132), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 28, + ACTIONS(7587), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 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, - 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, - [178371] = 25, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [179726] = 3, 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, + ACTIONS(7771), 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(7769), 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, + [179770] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [179814] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, anon_sym_DOLLAR, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(7770), 1, - anon_sym_DQUOTE, - ACTIONS(7774), 1, + ACTIONS(7170), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(7172), 1, aux_sym_number_token2, - ACTIONS(7778), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7782), 1, + ACTIONS(7176), 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, + ACTIONS(7184), 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, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, anon_sym_LPAREN, - ACTIONS(7762), 1, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7764), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7766), 1, - anon_sym_DOLLAR, - ACTIONS(7768), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(7770), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(7774), 1, - aux_sym_number_token1, - ACTIONS(7776), 1, - aux_sym_number_token2, - ACTIONS(7778), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7782), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7784), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(7786), 1, + ACTIONS(8151), 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, + ACTIONS(8247), 1, + anon_sym_esac, + STATE(6865), 1, aux_sym__literal_repeat1, - ACTIONS(7788), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7812), 2, + STATE(7701), 1, + sym_last_case_item, + ACTIONS(8145), 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, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3693), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, sym_number, - sym__concatenation_in_expansion, - [178543] = 6, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179902] = 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(7747), 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(1209), 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, - [178591] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7745), 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, + [179946] = 3, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 11, + ACTIONS(1350), 13, + 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(5136), 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, - [178637] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1352), 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, + [179990] = 19, ACTIONS(71), 1, sym_comment, - STATE(3372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 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(2162), 20, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7531), 1, + anon_sym_STAR_STAR, + ACTIONS(7533), 1, sym_test_operator, - sym__brace_start, + ACTIONS(7695), 1, + anon_sym_EQ, + ACTIONS(7697), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7699), 1, + anon_sym_AMP_AMP, + ACTIONS(7701), 1, + anon_sym_PIPE, + ACTIONS(7703), 1, + anon_sym_CARET, + ACTIONS(7705), 1, + anon_sym_AMP, + ACTIONS(7713), 1, + anon_sym_EQ_TILDE, + ACTIONS(8251), 1, + anon_sym_QMARK, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7525), 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, - [178683] = 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(7527), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7707), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7709), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7529), 3, 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, + ACTIONS(8249), 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, + [180066] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, anon_sym_AMP_AMP, + ACTIONS(8109), 1, anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 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, - [178735] = 5, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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, + [180140] = 3, ACTIONS(71), 1, sym_comment, - STATE(3362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7603), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4307), 11, + ACTIONS(7747), 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(4309), 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, - [178781] = 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_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7745), 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), 20, - anon_sym_SEMI, + [180184] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7589), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, anon_sym_AMP_AMP, + ACTIONS(8109), 1, anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 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, - [178833] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, 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, - 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(8103), 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, + [180260] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 11, + ACTIONS(7430), 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(1314), 22, - sym_file_descriptor, - sym__concat, - 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, - 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7428), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180304] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 11, + ACTIONS(1334), 13, + 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(1310), 22, - sym_file_descriptor, - sym__concat, - 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, - 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, - [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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1336), 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, + [180348] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 11, + ACTIONS(7439), 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(1262), 22, - sym_file_descriptor, - sym__concat, - 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, - 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, - [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_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1270), 22, - sym_file_descriptor, - sym__concat, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7437), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180392] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7545), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [180468] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [180512] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(1352), 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, + [180556] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [180600] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8038), 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(8040), 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, + [180644] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [180688] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8257), 1, + anon_sym_PIPE, + ACTIONS(8259), 1, + anon_sym_CARET, + ACTIONS(8261), 1, + anon_sym_AMP, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8253), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(8255), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8263), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [180756] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8257), 1, + anon_sym_PIPE, + ACTIONS(8259), 1, + anon_sym_CARET, + ACTIONS(8261), 1, + anon_sym_AMP, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8255), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8263), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [180822] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8257), 1, + anon_sym_PIPE, + ACTIONS(8259), 1, + anon_sym_CARET, + ACTIONS(8261), 1, + anon_sym_AMP, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8263), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [180886] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8001), 1, + anon_sym_PIPE, + ACTIONS(8259), 1, + anon_sym_CARET, + ACTIONS(8261), 1, + anon_sym_AMP, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8263), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [180950] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7591), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [181026] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8261), 1, + anon_sym_AMP, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8001), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8263), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [181088] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8263), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8001), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [181148] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8001), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 19, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [181206] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1249), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [181260] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8003), 21, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181314] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 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(8003), 21, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181366] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(1340), 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, + [181410] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 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(8003), 21, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181460] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8283), 1, + sym__special_character, + STATE(3642), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 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(5904), 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, + [181508] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8001), 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(8003), 21, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181556] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8001), 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(8003), 21, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181604] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7940), 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(7942), 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, + [181648] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7364), 1, + anon_sym_esac, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7908), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3688), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181736] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7593), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [181812] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7683), 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(7681), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181856] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1237), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [181910] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7687), 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(7685), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181954] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7735), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7733), 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, + [182008] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8095), 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(8097), 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, + [182052] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7693), 1, + anon_sym_EQ, + ACTIONS(8181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8183), 1, + anon_sym_AMP_AMP, + ACTIONS(8185), 1, + anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7691), 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, + [182122] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7735), 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(7733), 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, + [182168] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7741), 1, + anon_sym_EQ, + ACTIONS(8285), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8287), 1, + anon_sym_AMP_AMP, + ACTIONS(8289), 1, + anon_sym_PIPE, + ACTIONS(8291), 1, + anon_sym_CARET, + ACTIONS(8293), 1, + anon_sym_AMP, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7743), 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, + [182240] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7541), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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, + [182302] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [182378] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7597), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [182454] = 3, + ACTIONS(71), 1, + sym_comment, + 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, + anon_sym_STAR_STAR, + ACTIONS(1320), 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, + [182498] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7735), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7733), 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, + [182552] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7739), 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(7737), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182596] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7599), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [182672] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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, + [182716] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7224), 1, + anon_sym_esac, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7638), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3675), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [182804] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7601), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [182880] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7603), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [182956] = 3, + ACTIONS(71), 1, + sym_comment, + 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, + anon_sym_STAR_STAR, + ACTIONS(1320), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183000] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183076] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(1364), 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, + [183120] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183196] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7609), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183272] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7541), 1, + anon_sym_EQ, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7514), 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, + [183340] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183416] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7535), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183492] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8183), 1, + anon_sym_AMP_AMP, + ACTIONS(8185), 1, + anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8205), 1, + anon_sym_QMARK, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8237), 1, + anon_sym_EQ_TILDE, + ACTIONS(8313), 1, + anon_sym_RPAREN, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8311), 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, + [183568] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7615), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183644] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7547), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183720] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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, + [183764] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7617), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [183840] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1249), 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, + [183894] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 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(1273), 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, + [183938] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7619), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [184014] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184058] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 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(1356), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184102] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7519), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [184178] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 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(1356), 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, + [184222] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [184298] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(1328), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8315), 1, + aux_sym_concatenation_token1, + ACTIONS(8318), 1, + sym__concat, + STATE(3498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, + [184392] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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, + 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, + [184436] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184480] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7623), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [184556] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1237), 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, + [184610] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7625), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [184686] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7230), 1, + anon_sym_esac, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7643), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3686), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [184774] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7627), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [184850] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 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(1336), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184894] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(1340), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184938] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(1328), 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, + [184982] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185026] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7629), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [185102] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(1352), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185146] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185190] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7514), 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, + [185250] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(1364), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185294] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7631), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [185370] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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(1332), 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, + [185414] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7551), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [185490] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7633), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [185566] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7635), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [185642] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7541), 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(7514), 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, + [185690] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7637), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [185766] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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, + 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, + [185810] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [185886] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8038), 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(8040), 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, + [185930] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7641), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186006] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8215), 1, + anon_sym_PIPE, + ACTIONS(8217), 1, + anon_sym_CARET, + ACTIONS(8219), 1, + anon_sym_AMP, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8211), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(8213), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8223), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [186074] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7643), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186150] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8215), 1, + anon_sym_PIPE, + ACTIONS(8217), 1, + anon_sym_CARET, + ACTIONS(8219), 1, + anon_sym_AMP, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8213), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8223), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [186216] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7645), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186292] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8215), 1, + anon_sym_PIPE, + ACTIONS(8217), 1, + anon_sym_CARET, + ACTIONS(8219), 1, + anon_sym_AMP, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8223), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [186356] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7553), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186432] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7647), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186508] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8001), 1, + anon_sym_PIPE, + ACTIONS(8217), 1, + anon_sym_CARET, + ACTIONS(8219), 1, + anon_sym_AMP, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8223), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [186572] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7541), 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(7514), 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, + [186618] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7649), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186694] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(1251), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1249), 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, + [186748] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7651), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186824] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(1245), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1237), 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, + [186878] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7653), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [186954] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8219), 1, + anon_sym_AMP, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8001), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8223), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [187016] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7655), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [187092] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8223), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8001), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [187152] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7657), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [187228] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8223), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8225), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8001), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8003), 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, + [187286] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7555), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [187362] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1318), 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(1320), 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, + [187406] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7659), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [187482] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8003), 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, + [187536] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7514), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187594] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7661), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [187670] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7767), 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(7765), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187714] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(1328), 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, + [187758] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7771), 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(7769), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187802] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7747), 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(7745), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187846] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7747), 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(7745), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187890] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8229), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 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(8003), 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, + [187942] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7663), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188018] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8231), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8001), 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(8003), 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, + [188068] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7665), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188144] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8001), 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(8003), 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, + [188192] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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(1332), 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, + [188236] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7667), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188312] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_STAR_STAR, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8001), 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(8003), 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, + [188360] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + ACTIONS(8325), 1, + sym_variable_name, + STATE(5079), 1, + sym_string, + ACTIONS(8323), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8321), 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(1249), 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, + [188414] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7778), 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(7776), 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [188458] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188534] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7557), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188610] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + ACTIONS(8325), 1, + sym_variable_name, + STATE(5079), 1, + sym_string, + ACTIONS(8323), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8321), 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(1237), 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, + [188664] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 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(1356), 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, + [188708] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7671), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188784] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7673), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188860] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7677), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [188936] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8081), 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(8083), 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, + [188980] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7559), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [189056] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7679), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [189132] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7439), 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(7437), 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, + [189176] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(8329), 1, + anon_sym_DQUOTE, + ACTIONS(8333), 1, + sym_variable_name, + STATE(4937), 1, + sym_string, + ACTIONS(8331), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8327), 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(1249), 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, + [189230] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(8329), 1, + anon_sym_DQUOTE, + ACTIONS(8333), 1, + sym_variable_name, + STATE(4937), 1, + sym_string, + ACTIONS(8331), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8327), 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(1237), 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, + [189284] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [189328] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8095), 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(8097), 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, + [189372] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7693), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7691), 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, + [189442] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(1352), 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, + [189486] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 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(1273), 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, + [189530] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7514), 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, + [189584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8239), 1, + aux_sym_concatenation_token1, + ACTIONS(8335), 1, + sym__concat, + STATE(3498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [189634] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7561), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [189710] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [189754] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7756), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [189830] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 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(1273), 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, + [189874] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, + [189918] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 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(7514), 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, + [189970] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8183), 1, + anon_sym_AMP_AMP, + ACTIONS(8185), 1, + anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8205), 1, + anon_sym_QMARK, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8237), 1, + anon_sym_EQ_TILDE, + ACTIONS(8337), 1, + anon_sym_RPAREN, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8311), 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, + [190046] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7563), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [190122] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8239), 1, + aux_sym_concatenation_token1, + ACTIONS(8339), 1, + sym__concat, + STATE(3498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [190172] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7539), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [190248] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8341), 1, + anon_sym_esac, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7845), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3706), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190336] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 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, + [190390] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(8251), 1, + anon_sym_QMARK, + ACTIONS(8285), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8287), 1, + anon_sym_AMP_AMP, + ACTIONS(8289), 1, + anon_sym_PIPE, + ACTIONS(8291), 1, + anon_sym_CARET, + ACTIONS(8293), 1, + anon_sym_AMP, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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, + [190464] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8251), 1, + anon_sym_QMARK, + ACTIONS(8285), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8287), 1, + anon_sym_AMP_AMP, + ACTIONS(8289), 1, + anon_sym_PIPE, + ACTIONS(8291), 1, + anon_sym_CARET, + ACTIONS(8293), 1, + anon_sym_AMP, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(8343), 1, + anon_sym_EQ, + ACTIONS(8345), 1, + anon_sym_EQ_TILDE, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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, + [190540] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(8287), 1, + anon_sym_AMP_AMP, + ACTIONS(8289), 1, + anon_sym_PIPE, + ACTIONS(8291), 1, + anon_sym_CARET, + ACTIONS(8293), 1, + anon_sym_AMP, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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, + [190610] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7399), 1, + anon_sym_EQ, + ACTIONS(8289), 1, + anon_sym_PIPE, + ACTIONS(8291), 1, + anon_sym_CARET, + ACTIONS(8293), 1, + anon_sym_AMP, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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, + [190678] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8291), 1, + anon_sym_CARET, + ACTIONS(8293), 1, + anon_sym_AMP, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7399), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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, + [190744] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8293), 1, + anon_sym_AMP, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7399), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7401), 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, + [190808] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8295), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 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, + [190870] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8297), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8299), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7401), 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, + [190930] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7401), 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, + [190986] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 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(7401), 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, + [191038] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7399), 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(7401), 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, + [191088] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 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(7401), 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, + [191136] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7399), 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(7401), 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, + [191184] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(8347), 1, + anon_sym_COLON, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [191260] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7430), 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(7428), 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, + [191304] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7156), 1, + anon_sym_esac, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7566), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3680), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191392] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(7192), 1, + anon_sym_esac, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7575), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3681), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191480] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7749), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [191556] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(8309), 1, + sym_test_operator, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 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, + [191612] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 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, + [191666] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8307), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8301), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8303), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8305), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7418), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7422), 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, + [191720] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 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(1336), 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, + [191764] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8349), 1, + anon_sym_esac, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7664), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3682), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191852] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8351), 1, + anon_sym_esac, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7667), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3684), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191940] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7541), 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(7514), 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, + [191990] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7565), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [192066] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 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(1336), 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, + [192110] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8353), 1, + anon_sym_esac, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7808), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3647), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192198] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(1340), 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, + [192242] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8257), 1, + anon_sym_PIPE, + ACTIONS(8259), 1, + anon_sym_CARET, + ACTIONS(8261), 1, + anon_sym_AMP, + ACTIONS(8275), 1, + anon_sym_STAR_STAR, + ACTIONS(7938), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(8155), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8253), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(8255), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8263), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8265), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8267), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8269), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8271), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8273), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8355), 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, + [192312] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7940), 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(7942), 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, + [192356] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7946), 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(7948), 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, + [192400] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7940), 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(7942), 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, + [192444] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7735), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7733), 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, + [192498] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(8357), 1, + anon_sym_COLON, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [192574] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7735), 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(7733), 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, + [192620] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7735), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7733), 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, + [192674] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7739), 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(7737), 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, + [192718] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(1364), 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, + [192762] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1249), 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, + [192816] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(1364), 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, + [192860] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(7810), 1, + anon_sym_COMMA, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [192936] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1237), 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, + [192990] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7780), 1, + anon_sym_RBRACK, + ACTIONS(8099), 1, + anon_sym_EQ, + ACTIONS(8105), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8107), 1, + anon_sym_AMP_AMP, + ACTIONS(8109), 1, + anon_sym_PIPE, + ACTIONS(8111), 1, + anon_sym_CARET, + ACTIONS(8113), 1, + anon_sym_AMP, + ACTIONS(8127), 1, + anon_sym_STAR_STAR, + ACTIONS(8129), 1, + anon_sym_EQ_TILDE, + ACTIONS(8131), 1, + anon_sym_QMARK, + ACTIONS(8101), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8115), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8117), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8119), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8121), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8123), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8125), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8103), 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, + [193066] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8359), 1, + sym__special_character, + STATE(3642), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 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, + [193114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8239), 1, + aux_sym_concatenation_token1, + ACTIONS(8241), 1, + sym__concat, + STATE(3585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [193164] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7480), 1, + anon_sym_EQ, + ACTIONS(7486), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7488), 1, + anon_sym_AMP_AMP, + ACTIONS(7490), 1, + anon_sym_PIPE, + ACTIONS(7492), 1, + anon_sym_CARET, + ACTIONS(7494), 1, + anon_sym_AMP, + ACTIONS(7508), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + anon_sym_EQ_TILDE, + ACTIONS(7512), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, + anon_sym_COLON, + ACTIONS(7482), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7496), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7500), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7502), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7504), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7506), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7484), 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, + [193240] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8181), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8183), 1, + anon_sym_AMP_AMP, + ACTIONS(8185), 1, + anon_sym_PIPE, + ACTIONS(8187), 1, + anon_sym_CARET, + ACTIONS(8189), 1, + anon_sym_AMP, + ACTIONS(8203), 1, + anon_sym_STAR_STAR, + ACTIONS(8205), 1, + anon_sym_QMARK, + ACTIONS(8235), 1, + anon_sym_EQ, + ACTIONS(8237), 1, + anon_sym_EQ_TILDE, + ACTIONS(8364), 1, + anon_sym_RPAREN, + ACTIONS(8179), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8191), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8195), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8197), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8199), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8201), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8311), 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, + [193316] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8207), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8077), 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(8079), 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, + [193362] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7814), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 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, + [193490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 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, + [193533] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7809), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193618] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7839), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193703] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7908), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193788] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7842), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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, + [193916] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1249), 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_BQUOTE, + [193969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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, + [194012] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(8127), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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, + [194140] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7800), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194225] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7885), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194310] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7891), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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, + [194438] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(1251), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1249), 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, + [194491] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7638), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194576] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7845), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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, + [194704] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1249), 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, + [194757] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7566), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194842] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1237), 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, + [194895] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7575), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, + [195023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 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, + [195066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, + [195109] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7643), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195194] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7698), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195279] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1237), 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_BQUOTE, + [195332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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, + [195375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, + [195418] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1249), 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_BQUOTE, + [195471] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7664), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195556] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7667), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195641] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7680), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195726] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1249), 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, + [195779] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7681), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195864] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1237), 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_BQUOTE, + [195917] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7701), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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, + [196045] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7808), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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, + [196173] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1249), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [196226] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7743), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, + [196354] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7744), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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, + [196482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 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, + [196525] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1249), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [196578] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(1251), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1249), 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, + [196631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(1245), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1237), 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, + [196684] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(1245), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1237), 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, + [196737] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1237), 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, + [196790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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, + [196833] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1237), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [196886] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1237), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [196939] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 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(1273), 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, + [196982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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, + [197025] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7150), 1, + sym_word, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7184), 1, + sym_test_operator, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8133), 1, + anon_sym_LPAREN, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6865), 1, + aux_sym__literal_repeat1, + STATE(7506), 1, + sym_last_case_item, + ACTIONS(8145), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7029), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6788), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197110] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8380), 1, + sym__special_character, + STATE(3707), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [197156] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2180), 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(2182), 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, + [197202] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8387), 1, + anon_sym_SLASH, + ACTIONS(8389), 1, + anon_sym_PERCENT, + ACTIONS(8391), 1, + anon_sym_COLON, + ACTIONS(8395), 1, + anon_sym_RBRACE3, + ACTIONS(8397), 1, + anon_sym_AT, + ACTIONS(8399), 1, + anon_sym_STAR2, + STATE(6859), 1, + aux_sym__expansion_body_repeat1, + STATE(7331), 1, + sym__expansion_expression, + STATE(7340), 1, + sym__expansion_regex, + STATE(7401), 1, + sym__expansion_regex_replacement, + STATE(7402), 1, + sym__expansion_regex_removal, + STATE(7404), 1, + sym__expansion_max_length, + STATE(7410), 1, + sym__expansion_operator, + ACTIONS(8385), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8405), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8393), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8403), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8401), 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, + [197278] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8409), 1, + sym_word, + ACTIONS(8412), 1, + anon_sym_LPAREN, + ACTIONS(8415), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8418), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(8424), 1, + sym__special_character, + ACTIONS(8427), 1, + anon_sym_DQUOTE, + ACTIONS(8433), 1, + aux_sym_number_token1, + ACTIONS(8436), 1, + aux_sym_number_token2, + ACTIONS(8439), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8442), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8445), 1, + anon_sym_BQUOTE, + ACTIONS(8448), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8454), 1, + sym_test_operator, + ACTIONS(8457), 1, + sym_extglob_pattern, + ACTIONS(8460), 1, + sym__brace_start, + STATE(6914), 1, + aux_sym__literal_repeat1, + ACTIONS(8430), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8451), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3710), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(7136), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6808), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197360] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8463), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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(1263), 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, + [197406] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(8470), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8472), 1, + sym__special_character, + ACTIONS(8474), 1, + sym_test_operator, + STATE(5470), 1, + aux_sym__literal_repeat1, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(8466), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(8468), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197484] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3730), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5052), 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(5054), 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, + [197530] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5056), 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(5058), 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, + [197576] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(8472), 1, + sym__special_character, + ACTIONS(8474), 1, + sym_test_operator, + ACTIONS(8478), 1, + aux_sym_heredoc_redirect_token1, + STATE(5470), 1, + aux_sym__literal_repeat1, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(8466), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(8476), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197654] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8480), 1, + sym_word, + ACTIONS(8482), 1, + anon_sym_LPAREN, + ACTIONS(8484), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8488), 1, + anon_sym_DOLLAR, + ACTIONS(8490), 1, + sym__special_character, + ACTIONS(8492), 1, + anon_sym_DQUOTE, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(8500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8502), 1, + anon_sym_RBRACE3, + ACTIONS(8504), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8506), 1, + anon_sym_BQUOTE, + ACTIONS(8508), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8512), 1, + sym_variable_name, + ACTIONS(8514), 1, + sym_test_operator, + ACTIONS(8516), 1, + sym__expansion_word, + ACTIONS(8518), 1, + sym__brace_start, + STATE(6825), 1, + sym_command_substitution, + STATE(6973), 1, + aux_sym__literal_repeat1, + ACTIONS(8494), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8510), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6898), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(7272), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [197740] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5726), 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(5728), 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, + [197786] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3730), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5902), 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(5904), 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, + [197832] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5906), 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(5908), 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, + [197878] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8523), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8526), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8529), 1, + anon_sym_DOLLAR, + ACTIONS(8532), 1, + sym__special_character, + ACTIONS(8535), 1, + anon_sym_DQUOTE, + ACTIONS(8538), 1, + aux_sym_number_token1, + ACTIONS(8541), 1, + aux_sym_number_token2, + ACTIONS(8544), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8547), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8550), 1, + anon_sym_BQUOTE, + ACTIONS(8553), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8559), 1, + sym_test_operator, + ACTIONS(8562), 1, + sym__brace_start, + STATE(5470), 1, + aux_sym__literal_repeat1, + ACTIONS(8556), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2187), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8520), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197956] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8383), 1, + aux_sym_concatenation_token1, + ACTIONS(8565), 1, + sym__concat, + STATE(3711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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, + [198004] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2176), 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(2178), 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, + [198050] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8482), 1, + anon_sym_LPAREN, + ACTIONS(8484), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8488), 1, + anon_sym_DOLLAR, + ACTIONS(8490), 1, + sym__special_character, + ACTIONS(8492), 1, + anon_sym_DQUOTE, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(8500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8504), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8506), 1, + anon_sym_BQUOTE, + ACTIONS(8508), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8512), 1, + sym_variable_name, + ACTIONS(8518), 1, + sym__brace_start, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_RBRACE3, + ACTIONS(8573), 1, + sym_test_operator, + ACTIONS(8575), 1, + sym__expansion_word, + STATE(6811), 1, + sym_command_substitution, + STATE(6994), 1, + aux_sym__literal_repeat1, + ACTIONS(8510), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8569), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6906), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(7265), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [198136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8577), 1, + sym__special_character, + STATE(3707), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [198182] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3730), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4941), 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(4943), 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, + [198228] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4945), 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(4947), 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, + [198274] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3730), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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(1273), 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, + [198320] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8482), 1, + anon_sym_LPAREN, + ACTIONS(8484), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8486), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8488), 1, + anon_sym_DOLLAR, + ACTIONS(8490), 1, + sym__special_character, + ACTIONS(8492), 1, + anon_sym_DQUOTE, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(8500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8504), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8506), 1, + anon_sym_BQUOTE, + ACTIONS(8508), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8512), 1, + sym_variable_name, + ACTIONS(8518), 1, + sym__brace_start, + ACTIONS(8579), 1, + sym_word, + ACTIONS(8583), 1, + anon_sym_RBRACE3, + ACTIONS(8585), 1, + sym_test_operator, + ACTIONS(8587), 1, + sym__expansion_word, + STATE(6809), 1, + sym_command_substitution, + STATE(6965), 1, + aux_sym__literal_repeat1, + ACTIONS(8510), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8581), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6874), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(7254), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [198406] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(8472), 1, + sym__special_character, + ACTIONS(8474), 1, + sym_test_operator, + ACTIONS(8591), 1, + aux_sym_heredoc_redirect_token1, + STATE(5470), 1, + aux_sym__literal_repeat1, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(8466), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(8589), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198484] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8383), 1, + aux_sym_concatenation_token1, + ACTIONS(8593), 1, + sym__concat, + STATE(3711), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(1283), 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, + [198532] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3730), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8383), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5722), 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(5724), 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, + [198578] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(8472), 1, + sym__special_character, + ACTIONS(8474), 1, + sym_test_operator, + ACTIONS(8597), 1, + aux_sym_heredoc_redirect_token1, + STATE(5470), 1, + aux_sym__literal_repeat1, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(8466), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(8595), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198656] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8599), 1, + sym_word, + ACTIONS(8601), 1, + anon_sym_LPAREN, + ACTIONS(8603), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8605), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8607), 1, + anon_sym_DOLLAR, + ACTIONS(8609), 1, + sym__special_character, + ACTIONS(8611), 1, + anon_sym_DQUOTE, + ACTIONS(8615), 1, + aux_sym_number_token1, + ACTIONS(8617), 1, + aux_sym_number_token2, + ACTIONS(8619), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8621), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8623), 1, + anon_sym_BQUOTE, + ACTIONS(8625), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8629), 1, + sym__comment_word, + ACTIONS(8631), 1, + sym__empty_value, + ACTIONS(8633), 1, + sym_test_operator, + ACTIONS(8635), 1, + sym__brace_start, + STATE(1529), 1, + aux_sym__literal_repeat1, + ACTIONS(8613), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8627), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1795), 2, + sym_concatenation, + sym_array, + STATE(1167), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198737] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8387), 1, + anon_sym_SLASH, + ACTIONS(8389), 1, + anon_sym_PERCENT, + ACTIONS(8391), 1, + anon_sym_COLON, + ACTIONS(8395), 1, + anon_sym_RBRACE3, + ACTIONS(8637), 1, + anon_sym_AT, + STATE(6883), 1, + aux_sym__expansion_body_repeat1, + STATE(7415), 1, + sym__expansion_expression, + STATE(7418), 1, + sym__expansion_regex, + STATE(7419), 1, + sym__expansion_regex_replacement, + STATE(7421), 1, + sym__expansion_regex_removal, + STATE(7422), 1, + sym__expansion_max_length, + STATE(7426), 1, + sym__expansion_operator, + ACTIONS(8385), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8405), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8393), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8403), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8401), 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, + [198810] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8387), 1, + anon_sym_SLASH, + ACTIONS(8389), 1, + anon_sym_PERCENT, + ACTIONS(8391), 1, + anon_sym_COLON, + ACTIONS(8637), 1, + anon_sym_AT, + ACTIONS(8639), 1, + anon_sym_RBRACE3, + STATE(6942), 1, + aux_sym__expansion_body_repeat1, + STATE(7551), 1, + sym__expansion_expression, + STATE(7554), 1, + sym__expansion_regex, + STATE(7569), 1, + sym__expansion_regex_replacement, + STATE(7761), 1, + sym__expansion_regex_removal, + STATE(7776), 1, + sym__expansion_max_length, + STATE(7840), 1, + sym__expansion_operator, + ACTIONS(8385), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8405), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8393), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8403), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8401), 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, + [198883] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1306), 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(1308), 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, + [198924] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(8645), 1, + sym_variable_name, + STATE(5353), 1, + sym_string, + ACTIONS(1245), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8643), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8641), 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(1237), 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, + [198975] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1302), 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(1304), 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, + [199016] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4501), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4503), 1, + anon_sym_DOLLAR, + ACTIONS(4505), 1, + sym__special_character, + ACTIONS(4507), 1, + anon_sym_DQUOTE, + ACTIONS(4511), 1, + aux_sym_number_token1, + ACTIONS(4513), 1, + aux_sym_number_token2, + ACTIONS(4515), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4517), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4519), 1, + anon_sym_BQUOTE, + ACTIONS(4521), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4531), 1, + sym__brace_start, + ACTIONS(8647), 1, + sym_word, + ACTIONS(8649), 1, + anon_sym_LPAREN, + ACTIONS(8653), 1, + sym__comment_word, + ACTIONS(8655), 1, + sym__empty_value, + ACTIONS(8657), 1, + sym_test_operator, + STATE(3092), 1, + aux_sym__literal_repeat1, + ACTIONS(4523), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8651), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(3158), 2, + sym_concatenation, + sym_array, + STATE(2761), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199097] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8659), 1, + sym_word, + ACTIONS(8661), 1, + anon_sym_LPAREN, + ACTIONS(8663), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8665), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8667), 1, + anon_sym_DOLLAR, + ACTIONS(8669), 1, + sym__special_character, + ACTIONS(8671), 1, + anon_sym_DQUOTE, + ACTIONS(8675), 1, + aux_sym_number_token1, + ACTIONS(8677), 1, + aux_sym_number_token2, + ACTIONS(8679), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8681), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8683), 1, + anon_sym_BQUOTE, + ACTIONS(8685), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8689), 1, + sym__comment_word, + ACTIONS(8691), 1, + sym__empty_value, + ACTIONS(8693), 1, + sym_test_operator, + ACTIONS(8695), 1, + sym__brace_start, + STATE(3814), 1, + aux_sym__literal_repeat1, + ACTIONS(8673), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8687), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4078), 2, + sym_concatenation, + sym_array, + STATE(3717), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199178] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2354), 1, + aux_sym_number_token1, + ACTIONS(2356), 1, + aux_sym_number_token2, + ACTIONS(2360), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(8697), 1, + sym_word, + ACTIONS(8699), 1, + anon_sym_LPAREN, + ACTIONS(8701), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8703), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8705), 1, + sym__special_character, + ACTIONS(8707), 1, + anon_sym_DQUOTE, + ACTIONS(8711), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8713), 1, + anon_sym_BQUOTE, + ACTIONS(8715), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8719), 1, + sym__comment_word, + ACTIONS(8721), 1, + sym__empty_value, + ACTIONS(8723), 1, + sym_test_operator, + STATE(2031), 1, + aux_sym__literal_repeat1, + ACTIONS(8709), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8717), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2247), 2, + sym_concatenation, + sym_array, + STATE(1465), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199259] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1322), 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(1324), 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, + [199300] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8725), 1, + sym_word, + ACTIONS(8727), 1, + anon_sym_LPAREN, + ACTIONS(8729), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8731), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8733), 1, + anon_sym_DOLLAR, + ACTIONS(8735), 1, + sym__special_character, + ACTIONS(8737), 1, + anon_sym_DQUOTE, + ACTIONS(8741), 1, + aux_sym_number_token1, + ACTIONS(8743), 1, + aux_sym_number_token2, + ACTIONS(8745), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8747), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8749), 1, + anon_sym_BQUOTE, + ACTIONS(8751), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8755), 1, + sym__comment_word, + ACTIONS(8757), 1, + sym__empty_value, + ACTIONS(8759), 1, + sym_test_operator, + ACTIONS(8761), 1, + sym__brace_start, + STATE(4747), 1, + aux_sym__literal_repeat1, + ACTIONS(8739), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8753), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4982), 2, + sym_concatenation, + sym_array, + STATE(4596), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199381] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8763), 1, + sym_word, + ACTIONS(8765), 1, + anon_sym_LPAREN, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8771), 1, + anon_sym_DOLLAR, + ACTIONS(8773), 1, + sym__special_character, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8793), 1, + sym__comment_word, + ACTIONS(8795), 1, + sym__empty_value, + ACTIONS(8797), 1, + sym_test_operator, + ACTIONS(8799), 1, + sym__brace_start, + STATE(4686), 1, + aux_sym__literal_repeat1, + ACTIONS(8777), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4887), 2, + sym_concatenation, + sym_array, + STATE(4925), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199462] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 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(1263), 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, + [199503] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 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(1336), 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, + [199544] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8801), 1, + sym_word, + ACTIONS(8803), 1, + anon_sym_LPAREN, + ACTIONS(8805), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8811), 1, + sym__special_character, + ACTIONS(8813), 1, + anon_sym_DQUOTE, + ACTIONS(8817), 1, + aux_sym_number_token1, + ACTIONS(8819), 1, + aux_sym_number_token2, + ACTIONS(8821), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8825), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8831), 1, + sym__comment_word, + ACTIONS(8833), 1, + sym__empty_value, + ACTIONS(8835), 1, + sym_test_operator, + ACTIONS(8837), 1, + sym__brace_start, + STATE(2020), 1, + aux_sym__literal_repeat1, + ACTIONS(8815), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8829), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2216), 2, + sym_concatenation, + sym_array, + STATE(1876), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199625] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8765), 1, + anon_sym_LPAREN, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8771), 1, + anon_sym_DOLLAR, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8793), 1, + sym__comment_word, + ACTIONS(8795), 1, + sym__empty_value, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(8839), 1, + sym_word, + ACTIONS(8841), 1, + sym__special_character, + ACTIONS(8845), 1, + sym_test_operator, + STATE(4686), 1, + aux_sym__literal_repeat1, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8843), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4887), 2, + sym_concatenation, + sym_array, + STATE(4786), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [199747] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1314), 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(1316), 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, + [199788] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, + [199829] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2354), 1, + aux_sym_number_token1, + ACTIONS(2356), 1, + aux_sym_number_token2, + ACTIONS(2360), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(8699), 1, + anon_sym_LPAREN, + ACTIONS(8701), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8703), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8707), 1, + anon_sym_DQUOTE, + ACTIONS(8711), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8713), 1, + anon_sym_BQUOTE, + ACTIONS(8715), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8719), 1, + sym__comment_word, + ACTIONS(8721), 1, + sym__empty_value, + ACTIONS(8847), 1, + sym_word, + ACTIONS(8849), 1, + sym__special_character, + ACTIONS(8853), 1, + sym_test_operator, + STATE(2031), 1, + aux_sym__literal_repeat1, + ACTIONS(8717), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8851), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2247), 2, + sym_concatenation, + sym_array, + STATE(1892), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199910] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1366), 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(1368), 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, + [199951] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8803), 1, + anon_sym_LPAREN, + ACTIONS(8805), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, + anon_sym_DQUOTE, + ACTIONS(8817), 1, + aux_sym_number_token1, + ACTIONS(8819), 1, + aux_sym_number_token2, + ACTIONS(8821), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8825), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8831), 1, + sym__comment_word, + ACTIONS(8833), 1, + sym__empty_value, + ACTIONS(8837), 1, + sym__brace_start, + ACTIONS(8855), 1, + sym_word, + ACTIONS(8857), 1, + sym__special_character, + ACTIONS(8861), 1, + sym_test_operator, + STATE(2020), 1, + aux_sym__literal_repeat1, + ACTIONS(8829), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8859), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2216), 2, + sym_concatenation, + sym_array, + 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, + [200032] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8863), 1, + sym_word, + ACTIONS(8865), 1, + anon_sym_LPAREN, + ACTIONS(8867), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8869), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8871), 1, + anon_sym_DOLLAR, + ACTIONS(8873), 1, + sym__special_character, + ACTIONS(8875), 1, + anon_sym_DQUOTE, + ACTIONS(8879), 1, + aux_sym_number_token1, + ACTIONS(8881), 1, + aux_sym_number_token2, + ACTIONS(8883), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8885), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8887), 1, + anon_sym_BQUOTE, + ACTIONS(8889), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8893), 1, + sym__comment_word, + ACTIONS(8895), 1, + sym__empty_value, + ACTIONS(8897), 1, + sym_test_operator, + ACTIONS(8899), 1, + sym__brace_start, + STATE(5873), 1, + aux_sym__literal_repeat1, + ACTIONS(8877), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8891), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6035), 2, + sym_concatenation, + sym_array, + STATE(5714), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200113] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1362), 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(1364), 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, + [200154] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1318), 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(1320), 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, + [200195] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(8645), 1, + sym_variable_name, + STATE(5353), 1, + sym_string, + ACTIONS(1251), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8643), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8641), 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(1249), 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, + [200246] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2382), 1, + anon_sym_DOLLAR, + ACTIONS(2388), 1, + aux_sym_number_token1, + ACTIONS(2390), 1, + aux_sym_number_token2, + ACTIONS(2394), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2408), 1, + sym__brace_start, + ACTIONS(8901), 1, + sym_word, + ACTIONS(8903), 1, + anon_sym_LPAREN, + ACTIONS(8905), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8907), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8909), 1, + sym__special_character, + ACTIONS(8911), 1, + anon_sym_DQUOTE, + ACTIONS(8915), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8917), 1, + anon_sym_BQUOTE, + ACTIONS(8919), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8923), 1, + sym__comment_word, + ACTIONS(8925), 1, + sym__empty_value, + ACTIONS(8927), 1, + sym_test_operator, + STATE(2038), 1, + aux_sym__literal_repeat1, + ACTIONS(8913), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8921), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2254), 2, + sym_concatenation, + sym_array, + STATE(1481), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200327] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8387), 1, + anon_sym_SLASH, + ACTIONS(8389), 1, + anon_sym_PERCENT, + ACTIONS(8391), 1, + anon_sym_COLON, + ACTIONS(8637), 1, + anon_sym_AT, + ACTIONS(8929), 1, + anon_sym_RBRACE3, + STATE(6909), 1, + aux_sym__expansion_body_repeat1, + STATE(7308), 1, + sym__expansion_expression, + STATE(7313), 1, + sym__expansion_regex, + STATE(7323), 1, + sym__expansion_regex_replacement, + STATE(7324), 1, + sym__expansion_regex_removal, + STATE(7325), 1, + sym__expansion_max_length, + STATE(7326), 1, + sym__expansion_operator, + ACTIONS(8385), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8405), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8393), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8403), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8401), 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, + [200400] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8931), 1, + sym_word, + ACTIONS(8933), 1, + anon_sym_LPAREN, + ACTIONS(8935), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8937), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8939), 1, + anon_sym_DOLLAR, + ACTIONS(8941), 1, + sym__special_character, + ACTIONS(8943), 1, + anon_sym_DQUOTE, + ACTIONS(8947), 1, + aux_sym_number_token1, + ACTIONS(8949), 1, + aux_sym_number_token2, + ACTIONS(8951), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8953), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8955), 1, + anon_sym_BQUOTE, + ACTIONS(8957), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8961), 1, + sym__comment_word, + ACTIONS(8963), 1, + sym__empty_value, + ACTIONS(8965), 1, + sym_test_operator, + ACTIONS(8967), 1, + sym__brace_start, + STATE(2110), 1, + aux_sym__literal_repeat1, + ACTIONS(8945), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8959), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2433), 2, + sym_concatenation, + sym_array, + STATE(1533), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200481] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [200522] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 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(1352), 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, + [200563] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8765), 1, + anon_sym_LPAREN, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8771), 1, + anon_sym_DOLLAR, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8793), 1, + sym__comment_word, + ACTIONS(8795), 1, + sym__empty_value, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(8969), 1, + sym_word, + ACTIONS(8971), 1, + sym__special_character, + ACTIONS(8975), 1, + sym_test_operator, + STATE(4686), 1, + aux_sym__literal_repeat1, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8973), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4887), 2, + sym_concatenation, + sym_array, + STATE(4854), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200644] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 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(1348), 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, + [200685] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8765), 1, + anon_sym_LPAREN, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8771), 1, + anon_sym_DOLLAR, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8793), 1, + sym__comment_word, + ACTIONS(8795), 1, + sym__empty_value, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(8977), 1, + sym_word, + ACTIONS(8979), 1, + sym__special_character, + ACTIONS(8983), 1, + sym_test_operator, + STATE(4686), 1, + aux_sym__literal_repeat1, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8981), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4887), 2, + sym_concatenation, + sym_array, + STATE(4891), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200766] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1338), 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(1340), 22, + sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -229271,55 +253173,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [179151] = 23, + [200807] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7862), 1, + ACTIONS(8985), 1, sym_word, - ACTIONS(7864), 1, + ACTIONS(8987), 1, anon_sym_LPAREN, - ACTIONS(7866), 1, + ACTIONS(8989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(8991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(8993), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, + ACTIONS(8995), 1, sym__special_character, - ACTIONS(7874), 1, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(9001), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(9003), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7892), 1, + ACTIONS(9015), 1, sym__comment_word, - ACTIONS(7894), 1, + ACTIONS(9017), 1, sym__empty_value, - ACTIONS(7896), 1, + ACTIONS(9019), 1, sym_test_operator, - ACTIONS(7898), 1, + ACTIONS(9021), 1, sym__brace_start, - STATE(1819), 1, + STATE(3091), 1, aux_sym__literal_repeat1, - ACTIONS(7876), 2, + ACTIONS(8999), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7890), 2, + ACTIONS(9013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2036), 2, + STATE(3201), 2, sym_concatenation, sym_array, - STATE(1363), 9, + STATE(2666), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229329,106 +253231,456 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179232] = 19, + [200888] = 23, 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, + ACTIONS(2312), 1, + anon_sym_DOLLAR, + ACTIONS(2318), 1, + aux_sym_number_token1, + ACTIONS(2320), 1, + aux_sym_number_token2, + ACTIONS(2324), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2338), 1, + sym__brace_start, + ACTIONS(9023), 1, + sym_word, + ACTIONS(9025), 1, + anon_sym_LPAREN, + ACTIONS(9027), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9029), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9031), 1, + sym__special_character, + ACTIONS(9033), 1, + anon_sym_DQUOTE, + ACTIONS(9037), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9039), 1, + anon_sym_BQUOTE, + ACTIONS(9041), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9045), 1, + sym__comment_word, + ACTIONS(9047), 1, + sym__empty_value, + ACTIONS(9049), 1, + sym_test_operator, + STATE(1946), 1, + aux_sym__literal_repeat1, + ACTIONS(9035), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9043), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2551), 2, + sym_concatenation, + sym_array, + STATE(1642), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200969] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 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(1328), 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, + [201010] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9051), 1, + sym_word, + ACTIONS(9053), 1, + anon_sym_LPAREN, + ACTIONS(9055), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9057), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9059), 1, + anon_sym_DOLLAR, + ACTIONS(9061), 1, + sym__special_character, + ACTIONS(9063), 1, + anon_sym_DQUOTE, + ACTIONS(9067), 1, + aux_sym_number_token1, + ACTIONS(9069), 1, + aux_sym_number_token2, + ACTIONS(9071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9075), 1, + anon_sym_BQUOTE, + ACTIONS(9077), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9081), 1, + sym__comment_word, + ACTIONS(9083), 1, + sym__empty_value, + ACTIONS(9085), 1, + sym_test_operator, + ACTIONS(9087), 1, + sym__brace_start, + STATE(1686), 1, + aux_sym__literal_repeat1, + ACTIONS(9065), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9079), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2101), 2, + sym_concatenation, + sym_array, + STATE(1350), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201091] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 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(1332), 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, + [201132] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9089), 1, + sym_word, + ACTIONS(9091), 1, + anon_sym_LPAREN, + ACTIONS(9093), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9095), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9097), 1, + anon_sym_DOLLAR, + ACTIONS(9099), 1, + sym__special_character, + ACTIONS(9101), 1, + anon_sym_DQUOTE, + ACTIONS(9105), 1, + aux_sym_number_token1, + ACTIONS(9107), 1, + aux_sym_number_token2, + ACTIONS(9109), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9111), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9113), 1, + anon_sym_BQUOTE, + ACTIONS(9115), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9119), 1, + sym__comment_word, + ACTIONS(9121), 1, + sym__empty_value, + ACTIONS(9123), 1, + sym_test_operator, + ACTIONS(9125), 1, + sym__brace_start, + STATE(2089), 1, + aux_sym__literal_repeat1, + ACTIONS(9103), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2307), 2, + sym_concatenation, + sym_array, + STATE(1506), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201213] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8763), 1, + sym_word, + ACTIONS(8765), 1, + anon_sym_LPAREN, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8771), 1, + anon_sym_DOLLAR, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8793), 1, + sym__comment_word, + ACTIONS(8795), 1, + sym__empty_value, + ACTIONS(8797), 1, + sym_test_operator, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(9127), 1, + sym__special_character, + STATE(5156), 1, + aux_sym__literal_repeat1, + ACTIONS(8777), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4887), 2, + sym_concatenation, + sym_array, + STATE(4925), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201294] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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, + [201335] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8765), 1, + anon_sym_LPAREN, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8771), 1, + anon_sym_DOLLAR, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8793), 1, + sym__comment_word, + ACTIONS(8795), 1, + sym__empty_value, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(9129), 1, + sym_word, + ACTIONS(9131), 1, + sym__special_character, + ACTIONS(9135), 1, + sym_test_operator, + STATE(4686), 1, + aux_sym__literal_repeat1, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9133), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4887), 2, + sym_concatenation, + sym_array, + STATE(5569), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201416] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, + ACTIONS(8387), 1, anon_sym_SLASH, - ACTIONS(7734), 1, + ACTIONS(8389), 1, anon_sym_PERCENT, - ACTIONS(7736), 1, + ACTIONS(8391), 1, anon_sym_COLON, - ACTIONS(7822), 1, + ACTIONS(8637), 1, anon_sym_AT, - ACTIONS(7902), 1, + ACTIONS(9137), 1, anon_sym_RBRACE3, - STATE(6317), 1, + STATE(6872), 1, aux_sym__expansion_body_repeat1, - STATE(6704), 1, + STATE(7468), 1, + sym__expansion_regex, + STATE(7735), 1, sym__expansion_regex_replacement, - STATE(6715), 1, - sym__expansion_expression, - STATE(6784), 1, + STATE(7741), 1, + sym__expansion_regex_removal, + STATE(7823), 1, sym__expansion_max_length, - STATE(6811), 1, + STATE(7841), 1, sym__expansion_operator, - STATE(7373), 1, - sym__expansion_regex_removal, - STATE(7414), 1, - sym__expansion_regex, - ACTIONS(7730), 2, + STATE(8004), 1, + sym__expansion_expression, + ACTIONS(8385), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(7750), 2, + ACTIONS(8405), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(7738), 3, + ACTIONS(8393), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(7748), 3, + ACTIONS(8403), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(7746), 8, + ACTIONS(8401), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -229437,55 +253689,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [179378] = 23, - ACTIONS(3), 1, + [201489] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2067), 1, + ACTIONS(1354), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(2073), 1, aux_sym_number_token1, - ACTIONS(2075), 1, aux_sym_number_token2, - ACTIONS(2079), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1356), 22, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(7904), 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, + 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, + [201530] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9139), 1, sym_word, - ACTIONS(7906), 1, + ACTIONS(9141), 1, anon_sym_LPAREN, - ACTIONS(7908), 1, + ACTIONS(9143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(9145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7912), 1, + ACTIONS(9147), 1, + anon_sym_DOLLAR, + ACTIONS(9149), 1, sym__special_character, - ACTIONS(7914), 1, + ACTIONS(9151), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(9155), 1, + aux_sym_number_token1, + ACTIONS(9157), 1, + aux_sym_number_token2, + ACTIONS(9159), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(9161), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9163), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(9165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7926), 1, + ACTIONS(9169), 1, sym__comment_word, - ACTIONS(7928), 1, + ACTIONS(9171), 1, sym__empty_value, - ACTIONS(7930), 1, + ACTIONS(9173), 1, sym_test_operator, - STATE(1756), 1, + ACTIONS(9175), 1, + sym__brace_start, + STATE(4824), 1, aux_sym__literal_repeat1, - ACTIONS(7916), 2, + ACTIONS(9153), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7924), 2, + ACTIONS(9167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1911), 2, + STATE(5409), 2, sym_concatenation, sym_array, - STATE(1447), 9, + STATE(4670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229495,914 +253785,1769 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [179459] = 23, + [201611] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7932), 1, + ACTIONS(8803), 1, + anon_sym_LPAREN, + ACTIONS(8805), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, + anon_sym_DQUOTE, + ACTIONS(8817), 1, + aux_sym_number_token1, + ACTIONS(8819), 1, + aux_sym_number_token2, + ACTIONS(8821), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8825), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8831), 1, + sym__comment_word, + ACTIONS(8833), 1, + sym__empty_value, + ACTIONS(8837), 1, + sym__brace_start, + ACTIONS(9177), 1, sym_word, - ACTIONS(7934), 1, + ACTIONS(9179), 1, + sym__special_character, + ACTIONS(9183), 1, + sym_test_operator, + STATE(2020), 1, + aux_sym__literal_repeat1, + ACTIONS(8829), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9181), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2216), 2, + sym_concatenation, + sym_array, + STATE(2637), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201692] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2354), 1, + aux_sym_number_token1, + ACTIONS(2356), 1, + aux_sym_number_token2, + ACTIONS(2360), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(8699), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(8707), 1, + anon_sym_DQUOTE, + ACTIONS(8711), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8713), 1, + anon_sym_BQUOTE, + ACTIONS(8715), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8719), 1, + sym__comment_word, + ACTIONS(8721), 1, + sym__empty_value, + ACTIONS(9185), 1, + sym_word, + ACTIONS(9187), 1, + sym__special_character, + ACTIONS(9191), 1, + sym_test_operator, + STATE(2031), 1, + aux_sym__literal_repeat1, + ACTIONS(8717), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9189), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2247), 2, + sym_concatenation, + sym_array, + STATE(2642), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201773] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(7942), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1312), 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, - ACTIONS(7944), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [201814] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1689), 1, + anon_sym_DOLLAR, + ACTIONS(1695), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(1697), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(1701), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1715), 1, + sym__brace_start, + ACTIONS(9193), 1, + sym_word, + ACTIONS(9195), 1, + anon_sym_LPAREN, + ACTIONS(9197), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9199), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9201), 1, + sym__special_character, + ACTIONS(9203), 1, + anon_sym_DQUOTE, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(9209), 1, + anon_sym_BQUOTE, + ACTIONS(9211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9215), 1, + sym__comment_word, + ACTIONS(9217), 1, + sym__empty_value, + ACTIONS(9219), 1, + sym_test_operator, + STATE(1537), 1, + aux_sym__literal_repeat1, + ACTIONS(9205), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1853), 2, + sym_concatenation, + sym_array, + STATE(1174), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201895] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, + anon_sym_DOLLAR, + ACTIONS(1857), 1, + aux_sym_number_token1, + ACTIONS(1859), 1, + aux_sym_number_token2, + ACTIONS(1863), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(1877), 1, + sym__brace_start, + ACTIONS(9221), 1, + sym_word, + ACTIONS(9223), 1, + anon_sym_LPAREN, + ACTIONS(9225), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9227), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9229), 1, + sym__special_character, + ACTIONS(9231), 1, + anon_sym_DQUOTE, + ACTIONS(9235), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9237), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9239), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7962), 1, + ACTIONS(9243), 1, sym__comment_word, - ACTIONS(7964), 1, + ACTIONS(9245), 1, sym__empty_value, - ACTIONS(7966), 1, + ACTIONS(9247), 1, + sym_test_operator, + STATE(1715), 1, + aux_sym__literal_repeat1, + ACTIONS(9233), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9241), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_concatenation, + sym_array, + STATE(1356), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201976] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9249), 1, + anon_sym_LPAREN, + ACTIONS(9252), 1, + anon_sym_BANG, + ACTIONS(9261), 1, + anon_sym_TILDE, + ACTIONS(9264), 1, + anon_sym_DOLLAR, + ACTIONS(9267), 1, + anon_sym_DQUOTE, + ACTIONS(9270), 1, + sym_raw_string, + ACTIONS(9273), 1, + aux_sym_number_token1, + ACTIONS(9276), 1, + aux_sym_number_token2, + ACTIONS(9279), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9282), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9285), 1, + anon_sym_BQUOTE, + ACTIONS(9288), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9291), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9294), 1, + sym_variable_name, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9255), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9258), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3639), 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, + [202056] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9297), 1, + sym__special_character, + STATE(3795), 1, + aux_sym__literal_repeat1, + ACTIONS(6248), 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(6250), 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, + 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, + [202100] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9297), 1, + sym__special_character, + STATE(3795), 1, + aux_sym__literal_repeat1, + ACTIONS(5052), 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(5054), 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, + 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, + [202144] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9313), 1, + sym_raw_string, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9327), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9329), 1, + sym_variable_name, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3154), 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, + [202224] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9331), 1, + sym_raw_string, + ACTIONS(9333), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3308), 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, + [202304] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, + sym_variable_name, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1249), 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, + [202354] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9335), 1, + sym_raw_string, + ACTIONS(9337), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3184), 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, + [202434] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9339), 1, + sym_raw_string, + ACTIONS(9341), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 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_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [202514] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(9345), 1, + anon_sym_DQUOTE, + ACTIONS(9349), 1, + sym_variable_name, + STATE(5705), 1, + sym_string, + ACTIONS(9347), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9343), 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(1237), 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, + [202564] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9351), 1, + sym_raw_string, + ACTIONS(9353), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3802), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3322), 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, + [202644] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9355), 1, + sym__special_character, + STATE(3795), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 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, + 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, + [202688] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9297), 1, + sym__special_character, + STATE(3795), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 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(4943), 20, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(7968), 1, sym__brace_start, - STATE(4223), 1, - aux_sym__literal_repeat1, - ACTIONS(7946), 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(7960), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4668), 2, - sym_concatenation, - sym_array, - STATE(4375), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179540] = 23, - ACTIONS(3), 1, + [202732] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(7970), 1, - sym_word, - ACTIONS(7972), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(7974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(9325), 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, - aux_sym__literal_repeat1, - ACTIONS(7984), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9358), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(7998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3701), 2, - sym_concatenation, - sym_array, - STATE(3352), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9360), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3265), 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, - [179621] = 23, - ACTIONS(3), 1, + [202812] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(9297), 1, + sym__special_character, + STATE(3795), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, 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(8008), 1, sym_word, - ACTIONS(8010), 1, - anon_sym_LPAREN, - ACTIONS(8012), 1, + ACTIONS(5904), 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, - ACTIONS(8014), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8016), 1, - sym__special_character, - ACTIONS(8018), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, anon_sym_BQUOTE, - ACTIONS(8026), 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, - aux_sym__literal_repeat1, - ACTIONS(8020), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2056), 2, - sym_concatenation, - sym_array, - STATE(1377), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179702] = 23, - ACTIONS(3), 1, + [202856] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9325), 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, - sym_word, - ACTIONS(8038), 1, - sym__special_character, - ACTIONS(8042), 1, - sym_test_operator, - STATE(4223), 1, - aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8040), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9362), 1, sym_raw_string, - sym_ansi_c_string, - STATE(4668), 2, - sym_concatenation, - sym_array, - STATE(4422), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9364), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3810), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3292), 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, - [179783] = 23, + [202936] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(9345), 1, + anon_sym_DQUOTE, + ACTIONS(9349), 1, + sym_variable_name, + STATE(5705), 1, + sym_string, + ACTIONS(9347), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9343), 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(1249), 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, + [202986] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9325), 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, - aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8048), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9366), 1, sym_raw_string, - sym_ansi_c_string, - STATE(4668), 2, - sym_concatenation, - sym_array, - STATE(4603), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9368), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3792), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3229), 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, - [179864] = 23, - ACTIONS(3), 1, + [203066] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(4070), 1, - sym__special_character, - ACTIONS(4072), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(9325), 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, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9370), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2901), 2, - sym_concatenation, - sym_array, - STATE(2371), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9372), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3350), 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, - [179945] = 23, - ACTIONS(3), 1, + [203146] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(8064), 1, - sym_word, - ACTIONS(8066), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8068), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8072), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8074), 1, - sym__special_character, - ACTIONS(8076), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(9325), 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, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9374), 1, 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, + ACTIONS(9376), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3797), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3192), 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, - [180026] = 23, - ACTIONS(3), 1, + [203226] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9325), 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, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9378), 1, sym_raw_string, - sym_ansi_c_string, - STATE(4668), 2, - sym_concatenation, - sym_array, - STATE(4503), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9380), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3809), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3352), 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, - [180107] = 23, - ACTIONS(3), 1, + [203306] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(8110), 1, - sym_word, - ACTIONS(8112), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(9325), 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, - aux_sym__literal_repeat1, - ACTIONS(8124), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9382), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8138), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1655), 2, - sym_concatenation, - sym_array, - STATE(1122), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9384), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3791), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3166), 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, - [180188] = 23, - ACTIONS(3), 1, + [203386] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(7934), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(7936), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(9325), 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, - aux_sym__literal_repeat1, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8152), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9386), 1, sym_raw_string, - sym_ansi_c_string, - STATE(4668), 2, - sym_concatenation, - sym_array, - STATE(5077), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9388), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3788), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3362), 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, - [180269] = 23, - ACTIONS(3), 1, + [203466] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1591), 1, + ACTIONS(9297), 1, + sym__special_character, + STATE(3795), 1, + aux_sym__literal_repeat1, + ACTIONS(6242), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1597), 1, aux_sym_number_token1, - ACTIONS(1599), 1, aux_sym_number_token2, - ACTIONS(1603), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, - sym__brace_start, - ACTIONS(8156), 1, sym_word, - ACTIONS(8158), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, + ACTIONS(6244), 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, - ACTIONS(8162), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8164), 1, - sym__special_character, - ACTIONS(8166), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, anon_sym_BQUOTE, - ACTIONS(8174), 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, - aux_sym__literal_repeat1, - ACTIONS(8168), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8176), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1660), 2, - sym_concatenation, - sym_array, - STATE(1124), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [203510] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9390), 1, + sym_raw_string, + ACTIONS(9392), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3789), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3290), 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, - [180350] = 23, - ACTIONS(3), 1, + [203590] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(8184), 1, - sym_word, - ACTIONS(8186), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8188), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8192), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8194), 1, - sym__special_character, - ACTIONS(8196), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(9325), 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, - aux_sym__literal_repeat1, - ACTIONS(8198), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9394), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(4604), 2, - sym_concatenation, - sym_array, - STATE(4148), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9396), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3363), 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, - [180431] = 23, - ACTIONS(3), 1, + [203670] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(8222), 1, - sym_word, - ACTIONS(8224), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8226), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(9325), 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, - aux_sym__literal_repeat1, - ACTIONS(8236), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9398), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8250), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1906), 2, - sym_concatenation, - sym_array, - STATE(1234), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9400), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3315), 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, - [180512] = 23, - ACTIONS(3), 1, + [203750] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(1889), 1, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(1895), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, - sym__brace_start, - ACTIONS(8260), 1, - sym_word, - ACTIONS(8262), 1, - anon_sym_LPAREN, - ACTIONS(8264), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8268), 1, - sym__special_character, - ACTIONS(8270), 1, - anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(9325), 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, - aux_sym__literal_repeat1, - ACTIONS(8272), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9402), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8280), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1874), 2, - sym_concatenation, - sym_array, - STATE(1265), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9404), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3785), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3331), 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, - [180593] = 3, + [203830] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, + ACTIONS(9317), 1, aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1215), 22, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9406), 1, + sym_raw_string, + ACTIONS(9408), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + STATE(3811), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3218), 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, + [203910] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, sym_file_descriptor, - sym__concat, + ACTIONS(4200), 1, + anon_sym_DQUOTE, + ACTIONS(8281), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + STATE(4553), 1, + sym_string, + ACTIONS(8279), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8277), 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(1237), 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, - 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, + [203960] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 11, + ACTIONS(9297), 1, + sym__special_character, + STATE(3795), 1, + aux_sym__literal_repeat1, + ACTIONS(5722), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -230412,11 +255557,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(1274), 22, + ACTIONS(5724), 20, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -230428,644 +255571,1048 @@ 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, - [180748] = 3, + [204004] = 22, 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, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9424), 1, + sym_raw_string, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9438), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9440), 1, 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, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3641), 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, + [204081] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180789] = 3, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9442), 1, + sym_raw_string, + ACTIONS(9444), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3011), 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, + [204158] = 22, 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, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1282), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9446), 1, + sym_raw_string, + ACTIONS(9448), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3550), 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, + [204235] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, anon_sym_DQUOTE, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9450), 1, sym_raw_string, - sym_ansi_c_string, + ACTIONS(9452), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2952), 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, + [204312] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, + aux_sym_number_token1, + ACTIONS(9428), 1, + aux_sym_number_token2, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, + anon_sym_BQUOTE, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180830] = 3, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9454), 1, + sym_raw_string, + ACTIONS(9456), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3368), 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, + [204389] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1250), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9458), 1, sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180871] = 3, + ACTIONS(9460), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3414), 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, + [204466] = 22, 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9462), 1, sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [180912] = 3, + ACTIONS(9464), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3465), 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, + [204543] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, + ACTIONS(9317), 1, aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, 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, + ACTIONS(9466), 1, 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(9468), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3012), 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, + [204620] = 22, 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, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1290), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9470), 1, 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(9472), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3557), 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, + [204697] = 22, 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, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, + ACTIONS(9317), 1, aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, 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, + ACTIONS(9474), 1, sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181035] = 3, + ACTIONS(9476), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2968), 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, + [204774] = 22, 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9478), 1, sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181076] = 3, + ACTIONS(9480), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3466), 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, + [204851] = 22, 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, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9482), 1, 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(9484), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3513), 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, + [204928] = 21, 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, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9488), 1, + anon_sym_RPAREN, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, + anon_sym_DQUOTE, + ACTIONS(9502), 1, aux_sym_number_token1, + ACTIONS(9504), 1, aux_sym_number_token2, + ACTIONS(9506), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9510), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 22, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(9512), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, sym_test_operator, + ACTIONS(9518), 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, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [181158] = 3, + STATE(3833), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [205003] = 22, 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, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, + ACTIONS(9317), 1, aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 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(9325), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181199] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(9329), 1, sym_variable_name, - STATE(4874), 1, - sym_string, - ACTIONS(1197), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8292), 2, + ACTIONS(9520), 1, + sym_raw_string, + ACTIONS(9522), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, - anon_sym_DASH, - anon_sym_STAR, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3013), 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, + [205080] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, 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, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [181250] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(9440), 1, sym_variable_name, - STATE(4874), 1, - sym_string, - ACTIONS(1191), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8292), 2, + ACTIONS(9524), 1, + sym_raw_string, + ACTIONS(9526), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, - anon_sym_DASH, - anon_sym_STAR, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3559), 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, + [205157] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9528), 1, + anon_sym_LPAREN, + ACTIONS(9530), 1, anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9536), 1, + anon_sym_TILDE, + ACTIONS(9538), 1, 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, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(9540), 1, + anon_sym_DQUOTE, + ACTIONS(9542), 1, sym_raw_string, - sym_ansi_c_string, + ACTIONS(9544), 1, aux_sym_number_token1, + ACTIONS(9546), 1, aux_sym_number_token2, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9552), 1, anon_sym_BQUOTE, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [181301] = 3, + ACTIONS(9556), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9558), 1, + sym_variable_name, + STATE(3409), 1, + sym__arithmetic_binary_expression, + STATE(3420), 1, + sym__arithmetic_ternary_expression, + STATE(3423), 1, + sym__arithmetic_unary_expression, + STATE(3427), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9532), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9534), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3631), 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, + [205234] = 22, 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, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1286), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9560), 1, 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, + ACTIONS(9562), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3494), 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, + [205311] = 22, + ACTIONS(71), 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_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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(9422), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [181383] = 23, - ACTIONS(3), 1, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9564), 1, + sym_raw_string, + ACTIONS(9566), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3549), 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, + [205388] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8296), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8298), 1, - anon_sym_LPAREN, - ACTIONS(8300), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8306), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8308), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8326), 1, - sym__comment_word, - ACTIONS(8328), 1, - sym__empty_value, - ACTIONS(8330), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8332), 1, + ACTIONS(9518), 1, sym__brace_start, - STATE(1720), 1, + ACTIONS(9568), 1, + anon_sym_RPAREN, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8310), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8324), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2043), 2, + STATE(4047), 2, sym_concatenation, - sym_array, - STATE(1678), 9, + aux_sym_for_statement_repeat1, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -231075,421 +256622,544 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [181464] = 23, - ACTIONS(3), 1, + [205463] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(8010), 1, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9570), 1, + sym_raw_string, + ACTIONS(9572), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3014), 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, + [205540] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8012), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(9426), 1, + aux_sym_number_token1, + ACTIONS(9428), 1, + aux_sym_number_token2, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(9436), 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, - aux_sym__literal_repeat1, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8338), 2, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9574), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2056), 2, - sym_concatenation, - sym_array, - STATE(1686), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9576), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3562), 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, - [181545] = 3, + [205617] = 22, 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, + ACTIONS(9317), 1, aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1254), 22, - sym_file_descriptor, - sym__concat, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, 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, + ACTIONS(9578), 1, sym_raw_string, - sym_ansi_c_string, + ACTIONS(9580), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2969), 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, + [205694] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, + aux_sym_number_token1, + ACTIONS(9428), 1, + aux_sym_number_token2, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, + anon_sym_BQUOTE, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [181586] = 23, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9582), 1, + sym_raw_string, + ACTIONS(9584), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3467), 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, + [205771] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8298), 1, + ACTIONS(8387), 1, + anon_sym_SLASH, + ACTIONS(8389), 1, + anon_sym_PERCENT, + ACTIONS(8391), 1, + anon_sym_COLON, + ACTIONS(8395), 1, + anon_sym_RBRACE3, + ACTIONS(8397), 1, + anon_sym_AT, + ACTIONS(8399), 1, + anon_sym_STAR2, + ACTIONS(9586), 1, + anon_sym_LBRACK, + STATE(7285), 1, + sym__expansion_expression, + STATE(7296), 1, + sym__expansion_regex, + STATE(7298), 1, + sym__expansion_regex_replacement, + STATE(7304), 1, + sym__expansion_regex_removal, + STATE(7306), 1, + sym__expansion_max_length, + STATE(7307), 1, + sym__expansion_operator, + ACTIONS(8385), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8405), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8393), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8403), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8401), 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, + [205842] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(9530), 1, + anon_sym_BANG, + ACTIONS(9536), 1, + anon_sym_TILDE, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9554), 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, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8346), 2, + ACTIONS(9558), 1, + sym_variable_name, + ACTIONS(9588), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2043), 2, - sym_concatenation, - sym_array, - STATE(1386), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9590), 1, + aux_sym__simple_variable_name_token1, + STATE(3409), 1, + sym__arithmetic_binary_expression, + STATE(3420), 1, + sym__arithmetic_ternary_expression, + STATE(3423), 1, + sym__arithmetic_unary_expression, + STATE(3427), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9532), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9534), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3404), 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, - [181667] = 23, - ACTIONS(3), 1, + [205919] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(8298), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9325), 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8354), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9592), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2043), 2, - sym_concatenation, - sym_array, - STATE(2297), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9594), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3015), 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, - [181748] = 23, - ACTIONS(3), 1, + [205996] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(2039), 1, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(2045), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, - sym__brace_start, - ACTIONS(8010), 1, - anon_sym_LPAREN, - ACTIONS(8012), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, - anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(9436), 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, - aux_sym__literal_repeat1, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8362), 2, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9596), 1, sym_raw_string, - sym_ansi_c_string, - STATE(2056), 2, - sym_concatenation, - sym_array, - STATE(2301), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9598), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3566), 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, - [181829] = 23, - ACTIONS(3), 1, + [206073] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(8366), 1, - sym_word, - ACTIONS(8368), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8370), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8374), 1, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8376), 1, - sym__special_character, - ACTIONS(8378), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8396), 1, - sym__comment_word, - ACTIONS(8398), 1, - sym__empty_value, - ACTIONS(8400), 1, - sym_test_operator, - ACTIONS(8402), 1, - sym__brace_start, - STATE(4407), 1, - aux_sym__literal_repeat1, - ACTIONS(8380), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9600), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8394), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(4700), 2, - sym_concatenation, - sym_array, - STATE(4237), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9602), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2943), 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, - [181910] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 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(5689), 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, - 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, + [206150] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8420), 1, - sym_raw_string, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8434), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - STATE(2712), 1, + ACTIONS(9604), 1, + sym_raw_string, + ACTIONS(9606), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3429), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3017), 9, + STATE(3531), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231499,54 +257169,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182034] = 23, + [206227] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8438), 1, + ACTIONS(9608), 1, sym_raw_string, - ACTIONS(8440), 1, + ACTIONS(9610), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2809), 9, + STATE(2971), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231556,54 +257224,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182114] = 23, + [206304] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8442), 1, + ACTIONS(9612), 1, sym_raw_string, - ACTIONS(8444), 1, + ACTIONS(9614), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3434), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2810), 9, + STATE(3471), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231613,54 +257279,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182194] = 23, + [206381] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8446), 1, + ACTIONS(9616), 1, sym_raw_string, - ACTIONS(8448), 1, + ACTIONS(9618), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2981), 9, + STATE(3017), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231670,135 +257334,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182274] = 5, + [206458] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 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, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4309), 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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, + ACTIONS(9436), 1, 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, + ACTIONS(9440), 1, sym_variable_name, - STATE(5176), 1, - sym_string, - ACTIONS(8454), 2, + ACTIONS(9620), 1, + sym_raw_string, + ACTIONS(9622), 1, 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, - 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, - [182368] = 23, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3570), 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, + [206535] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(8458), 1, + ACTIONS(9624), 1, sym_raw_string, - ACTIONS(8460), 1, + ACTIONS(9626), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2816), 9, + STATE(3403), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231808,54 +257444,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182448] = 23, + [206612] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8462), 1, + ACTIONS(9628), 1, sym_raw_string, - ACTIONS(8464), 1, + ACTIONS(9630), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3436), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2817), 9, + STATE(2953), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231865,54 +257499,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182528] = 23, + [206689] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8466), 1, + ACTIONS(9632), 1, sym_raw_string, - ACTIONS(8468), 1, + ACTIONS(9634), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2821), 9, + STATE(3372), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231922,54 +257554,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182608] = 23, + [206766] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8137), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8141), 1, + sym__special_character, + ACTIONS(8143), 1, + anon_sym_DQUOTE, + ACTIONS(8147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8149), 1, + anon_sym_BQUOTE, + ACTIONS(8151), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9636), 1, + sym_word, + ACTIONS(9640), 1, + sym_test_operator, + STATE(6880), 1, + aux_sym__literal_repeat1, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9638), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(7073), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6800), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [206841] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8470), 1, + ACTIONS(9642), 1, sym_raw_string, - ACTIONS(8472), 1, + ACTIONS(9644), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3439), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2823), 9, + STATE(3018), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -231979,54 +257663,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182688] = 23, + [206918] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8474), 1, + ACTIONS(9646), 1, sym_raw_string, - ACTIONS(8476), 1, + ACTIONS(9648), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3431), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2863), 9, + STATE(3571), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232036,54 +257718,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182768] = 23, + [206995] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8478), 1, + ACTIONS(9650), 1, sym_raw_string, - ACTIONS(8480), 1, + ACTIONS(9652), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2827), 9, + STATE(2973), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232093,54 +257773,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182848] = 23, + [207072] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8482), 1, + ACTIONS(9654), 1, sym_raw_string, - ACTIONS(8484), 1, + ACTIONS(9656), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3441), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2828), 9, + STATE(3474), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232150,54 +257828,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [182928] = 23, + [207149] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8486), 1, + ACTIONS(9658), 1, sym_raw_string, - ACTIONS(8488), 1, + ACTIONS(9660), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2830), 9, + STATE(3460), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232207,14 +257883,10 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183008] = 5, + [207226] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 10, + ACTIONS(2176), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232225,7 +257897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5132), 20, + ACTIONS(2178), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232238,6 +257910,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, @@ -232246,96 +257919,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183052] = 8, - ACTIONS(3), 1, + [207265] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(8452), 1, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8456), 1, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, sym_variable_name, - STATE(5176), 1, - sym_string, - ACTIONS(8454), 2, + ACTIONS(9662), 1, + sym_raw_string, + ACTIONS(9664), 1, 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(1183), 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, - [183102] = 23, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3020), 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, + [207342] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8490), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8493), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8502), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8505), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8508), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8511), 1, - sym_raw_string, - ACTIONS(8514), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8517), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8520), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8523), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8526), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8529), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8532), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8535), 1, + ACTIONS(9440), 1, sym_variable_name, - STATE(2712), 1, + ACTIONS(9666), 1, + sym_raw_string, + ACTIONS(9668), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8496), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8499), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3214), 9, + STATE(3572), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232345,54 +258029,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183182] = 23, + [207419] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8538), 1, + ACTIONS(9670), 1, sym_raw_string, - ACTIONS(8540), 1, + ACTIONS(9672), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3447), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2942), 9, + STATE(3644), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232402,54 +258084,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183262] = 23, + [207496] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8542), 1, + ACTIONS(9674), 1, sym_raw_string, - ACTIONS(8544), 1, + ACTIONS(9676), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3448), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2980), 9, + STATE(2924), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232459,54 +258139,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183342] = 23, + [207573] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8546), 1, + ACTIONS(9678), 1, sym_raw_string, - ACTIONS(8548), 1, + ACTIONS(9680), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2947), 9, + STATE(3463), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232516,54 +258194,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183422] = 23, + [207650] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8550), 1, + ACTIONS(9682), 1, sym_raw_string, - ACTIONS(8552), 1, + ACTIONS(9684), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2986), 9, + STATE(3469), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232573,213 +258249,327 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183502] = 5, + [207727] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, + ACTIONS(9317), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4282), 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, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [183546] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(3512), 1, - anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(9329), 1, sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, + ACTIONS(9686), 1, + sym_raw_string, + ACTIONS(9688), 1, 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), 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, - [183596] = 5, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3022), 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, + [207804] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5563), 20, - sym_file_descriptor, + ACTIONS(9434), 1, + anon_sym_BQUOTE, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9690), 1, sym_raw_string, - sym_ansi_c_string, + ACTIONS(9692), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3575), 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, + [207881] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, + aux_sym_number_token1, + ACTIONS(9428), 1, + aux_sym_number_token2, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [183640] = 5, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9694), 1, + sym_raw_string, + ACTIONS(9696), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3483), 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, + [207958] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8404), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(5264), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, + ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_number_token1, + ACTIONS(9317), 1, aux_sym_number_token2, + ACTIONS(9319), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5266), 20, - sym_file_descriptor, + ACTIONS(9323), 1, + anon_sym_BQUOTE, + ACTIONS(9325), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9329), 1, 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, + ACTIONS(9698), 1, sym_raw_string, - sym_ansi_c_string, + ACTIONS(9700), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2975), 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, + [208035] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, + aux_sym_number_token1, + ACTIONS(9428), 1, + aux_sym_number_token2, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [183684] = 23, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9702), 1, + sym_raw_string, + ACTIONS(9704), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3475), 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, + [208112] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8554), 1, + ACTIONS(9706), 1, sym_raw_string, - ACTIONS(8556), 1, + ACTIONS(9708), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - STATE(3456), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2993), 9, + STATE(2954), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232789,14 +258579,10 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183764] = 5, + [208189] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8558), 1, - sym__special_character, - STATE(3454), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 10, + ACTIONS(4945), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -232807,7 +258593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1318), 20, + ACTIONS(4947), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -232820,6 +258606,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, @@ -232828,96 +258615,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [183808] = 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), 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, - [183858] = 23, + [208228] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8561), 1, + ACTIONS(9710), 1, sym_raw_string, - ACTIONS(8563), 1, + ACTIONS(9712), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - STATE(3444), 1, - aux_sym_compound_statement_repeat1, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3010), 9, + STATE(3381), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232927,52 +258670,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [183938] = 22, + [208305] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8579), 1, - sym_raw_string, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8593), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - STATE(3024), 1, + ACTIONS(9714), 1, + sym_raw_string, + ACTIONS(9716), 1, + aux_sym__simple_variable_name_token1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3030), 9, + STATE(3462), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -232982,52 +258725,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184015] = 22, + [208382] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8611), 1, - sym_raw_string, - ACTIONS(8613), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8625), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(8627), 1, + ACTIONS(9329), 1, sym_variable_name, - STATE(3262), 1, + ACTIONS(9718), 1, + sym_raw_string, + ACTIONS(9720), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3029), 9, + STATE(2976), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233037,52 +258780,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184092] = 22, + [208459] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8629), 1, + ACTIONS(9722), 1, sym_raw_string, - ACTIONS(8631), 1, + ACTIONS(9724), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3032), 9, + STATE(3477), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233092,51 +258835,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184169] = 21, + [208536] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8635), 1, - anon_sym_RPAREN, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - STATE(5388), 1, + ACTIONS(9726), 1, + anon_sym_RPAREN, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3462), 2, + STATE(3878), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233146,52 +258889,107 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184244] = 22, + [208611] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8667), 1, + ACTIONS(9728), 1, sym_raw_string, - ACTIONS(8669), 1, + ACTIONS(9730), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2944), 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, + [208688] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, + aux_sym_number_token1, + ACTIONS(9428), 1, + aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, + anon_sym_BQUOTE, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9732), 1, + sym_raw_string, + ACTIONS(9734), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3035), 9, + STATE(3545), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233201,51 +258999,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184321] = 21, + [208765] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8671), 1, + ACTIONS(9736), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(4047), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -233255,52 +259053,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184396] = 22, + [208840] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(8673), 1, + ACTIONS(9738), 1, sym_raw_string, - ACTIONS(8675), 1, + ACTIONS(9740), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3037), 9, + STATE(3645), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233310,52 +259108,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184473] = 22, + [208917] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8677), 1, + ACTIONS(9742), 1, sym_raw_string, - ACTIONS(8679), 1, + ACTIONS(9744), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3173), 9, + STATE(2955), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233365,52 +259163,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184550] = 22, + [208994] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8681), 1, + ACTIONS(9746), 1, sym_raw_string, - ACTIONS(8683), 1, + ACTIONS(9748), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3039), 9, + STATE(2977), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233420,52 +259218,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184627] = 22, + [209071] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8685), 1, + ACTIONS(9750), 1, sym_raw_string, - ACTIONS(8687), 1, + ACTIONS(9752), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3041), 9, + STATE(3479), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233475,52 +259273,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184704] = 22, + [209148] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8689), 1, + ACTIONS(9754), 1, sym_raw_string, - ACTIONS(8691), 1, + ACTIONS(9756), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3175), 9, + STATE(3385), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233530,106 +259328,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184781] = 21, - 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, - 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_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8693), 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(3470), 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, - [184856] = 22, + [209225] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8695), 1, + ACTIONS(9758), 1, sym_raw_string, - ACTIONS(8697), 1, + ACTIONS(9760), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3043), 9, + STATE(3149), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233639,106 +259383,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [184933] = 21, - 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, - 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_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8699), 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(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, - [185008] = 22, + [209302] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8701), 1, + ACTIONS(9762), 1, sym_raw_string, - ACTIONS(8703), 1, + ACTIONS(9764), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3212), 9, + STATE(2936), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233748,214 +259438,162 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [185085] = 21, - 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, - 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_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8705), 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(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, + [209379] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8707), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9766), 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(9768), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2915), 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, - [185235] = 21, + [209456] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8709), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9770), 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(9772), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2978), 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, - [185310] = 22, + [209533] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8711), 1, + ACTIONS(9774), 1, sym_raw_string, - ACTIONS(8713), 1, + ACTIONS(9776), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3045), 9, + STATE(3480), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -233965,51 +259603,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [185387] = 21, + [209610] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8715), 1, + ACTIONS(9778), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, + STATE(3966), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234019,105 +259657,106 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185462] = 21, + [209685] = 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - 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, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9780), 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(9782), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3432), 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, - [185537] = 21, + [209762] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8719), 1, + ACTIONS(9784), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3479), 2, + STATE(4047), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234127,51 +259766,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185612] = 21, + [209837] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8721), 1, + ACTIONS(9786), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(4033), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234181,375 +259820,381 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185687] = 21, + [209912] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8723), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9788), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3485), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9790), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 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_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [185762] = 21, + [209989] = 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9436), 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, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9792), 1, 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, + ACTIONS(9794), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3482), 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, - [185837] = 21, + [210066] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - 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, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9796), 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(9798), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2946), 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, - [185912] = 21, + [210143] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8729), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9800), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3484), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9802), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2956), 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, - [185987] = 21, + [210220] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - 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, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9804), 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(9806), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2931), 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, - [186062] = 21, + [210297] = 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - 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, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9808), 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(9810), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3581), 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, - [186137] = 21, + [210374] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8735), 1, + ACTIONS(9812), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3487), 2, + STATE(3904), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234559,51 +260204,87 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186212] = 21, + [210449] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(1271), 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(8637), 1, + ACTIONS(1273), 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(8639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 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, + [210488] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(3995), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(4015), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(8737), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(9814), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234613,159 +260294,161 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186287] = 21, + [210563] = 22, ACTIONS(71), 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8751), 1, - sym__special_character, - ACTIONS(8754), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8760), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8763), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8766), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8769), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8772), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8775), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8781), 1, - sym_test_operator, - ACTIONS(8784), 1, - sym__brace_start, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8757), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9816), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8778), 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(9818), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2981), 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, - [186362] = 21, + [210640] = 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8787), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9820), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3490), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9822), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3615), 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, - [186437] = 21, + [210717] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8789), 1, + ACTIONS(9824), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(4047), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234775,142 +260458,162 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186512] = 3, + [210792] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5860), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5872), 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, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [186551] = 21, - ACTIONS(3), 1, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9826), 1, + sym_raw_string, + ACTIONS(9828), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3485), 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, + [210869] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(8794), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8796), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8799), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8802), 1, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8805), 1, - sym__special_character, - ACTIONS(8808), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8811), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8814), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8817), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8820), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8823), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8826), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8832), 1, - sym_test_operator, - ACTIONS(8835), 1, - sym__brace_start, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 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(9440), 1, + sym_variable_name, + ACTIONS(9830), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9832), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3399), 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, - [186626] = 22, + [210946] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8838), 1, + ACTIONS(9834), 1, sym_raw_string, - ACTIONS(8840), 1, + ACTIONS(9836), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2752), 9, + STATE(3567), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -234920,52 +260623,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186703] = 22, + [211023] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8842), 1, + ACTIONS(9838), 1, sym_raw_string, - ACTIONS(8844), 1, + ACTIONS(9840), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2617), 9, + STATE(2967), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -234975,52 +260678,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186780] = 22, + [211100] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8846), 1, + ACTIONS(9842), 1, sym_raw_string, - ACTIONS(8848), 1, + ACTIONS(9844), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2765), 9, + STATE(2972), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235030,52 +260733,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186857] = 22, + [211177] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8850), 1, + ACTIONS(9846), 1, sym_raw_string, - ACTIONS(8852), 1, + ACTIONS(9848), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2619), 9, + STATE(2983), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235085,52 +260788,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [186934] = 22, + [211254] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8854), 1, + ACTIONS(9850), 1, sym_raw_string, - ACTIONS(8856), 1, + ACTIONS(9852), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2766), 9, + STATE(3488), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235140,52 +260843,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187011] = 22, + [211331] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8858), 1, + ACTIONS(9854), 1, sym_raw_string, - ACTIONS(8860), 1, + ACTIONS(9856), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2767), 9, + STATE(3110), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235195,51 +260898,213 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187088] = 21, - ACTIONS(71), 1, + [211408] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(9858), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211483] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, + ACTIONS(9494), 1, + anon_sym_DOLLAR, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(7514), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(9502), 1, + aux_sym_number_token1, + ACTIONS(9504), 1, + aux_sym_number_token2, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(9508), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8862), 1, - sym_word, - ACTIONS(8866), 1, + ACTIONS(9516), 1, sym_test_operator, - STATE(6356), 1, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(9860), 1, + anon_sym_RPAREN, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(7524), 2, + ACTIONS(9500), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8864), 2, + STATE(3915), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211558] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, + anon_sym_DOLLAR, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, + anon_sym_DQUOTE, + ACTIONS(9502), 1, + aux_sym_number_token1, + ACTIONS(9504), 1, + aux_sym_number_token2, + ACTIONS(9506), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9508), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9510), 1, + anon_sym_BQUOTE, + ACTIONS(9512), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(9862), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - STATE(6611), 2, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, sym_concatenation, - sym__extglob_blob, - STATE(6248), 9, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211633] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(9864), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -235249,52 +261114,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [187163] = 22, + [211708] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8868), 1, + ACTIONS(9866), 1, sym_raw_string, - ACTIONS(8870), 1, + ACTIONS(9868), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2768), 9, + STATE(2957), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235304,52 +261169,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187240] = 22, + [211785] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8872), 1, + ACTIONS(9870), 1, sym_raw_string, - ACTIONS(8874), 1, + ACTIONS(9872), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2623), 9, + STATE(2985), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235359,52 +261224,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187317] = 22, + [211862] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8876), 1, + ACTIONS(9874), 1, sym_raw_string, - ACTIONS(8878), 1, + ACTIONS(9876), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2889), 9, + STATE(3491), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235414,104 +261279,52 @@ 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, + [211939] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8882), 1, + ACTIONS(9878), 1, sym_raw_string, - ACTIONS(8884), 1, + ACTIONS(9880), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3203), 9, + STATE(3402), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235521,52 +261334,196 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187542] = 22, + [212016] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(2180), 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(2182), 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, + [212055] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(9882), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212130] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4003), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4007), 1, + anon_sym_BQUOTE, + ACTIONS(4009), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(9884), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212205] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8886), 1, + ACTIONS(9886), 1, sym_raw_string, - ACTIONS(8888), 1, + ACTIONS(9888), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3208), 9, + STATE(2987), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235576,52 +261533,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187619] = 22, + [212282] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8890), 1, + ACTIONS(9890), 1, sym_raw_string, - ACTIONS(8892), 1, + ACTIONS(9892), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3210), 9, + STATE(3496), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235631,106 +261588,202 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187696] = 21, + [212359] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(4552), 1, + anon_sym_DQUOTE, + ACTIONS(8378), 1, + sym_variable_name, + STATE(4638), 1, + sym_string, + ACTIONS(8376), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8374), 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(1249), 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, + [212408] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6390), 1, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, + anon_sym_DQUOTE, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(9506), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(9510), 1, + anon_sym_BQUOTE, + ACTIONS(9512), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 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, + ACTIONS(9894), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3993), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212483] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, + anon_sym_DOLLAR, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(9315), 1, + aux_sym_number_token1, + ACTIONS(9317), 1, + aux_sym_number_token2, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(9325), 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, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9896), 1, sym_raw_string, - sym_ansi_c_string, - STATE(6660), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6313), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9898), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2948), 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, - [187771] = 22, + [212560] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8900), 1, + ACTIONS(9900), 1, sym_raw_string, - ACTIONS(8902), 1, + ACTIONS(9902), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2771), 9, + STATE(2958), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235740,21 +261793,21 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187848] = 8, + [212637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1245), 1, sym_file_descriptor, - ACTIONS(3950), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(8378), 1, sym_variable_name, - STATE(4349), 1, + STATE(4638), 1, sym_string, - ACTIONS(7599), 2, + ACTIONS(8376), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(8374), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -235763,7 +261816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - ACTIONS(1195), 17, + ACTIONS(1237), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -235781,52 +261834,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [187897] = 22, + [212686] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8904), 1, + ACTIONS(9904), 1, sym_raw_string, - ACTIONS(8906), 1, + ACTIONS(9906), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2656), 9, + STATE(3405), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235836,52 +261889,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [187974] = 22, + [212763] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8908), 1, + ACTIONS(9908), 1, sym_raw_string, - ACTIONS(8910), 1, + ACTIONS(9910), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3147), 9, + STATE(2988), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235891,93 +261944,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188051] = 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_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, - [188100] = 22, + [212840] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8912), 1, + ACTIONS(9912), 1, sym_raw_string, - ACTIONS(8914), 1, + ACTIONS(9914), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3149), 9, + STATE(3501), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -235987,52 +261999,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188177] = 22, + [212917] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8916), 1, + ACTIONS(9916), 1, sym_raw_string, - ACTIONS(8918), 1, + ACTIONS(9918), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3158), 9, + STATE(3574), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236042,65 +262054,64 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188254] = 22, + [212994] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(8920), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(9920), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(8922), 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(2772), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3938), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [188331] = 3, + sym_process_substitution, + [213069] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 10, + ACTIONS(5056), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236111,7 +262122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2162), 21, + ACTIONS(5058), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -236133,51 +262144,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188370] = 21, - ACTIONS(3), 1, + [213108] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6555), 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(6567), 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, + [213147] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8924), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(9922), 1, + anon_sym_RPAREN, + STATE(5831), 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(9500), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236187,51 +262234,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [188445] = 21, - ACTIONS(3), 1, + [213222] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, - aux_sym_number_token1, - ACTIONS(3566), 1, - aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(9924), 1, + sym_word, + ACTIONS(9928), 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, + STATE(6918), 1, aux_sym__literal_repeat1, - STATE(5447), 1, - sym_concatenation, - ACTIONS(3576), 2, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3540), 3, + ACTIONS(9926), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + STATE(7135), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6773), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236241,52 +262288,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [188520] = 22, + [213297] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8928), 1, + ACTIONS(9930), 1, sym_raw_string, - ACTIONS(8930), 1, + ACTIONS(9932), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2773), 9, + STATE(2990), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236296,88 +262343,161 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188597] = 3, + [213374] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, + ACTIONS(9422), 1, + anon_sym_DQUOTE, + ACTIONS(9426), 1, aux_sym_number_token1, + ACTIONS(9428), 1, aux_sym_number_token2, + ACTIONS(9430), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4313), 21, - sym_file_descriptor, + ACTIONS(9434), 1, + anon_sym_BQUOTE, + ACTIONS(9436), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9440), 1, 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, + ACTIONS(9934), 1, + sym_raw_string, + ACTIONS(9936), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3503), 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, + [213451] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, + anon_sym_DOLLAR, + ACTIONS(9496), 1, sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9502), 1, + aux_sym_number_token1, + ACTIONS(9504), 1, + aux_sym_number_token2, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9508), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9510), 1, anon_sym_BQUOTE, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(9938), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188636] = 22, + STATE(3989), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213526] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8932), 1, + ACTIONS(9940), 1, sym_raw_string, - ACTIONS(8934), 1, + ACTIONS(9942), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2774), 9, + STATE(3584), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236387,52 +262507,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188713] = 22, + [213603] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8936), 1, + ACTIONS(9944), 1, sym_raw_string, - ACTIONS(8938), 1, + ACTIONS(9946), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2659), 9, + STATE(3037), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236442,52 +262562,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188790] = 22, + [213680] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8940), 1, + ACTIONS(9948), 1, sym_raw_string, - ACTIONS(8942), 1, + ACTIONS(9950), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3179), 9, + STATE(3122), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236497,106 +262617,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [188867] = 21, + [213757] = 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - 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, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9952), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - 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, + ACTIONS(9954), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3588), 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, - [188942] = 22, + [213834] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8946), 1, + ACTIONS(9956), 1, sym_raw_string, - ACTIONS(8948), 1, + ACTIONS(9958), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3180), 9, + STATE(2959), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236606,106 +262727,107 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189019] = 21, - ACTIONS(3), 1, + [213911] = 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(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, - 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, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(9960), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9962), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3591), 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, - [189094] = 22, + [213988] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8952), 1, + ACTIONS(9964), 1, sym_raw_string, - ACTIONS(8954), 1, + ACTIONS(9966), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3181), 9, + STATE(2992), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236715,159 +262837,161 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189171] = 21, - ACTIONS(3), 1, + [214065] = 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(9528), 1, + anon_sym_LPAREN, + ACTIONS(9530), 1, + anon_sym_BANG, + ACTIONS(9536), 1, + anon_sym_TILDE, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9554), 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, + ACTIONS(9558), 1, + sym_variable_name, + ACTIONS(9968), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9970), 1, + aux_sym__simple_variable_name_token1, + STATE(3409), 1, + sym__arithmetic_binary_expression, + STATE(3420), 1, + sym__arithmetic_ternary_expression, + STATE(3423), 1, + sym__arithmetic_unary_expression, + STATE(3427), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9532), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9534), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3484), 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, - [189246] = 21, - ACTIONS(3), 1, + [214142] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9325), 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, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(9972), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9974), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3086), 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, - [189321] = 21, + [214219] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, + aux_sym_number_token1, + ACTIONS(7172), 1, + aux_sym_number_token2, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7186), 1, + sym_extglob_pattern, + ACTIONS(7188), 1, + sym__brace_start, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(8141), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9976), 1, + sym_word, + ACTIONS(9980), 1, sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(8960), 1, - anon_sym_RPAREN, - STATE(5388), 1, + STATE(6980), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + ACTIONS(9978), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(7246), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + sym__extglob_blob, + STATE(6927), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236877,52 +263001,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189396] = 22, + [214294] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8962), 1, + ACTIONS(9982), 1, sym_raw_string, - ACTIONS(8964), 1, + ACTIONS(9984), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2791), 9, + STATE(3505), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236932,52 +263056,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189473] = 22, + [214371] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(8966), 1, + ACTIONS(9986), 1, sym_raw_string, - ACTIONS(8968), 1, + ACTIONS(9988), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3155), 9, + STATE(3592), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -236987,52 +263111,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189550] = 22, + [214448] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8970), 1, + ACTIONS(9990), 1, sym_raw_string, - ACTIONS(8972), 1, + ACTIONS(9992), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2803), 9, + STATE(3408), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237042,106 +263166,105 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189627] = 22, + [214525] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(8974), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(9994), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(8976), 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(3197), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [189704] = 21, - ACTIONS(3), 1, + sym_process_substitution, + [214600] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8978), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(9996), 1, + anon_sym_RPAREN, + STATE(5831), 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(9500), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3891), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237151,51 +263274,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189779] = 21, - ACTIONS(3), 1, + [214675] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8980), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(9998), 1, + anon_sym_RPAREN, + STATE(5831), 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(9500), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4015), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237205,52 +263328,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189854] = 22, + [214750] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(8982), 1, + ACTIONS(10000), 1, sym_raw_string, - ACTIONS(8984), 1, + ACTIONS(10002), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2775), 9, + STATE(3622), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237260,52 +263383,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [189931] = 22, + [214827] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8986), 1, + ACTIONS(10004), 1, sym_raw_string, - ACTIONS(8988), 1, + ACTIONS(10006), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2667), 9, + STATE(3611), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237315,52 +263438,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190008] = 22, + [214904] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(8990), 1, + ACTIONS(10008), 1, sym_raw_string, - ACTIONS(8992), 1, + ACTIONS(10010), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3235), 9, + STATE(2993), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237370,51 +263493,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190085] = 21, - ACTIONS(3), 1, + [214981] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3580), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(3582), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8994), 1, - aux_sym_heredoc_redirect_token1, - STATE(3492), 1, - aux_sym__heredoc_command, - STATE(5338), 1, + ACTIONS(10012), 1, + anon_sym_RPAREN, + STATE(5831), 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(9500), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5043), 9, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3969), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237424,105 +263547,201 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190160] = 21, - ACTIONS(3), 1, + [215056] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3554), 1, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9498), 1, + anon_sym_DQUOTE, + ACTIONS(9502), 1, + aux_sym_number_token1, + ACTIONS(9504), 1, + aux_sym_number_token2, + ACTIONS(9506), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9508), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9510), 1, + anon_sym_BQUOTE, + ACTIONS(9512), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10014), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [215131] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9436), 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, + ACTIONS(9440), 1, + sym_variable_name, + ACTIONS(10016), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10018), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3520), 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, - [190235] = 21, + [215208] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(10022), 1, + anon_sym_DQUOTE, + ACTIONS(10026), 1, + sym_variable_name, + STATE(5754), 1, + sym_string, + ACTIONS(10024), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10020), 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(1237), 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, + [215257] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(8998), 1, + ACTIONS(10028), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3545), 2, + STATE(4047), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237532,107 +263751,106 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190310] = 22, - ACTIONS(71), 1, + [215332] = 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(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9000), 1, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(10030), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, sym_raw_string, - ACTIONS(9002), 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(2669), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [190387] = 22, + sym_process_substitution, + [215407] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9004), 1, + ACTIONS(10032), 1, sym_raw_string, - ACTIONS(9006), 1, + ACTIONS(10034), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3257), 9, + STATE(2994), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237642,51 +263860,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190464] = 21, + [215484] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(9008), 1, + ACTIONS(10036), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(4047), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -237696,52 +263914,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190539] = 22, + [215559] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9010), 1, + ACTIONS(10038), 1, sym_raw_string, - ACTIONS(9012), 1, + ACTIONS(10040), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2671), 9, + STATE(3515), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237751,52 +263969,134 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190616] = 22, + [215636] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1249), 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, + [215685] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(8368), 1, + anon_sym_DQUOTE, + ACTIONS(8372), 1, + sym_variable_name, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8366), 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(1237), 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, + [215734] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9014), 1, + ACTIONS(10042), 1, sym_raw_string, - ACTIONS(9016), 1, + ACTIONS(10044), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3268), 9, + STATE(2940), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237806,52 +264106,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190693] = 22, + [215811] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9018), 1, + ACTIONS(10046), 1, sym_raw_string, - ACTIONS(9020), 1, + ACTIONS(10048), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2672), 9, + STATE(2960), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237861,52 +264161,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190770] = 22, + [215888] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9022), 1, + ACTIONS(10050), 1, sym_raw_string, - ACTIONS(9024), 1, + ACTIONS(10052), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3280), 9, + STATE(2996), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -237916,159 +264216,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [190847] = 21, + [215965] = 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, - 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_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(9026), 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(3552), 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, - [190922] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3556), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3558), 1, + ACTIONS(9410), 1, + anon_sym_LPAREN, + ACTIONS(9412), 1, + anon_sym_BANG, + ACTIONS(9418), 1, + anon_sym_TILDE, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(3560), 1, - sym__special_character, - ACTIONS(3562), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(3564), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(3568), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3570), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3572), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(3574), 1, + ACTIONS(9436), 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(9440), 1, + sym_variable_name, + ACTIONS(10054), 1, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5043), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10056), 1, + aux_sym__simple_variable_name_token1, + STATE(3551), 1, + sym__arithmetic_binary_expression, + STATE(3553), 1, + sym__arithmetic_ternary_expression, + STATE(3554), 1, + sym__arithmetic_unary_expression, + STATE(3555), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9414), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9416), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3518), 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, + [216042] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(9030), 1, + ACTIONS(10058), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(3956), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238078,52 +264325,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191072] = 22, + [216117] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9032), 1, + ACTIONS(10060), 1, sym_raw_string, - ACTIONS(9034), 1, + ACTIONS(10062), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2673), 9, + STATE(2998), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238133,52 +264380,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191149] = 22, + [216194] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9036), 1, + ACTIONS(10064), 1, sym_raw_string, - ACTIONS(9038), 1, + ACTIONS(10066), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3020), 9, + STATE(3412), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238188,52 +264435,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191226] = 22, + [216271] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9040), 1, + ACTIONS(10068), 1, sym_raw_string, - ACTIONS(9042), 1, + ACTIONS(10070), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2674), 9, + STATE(2949), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238243,52 +264490,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191303] = 22, + [216348] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9044), 1, + ACTIONS(10072), 1, sym_raw_string, - ACTIONS(9046), 1, + ACTIONS(10074), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3023), 9, + STATE(2997), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238298,52 +264545,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191380] = 22, + [216425] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9048), 1, + ACTIONS(10076), 1, sym_raw_string, - ACTIONS(9050), 1, + ACTIONS(10078), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2675), 9, + STATE(3519), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238353,52 +264600,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191457] = 22, + [216502] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9052), 1, + ACTIONS(10080), 1, sym_raw_string, - ACTIONS(9054), 1, + ACTIONS(10082), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3026), 9, + STATE(3398), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238408,52 +264655,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191534] = 22, + [216579] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9056), 1, + ACTIONS(10084), 1, sym_raw_string, - ACTIONS(9058), 1, + ACTIONS(10086), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2676), 9, + STATE(3586), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238463,52 +264710,88 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191611] = 22, + [216656] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(6378), 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(6380), 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, + [216695] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9060), 1, + ACTIONS(10088), 1, sym_raw_string, - ACTIONS(9062), 1, + ACTIONS(10090), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3028), 9, + STATE(3486), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238518,105 +264801,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [191688] = 21, + [216772] = 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(9299), 1, + anon_sym_LPAREN, + ACTIONS(9301), 1, + anon_sym_BANG, + ACTIONS(9307), 1, + anon_sym_TILDE, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, - sym_test_operator, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(9064), 1, - anon_sym_RPAREN, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9329), 1, + sym_variable_name, + ACTIONS(10092), 1, sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3562), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10094), 1, + aux_sym__simple_variable_name_token1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, + sym__arithmetic_binary_expression, + STATE(3140), 1, + sym__arithmetic_ternary_expression, + STATE(3141), 1, + sym__arithmetic_unary_expression, + ACTIONS(9303), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9305), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2999), 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, - [191763] = 21, - ACTIONS(71), 1, + [216849] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8633), 1, - sym_word, - ACTIONS(8637), 1, + ACTIONS(3989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(3995), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(4015), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(9066), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(10096), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8661), 2, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5021), 9, + ACTIONS(3975), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238626,106 +264910,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, + [216924] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(9486), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, + ACTIONS(9496), 1, sym__special_character, - ACTIONS(8645), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(9516), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(9072), 1, + ACTIONS(10098), 1, anon_sym_RPAREN, - STATE(5388), 1, + STATE(5831), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(9500), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3474), 2, + STATE(4047), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(5557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238735,52 +264964,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191990] = 22, + [216999] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9074), 1, + ACTIONS(10100), 1, sym_raw_string, - ACTIONS(9076), 1, + ACTIONS(10102), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2679), 9, + STATE(3521), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238790,52 +265019,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192067] = 22, + [217076] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9078), 1, + ACTIONS(10104), 1, sym_raw_string, - ACTIONS(9080), 1, + ACTIONS(10106), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3033), 9, + STATE(2961), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238845,52 +265074,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192144] = 22, + [217153] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9082), 1, + ACTIONS(10108), 1, sym_raw_string, - ACTIONS(9084), 1, + ACTIONS(10110), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2680), 9, + STATE(3415), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -238900,217 +265129,214 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192221] = 22, + [217230] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9086), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10112), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9088), 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(3036), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192298] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [217305] = 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(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9090), 1, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(10114), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 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(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192375] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [217380] = 21, + 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, + ACTIONS(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9094), 1, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(10116), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, sym_raw_string, - ACTIONS(9096), 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(3038), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192452] = 22, + sym_process_substitution, + [217455] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9098), 1, + ACTIONS(10118), 1, sym_raw_string, - ACTIONS(9100), 1, + ACTIONS(10120), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2682), 9, + STATE(3000), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239120,52 +265346,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192529] = 22, + [217532] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9102), 1, + ACTIONS(10122), 1, sym_raw_string, - ACTIONS(9104), 1, + ACTIONS(10124), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3040), 9, + STATE(3523), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239175,52 +265401,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192606] = 22, + [217609] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9106), 1, + ACTIONS(10126), 1, sym_raw_string, - ACTIONS(9108), 1, + ACTIONS(10128), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2683), 9, + STATE(2920), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239230,107 +265456,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192683] = 22, + [217686] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9110), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10130), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9112), 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(3042), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [192760] = 22, + sym_process_substitution, + [217761] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9114), 1, + ACTIONS(10132), 1, sym_raw_string, - ACTIONS(9116), 1, + ACTIONS(10134), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2684), 9, + STATE(3026), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239340,52 +265565,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192837] = 22, + [217838] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9118), 1, + ACTIONS(10136), 1, sym_raw_string, - ACTIONS(9120), 1, + ACTIONS(10138), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3044), 9, + STATE(2914), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239395,52 +265620,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192914] = 22, + [217915] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9122), 1, + ACTIONS(10140), 1, sym_raw_string, - ACTIONS(9124), 1, + ACTIONS(10142), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2685), 9, + STATE(3001), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239450,52 +265675,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [192991] = 22, + [217992] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9126), 1, + ACTIONS(10144), 1, sym_raw_string, - ACTIONS(9128), 1, + ACTIONS(10146), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3046), 9, + STATE(3525), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239505,52 +265730,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193068] = 22, + [218069] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8597), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8599), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8605), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8607), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9130), 1, + ACTIONS(10148), 1, sym_raw_string, - ACTIONS(9132), 1, + ACTIONS(10150), 1, aux_sym__simple_variable_name_token1, - STATE(3262), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3267), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3272), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3274), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8601), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8603), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3025), 9, + STATE(3027), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239560,52 +265785,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193145] = 22, + [218146] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9134), 1, + ACTIONS(10152), 1, sym_raw_string, - ACTIONS(9136), 1, + ACTIONS(10154), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3048), 9, + STATE(3417), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239615,52 +265840,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193222] = 22, + [218223] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9138), 1, + ACTIONS(10156), 1, sym_raw_string, - ACTIONS(9140), 1, + ACTIONS(10158), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2688), 9, + STATE(3028), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239670,52 +265895,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193299] = 22, + [218300] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9142), 1, + ACTIONS(10160), 1, sym_raw_string, - ACTIONS(9144), 1, + ACTIONS(10162), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3050), 9, + STATE(3029), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239725,52 +265950,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193376] = 22, + [218377] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9146), 1, + ACTIONS(10164), 1, sym_raw_string, - ACTIONS(9148), 1, + ACTIONS(10166), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2689), 9, + STATE(3002), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239780,52 +266005,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193453] = 22, + [218454] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9150), 1, + ACTIONS(10168), 1, sym_raw_string, - ACTIONS(9152), 1, + ACTIONS(10170), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3052), 9, + STATE(3527), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239835,52 +266060,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193530] = 22, + [218531] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9154), 1, + ACTIONS(10172), 1, sym_raw_string, - ACTIONS(9156), 1, + ACTIONS(10174), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2690), 9, + STATE(3534), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239890,52 +266115,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193607] = 22, + [218608] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9158), 1, + ACTIONS(10176), 1, sym_raw_string, - ACTIONS(9160), 1, + ACTIONS(10178), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3054), 9, + STATE(3030), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -239945,52 +266170,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193684] = 22, + [218685] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9162), 1, + ACTIONS(10180), 1, sym_raw_string, - ACTIONS(9164), 1, + ACTIONS(10182), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2691), 9, + STATE(2950), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240000,52 +266225,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193761] = 22, + [218762] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(10186), 1, + anon_sym_DQUOTE, + ACTIONS(10190), 1, + sym_variable_name, + STATE(5779), 1, + sym_string, + ACTIONS(10188), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10184), 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(1249), 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, + [218811] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9166), 1, + ACTIONS(10192), 1, sym_raw_string, - ACTIONS(9168), 1, + ACTIONS(10194), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3055), 9, + STATE(3003), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240055,107 +266321,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193838] = 22, + [218888] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9170), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10196), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9172), 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(2692), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [193915] = 22, + sym_process_substitution, + [218963] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9174), 1, + ACTIONS(10198), 1, sym_raw_string, - ACTIONS(9176), 1, + ACTIONS(10200), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3057), 9, + STATE(3529), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240165,52 +266430,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [193992] = 22, + [219040] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9178), 1, + ACTIONS(10202), 1, sym_raw_string, - ACTIONS(9180), 1, + ACTIONS(10204), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2693), 9, + STATE(3031), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240220,52 +266485,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194069] = 22, + [219117] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9182), 1, + ACTIONS(10206), 1, sym_raw_string, - ACTIONS(9184), 1, + ACTIONS(10208), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3058), 9, + STATE(3032), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240275,52 +266540,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194146] = 22, + [219194] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9186), 1, + ACTIONS(10210), 1, sym_raw_string, - ACTIONS(9188), 1, + ACTIONS(10212), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2694), 9, + STATE(3593), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240330,107 +266595,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194223] = 22, + [219271] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9190), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10214), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9192), 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(3060), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4038), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [194300] = 22, + sym_process_substitution, + [219346] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9194), 1, + ACTIONS(10216), 1, sym_raw_string, - ACTIONS(9196), 1, + ACTIONS(10218), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3266), 9, + STATE(3633), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240440,52 +266704,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194377] = 22, + [219423] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9198), 1, + ACTIONS(10220), 1, sym_raw_string, - ACTIONS(9200), 1, + ACTIONS(10222), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2695), 9, + STATE(3004), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240495,52 +266759,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194454] = 22, + [219500] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9202), 1, + ACTIONS(10224), 1, sym_raw_string, - ACTIONS(9204), 1, + ACTIONS(10226), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3061), 9, + STATE(3532), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240550,52 +266814,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194531] = 22, + [219577] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9206), 1, + ACTIONS(10228), 1, sym_raw_string, - ACTIONS(9208), 1, + ACTIONS(10230), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3269), 9, + STATE(2930), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240605,52 +266869,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194608] = 22, + [219654] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9210), 1, + ACTIONS(10232), 1, sym_raw_string, - ACTIONS(9212), 1, + ACTIONS(10234), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3270), 9, + STATE(2963), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240660,52 +266924,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194685] = 22, + [219731] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9214), 1, + ACTIONS(10236), 1, sym_raw_string, - ACTIONS(9216), 1, + ACTIONS(10238), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3271), 9, + STATE(3419), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240715,52 +266979,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194762] = 22, + [219808] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9218), 1, + ACTIONS(10240), 1, sym_raw_string, - ACTIONS(9220), 1, + ACTIONS(10242), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2696), 9, + STATE(3426), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240770,52 +267034,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194839] = 22, + [219885] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9222), 1, + ACTIONS(10244), 1, sym_raw_string, - ACTIONS(9224), 1, + ACTIONS(10246), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3063), 9, + STATE(3005), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240825,52 +267089,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194916] = 22, + [219962] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9226), 1, + ACTIONS(10248), 1, sym_raw_string, - ACTIONS(9228), 1, + ACTIONS(10250), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3273), 9, + STATE(3535), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240880,52 +267144,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [194993] = 22, + [220039] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9230), 1, + ACTIONS(10252), 1, sym_raw_string, - ACTIONS(9232), 1, + ACTIONS(10254), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2697), 9, + STATE(3595), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240935,52 +267199,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195070] = 22, + [220116] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9234), 1, + ACTIONS(10256), 1, sym_raw_string, - ACTIONS(9236), 1, + ACTIONS(10258), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3065), 9, + STATE(3632), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -240990,52 +267254,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195147] = 22, + [220193] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9238), 1, + ACTIONS(10260), 1, sym_raw_string, - ACTIONS(9240), 1, + ACTIONS(10262), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3276), 9, + STATE(2942), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241045,107 +267309,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195224] = 22, + [220270] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9242), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10264), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9244), 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(2698), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [195301] = 22, + sym_process_substitution, + [220345] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9246), 1, + ACTIONS(10266), 1, sym_raw_string, - ACTIONS(9248), 1, + ACTIONS(10268), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3067), 9, + STATE(3379), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241155,52 +267418,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195378] = 22, + [220422] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9250), 1, + ACTIONS(10270), 1, sym_raw_string, - ACTIONS(9252), 1, + ACTIONS(10272), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3278), 9, + STATE(3006), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241210,52 +267473,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195455] = 22, + [220499] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9254), 1, + ACTIONS(10274), 1, sym_raw_string, - ACTIONS(9256), 1, + ACTIONS(10276), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3285), 9, + STATE(3537), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241265,52 +267528,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195532] = 22, + [220576] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9258), 1, + ACTIONS(10278), 1, sym_raw_string, - ACTIONS(9260), 1, + ACTIONS(10280), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2699), 9, + STATE(3386), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241320,107 +267583,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195609] = 22, + [220653] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9262), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10282), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9264), 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(3069), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [195686] = 22, + sym_process_substitution, + [220728] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9266), 1, + ACTIONS(10284), 1, sym_raw_string, - ACTIONS(9268), 1, + ACTIONS(10286), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3286), 9, + STATE(3388), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241430,52 +267692,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195763] = 22, + [220805] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9270), 1, + ACTIONS(10288), 1, sym_raw_string, - ACTIONS(9272), 1, + ACTIONS(10290), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2700), 9, + STATE(3481), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241485,52 +267747,93 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195840] = 22, + [220882] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(10186), 1, + anon_sym_DQUOTE, + ACTIONS(10190), 1, + sym_variable_name, + STATE(5779), 1, + sym_string, + ACTIONS(10188), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10184), 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(1237), 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, + [220931] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9274), 1, + ACTIONS(10292), 1, sym_raw_string, - ACTIONS(9276), 1, + ACTIONS(10294), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3071), 9, + STATE(2964), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241540,107 +267843,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [195917] = 22, + [221008] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10296), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9280), 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(2701), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4062), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [195994] = 22, + sym_process_substitution, + [221083] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9282), 1, + ACTIONS(10298), 1, sym_raw_string, - ACTIONS(9284), 1, + ACTIONS(10300), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3072), 9, + STATE(3007), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241650,52 +267952,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196071] = 22, + [221160] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9286), 1, + ACTIONS(10302), 1, sym_raw_string, - ACTIONS(9288), 1, + ACTIONS(10304), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2702), 9, + STATE(3539), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241705,52 +268007,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196148] = 22, + [221237] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9290), 1, + ACTIONS(10306), 1, sym_raw_string, - ACTIONS(9292), 1, + ACTIONS(10308), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3074), 9, + STATE(3428), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241760,107 +268062,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196225] = 22, + [221314] = 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(2189), 1, + anon_sym_RPAREN, + ACTIONS(10310), 1, + sym_word, + ACTIONS(10313), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10316), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10319), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(10322), 1, + sym__special_character, + ACTIONS(10325), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(10331), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(10334), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(10337), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(10340), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(10343), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10346), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9294), 1, + ACTIONS(10352), 1, + sym_test_operator, + ACTIONS(10355), 1, + sym__brace_start, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(10328), 2, sym_raw_string, - ACTIONS(9296), 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(2703), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10349), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [196302] = 22, + sym_process_substitution, + [221389] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9298), 1, + ACTIONS(10358), 1, sym_raw_string, - ACTIONS(9300), 1, + ACTIONS(10360), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3076), 9, + STATE(3088), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241870,52 +268171,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196379] = 22, + [221466] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9302), 1, + ACTIONS(10362), 1, sym_raw_string, - ACTIONS(9304), 1, + ACTIONS(10364), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2704), 9, + STATE(3389), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241925,52 +268226,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196456] = 22, + [221543] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9306), 1, + ACTIONS(10366), 1, sym_raw_string, - ACTIONS(9308), 1, + ACTIONS(10368), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3079), 9, + STATE(3390), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -241980,107 +268281,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196533] = 22, - ACTIONS(71), 1, + [221620] = 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(3989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(3995), 1, + sym__special_character, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(4003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(4007), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(4009), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9310), 1, + ACTIONS(4015), 1, + sym_test_operator, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(10370), 1, + aux_sym_heredoc_redirect_token1, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3975), 3, sym_raw_string, - ACTIONS(9312), 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(2705), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [196610] = 22, + sym_process_substitution, + [221695] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9314), 1, + ACTIONS(10372), 1, sym_raw_string, - ACTIONS(9316), 1, + ACTIONS(10374), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3081), 9, + STATE(3391), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242090,52 +268390,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196687] = 22, + [221772] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9318), 1, + ACTIONS(10376), 1, sym_raw_string, - ACTIONS(9320), 1, + ACTIONS(10378), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3287), 9, + STATE(3392), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242145,52 +268445,88 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196764] = 22, + [221849] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(6382), 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(6384), 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, + [221888] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9322), 1, + ACTIONS(10380), 1, sym_raw_string, - ACTIONS(9324), 1, + ACTIONS(10382), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3288), 9, + STATE(3008), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242200,52 +268536,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196841] = 22, + [221965] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9326), 1, + ACTIONS(10384), 1, sym_raw_string, - ACTIONS(9328), 1, + ACTIONS(10386), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2706), 9, + STATE(3541), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242255,52 +268591,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196918] = 22, + [222042] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9330), 1, + ACTIONS(10388), 1, sym_raw_string, - ACTIONS(9332), 1, + ACTIONS(10390), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3083), 9, + STATE(2951), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242310,52 +268646,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [196995] = 22, + [222119] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9334), 1, + ACTIONS(10392), 1, sym_raw_string, - ACTIONS(9336), 1, + ACTIONS(10394), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2707), 9, + STATE(3623), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242365,52 +268701,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197072] = 22, + [222196] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9338), 1, + ACTIONS(10396), 1, sym_raw_string, - ACTIONS(9340), 1, + ACTIONS(10398), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3084), 9, + STATE(3393), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242420,52 +268756,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197149] = 22, + [222273] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9342), 1, + ACTIONS(10400), 1, sym_raw_string, - ACTIONS(9344), 1, + ACTIONS(10402), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3251), 9, + STATE(3395), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242475,52 +268811,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197226] = 22, + [222350] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9346), 1, + ACTIONS(10404), 1, sym_raw_string, - ACTIONS(9348), 1, + ACTIONS(10406), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3089), 9, + STATE(3517), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242530,162 +268866,160 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197303] = 22, + [222427] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9350), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10408), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9352), 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(2708), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [197380] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [222502] = 21, + 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, + ACTIONS(10413), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(10415), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10418), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10421), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(10424), 1, + sym__special_character, + ACTIONS(10427), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(10430), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(10433), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(10436), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(10439), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(10442), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10445), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9354), 1, + ACTIONS(10451), 1, + sym_test_operator, + ACTIONS(10454), 1, + sym__brace_start, + STATE(4063), 1, + aux_sym__heredoc_command, + STATE(5842), 1, + aux_sym__literal_repeat1, + STATE(5924), 1, + sym_concatenation, + ACTIONS(10448), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10410), 3, sym_raw_string, - ACTIONS(9356), 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(3085), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + sym_word, + STATE(5595), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [197457] = 22, + sym_process_substitution, + [222577] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9358), 1, + ACTIONS(10457), 1, sym_raw_string, - ACTIONS(9360), 1, + ACTIONS(10459), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2709), 9, + STATE(3009), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242695,107 +269029,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197534] = 22, + [222654] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9362), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10461), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9364), 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(3086), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3999), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [197611] = 22, + sym_process_substitution, + [222729] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9366), 1, + ACTIONS(10463), 1, sym_raw_string, - ACTIONS(9368), 1, + ACTIONS(10465), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2710), 9, + STATE(3543), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242805,52 +269138,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197688] = 22, + [222806] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9370), 1, + ACTIONS(10467), 1, sym_raw_string, - ACTIONS(9372), 1, + ACTIONS(10469), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3088), 9, + STATE(2965), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242860,93 +269193,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, + [222883] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9382), 1, + ACTIONS(10471), 1, sym_raw_string, - ACTIONS(9384), 1, + ACTIONS(10473), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2711), 9, + STATE(3442), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -242956,52 +269248,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [197891] = 22, + [222960] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9386), 1, + ACTIONS(10475), 1, sym_raw_string, - ACTIONS(9388), 1, + ACTIONS(10477), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3090), 9, + STATE(3375), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243011,93 +269303,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, + [223037] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9390), 1, + ACTIONS(10479), 1, sym_raw_string, - ACTIONS(9392), 1, + ACTIONS(10481), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2713), 9, + STATE(3263), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243107,107 +269358,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198094] = 22, + [223114] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9394), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10483), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9396), 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(3093), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4076), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [198171] = 22, + sym_process_substitution, + [223189] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9398), 1, + ACTIONS(10485), 1, sym_raw_string, - ACTIONS(9400), 1, + ACTIONS(10487), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2714), 9, + STATE(3148), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243217,52 +269467,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198248] = 22, + [223266] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9402), 1, + ACTIONS(10489), 1, sym_raw_string, - ACTIONS(9404), 1, + ACTIONS(10491), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3094), 9, + STATE(3010), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243272,52 +269522,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198325] = 22, + [223343] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9406), 1, + ACTIONS(10493), 1, sym_raw_string, - ACTIONS(9408), 1, + ACTIONS(10495), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2716), 9, + STATE(3547), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243327,107 +269577,147 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198402] = 22, - ACTIONS(71), 1, + [223420] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, - anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(10022), 1, + anon_sym_DQUOTE, + ACTIONS(10026), 1, + sym_variable_name, + STATE(5754), 1, + sym_string, + ACTIONS(10024), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10020), 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(1249), 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, + [223469] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, + anon_sym_DOLLAR, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9410), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10497), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9412), 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(3096), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4047), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [198479] = 22, + sym_process_substitution, + [223544] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9414), 1, + ACTIONS(10499), 1, sym_raw_string, - ACTIONS(9416), 1, + ACTIONS(10501), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2717), 9, + STATE(3634), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243437,52 +269727,88 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198556] = 22, + [223621] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(5726), 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(5728), 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, + [223660] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9418), 1, + ACTIONS(10503), 1, sym_raw_string, - ACTIONS(9420), 1, + ACTIONS(10505), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3098), 9, + STATE(3396), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243492,52 +269818,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198633] = 22, + [223737] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9422), 1, + ACTIONS(10507), 1, sym_raw_string, - ACTIONS(9424), 1, + ACTIONS(10509), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2718), 9, + STATE(3087), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243547,52 +269873,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198710] = 22, + [223814] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9299), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9301), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9307), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9309), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9311), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9315), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9317), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9329), 1, sym_variable_name, - ACTIONS(9426), 1, + ACTIONS(10511), 1, sym_raw_string, - ACTIONS(9428), 1, + ACTIONS(10513), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3109), 1, + sym__arithmetic_postfix_expression, + STATE(3134), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3140), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3141), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, - sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9305), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3100), 9, + STATE(2966), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243602,52 +269928,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198787] = 22, + [223891] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8406), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8408), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8414), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8416), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9430), 1, + ACTIONS(10515), 1, sym_raw_string, - ACTIONS(9432), 1, + ACTIONS(10517), 1, aux_sym__simple_variable_name_token1, - STATE(2712), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(2715), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(2727), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(2729), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8410), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8412), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2719), 9, + STATE(3456), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243657,52 +269983,52 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198864] = 22, + [223968] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9528), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9530), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9536), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9538), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9540), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9544), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9546), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9434), 1, + ACTIONS(10519), 1, sym_raw_string, - ACTIONS(9436), 1, + ACTIONS(10521), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3409), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3420), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3423), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3427), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9532), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9534), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3102), 9, + STATE(3401), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243712,107 +270038,106 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [198941] = 22, + [224045] = 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(9486), 1, + sym_word, + ACTIONS(9490), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9496), 1, + sym__special_character, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9438), 1, + ACTIONS(9516), 1, + sym_test_operator, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(10523), 1, + anon_sym_RPAREN, + STATE(5831), 1, + aux_sym__literal_repeat1, + ACTIONS(9500), 2, sym_raw_string, - ACTIONS(9440), 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(2720), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(9514), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3963), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5557), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199018] = 22, + sym_process_substitution, + [224120] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(9410), 1, anon_sym_LPAREN, - ACTIONS(8567), 1, + ACTIONS(9412), 1, anon_sym_BANG, - ACTIONS(8573), 1, + ACTIONS(9418), 1, anon_sym_TILDE, - ACTIONS(8575), 1, + ACTIONS(9420), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9422), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9426), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9428), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9432), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9440), 1, sym_variable_name, - ACTIONS(9442), 1, + ACTIONS(10525), 1, sym_raw_string, - ACTIONS(9444), 1, + ACTIONS(10527), 1, aux_sym__simple_variable_name_token1, - STATE(3024), 1, + STATE(3551), 1, sym__arithmetic_binary_expression, - STATE(3027), 1, + STATE(3553), 1, sym__arithmetic_ternary_expression, - STATE(3031), 1, + STATE(3554), 1, sym__arithmetic_unary_expression, - STATE(3034), 1, + STATE(3555), 1, sym__arithmetic_postfix_expression, - ACTIONS(8569), 2, + ACTIONS(9414), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(8571), 2, + ACTIONS(9416), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3104), 9, + STATE(3510), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -243822,1709 +270147,1788 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [199095] = 22, + [224197] = 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(1645), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10529), 1, + sym_word, + ACTIONS(10531), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10533), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10535), 1, + sym__special_character, + ACTIONS(10537), 1, + anon_sym_DQUOTE, + ACTIONS(10541), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10543), 1, + anon_sym_BQUOTE, + ACTIONS(10545), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10549), 1, + sym_test_operator, + ACTIONS(10551), 1, + sym_regex, + STATE(1566), 1, + aux_sym__literal_repeat1, + STATE(1755), 1, + sym_concatenation, + ACTIONS(10539), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10547), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1081), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224271] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8935), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8937), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8939), 1, + anon_sym_DOLLAR, + ACTIONS(8941), 1, + sym__special_character, + ACTIONS(8943), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8947), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8949), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9446), 1, + ACTIONS(8967), 1, + sym__brace_start, + ACTIONS(10553), 1, + sym_word, + ACTIONS(10557), 1, + sym_test_operator, + STATE(2135), 1, + aux_sym__literal_repeat1, + ACTIONS(8959), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10555), 2, sym_raw_string, - ACTIONS(9448), 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(2721), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(656), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199172] = 22, + sym_process_substitution, + [224343] = 20, 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(8805), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8809), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9450), 1, + ACTIONS(8837), 1, + sym__brace_start, + ACTIONS(8857), 1, + sym__special_character, + ACTIONS(10559), 1, + sym_word, + ACTIONS(10563), 1, + sym_test_operator, + STATE(2171), 1, + aux_sym__literal_repeat1, + ACTIONS(8829), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10561), 2, sym_raw_string, - ACTIONS(9452), 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(3106), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(661), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1631), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199249] = 22, + sym_process_substitution, + [224415] = 20, 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(8805), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8809), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9454), 1, + ACTIONS(8837), 1, + sym__brace_start, + ACTIONS(8857), 1, + sym__special_character, + ACTIONS(10559), 1, + sym_word, + ACTIONS(10563), 1, + sym_test_operator, + STATE(2171), 1, + aux_sym__literal_repeat1, + ACTIONS(8829), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10561), 2, sym_raw_string, - ACTIONS(9456), 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(2722), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(665), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1631), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199326] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [224487] = 19, + 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10567), 1, + anon_sym_RBRACK, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224557] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9458), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10575), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9460), 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(3108), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199403] = 3, - ACTIONS(71), 1, + sym_process_substitution, + [224627] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5886), 10, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(10579), 1, + anon_sym_DQUOTE, + ACTIONS(10583), 1, + sym_variable_name, + STATE(5960), 1, + sym_string, + ACTIONS(10581), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10577), 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(1249), 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_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5888), 21, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [224675] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, sym_file_descriptor, + ACTIONS(10579), 1, + anon_sym_DQUOTE, + ACTIONS(10583), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + STATE(5960), 1, + sym_string, + ACTIONS(10581), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10577), 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(1237), 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_LT, + anon_sym_LT_LT_DASH, + [224723] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9095), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(9097), 1, + anon_sym_DOLLAR, + ACTIONS(9099), 1, sym__special_character, + ACTIONS(9101), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9105), 1, + aux_sym_number_token1, + ACTIONS(9107), 1, + aux_sym_number_token2, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9111), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9113), 1, anon_sym_BQUOTE, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(9125), 1, + sym__brace_start, + ACTIONS(10585), 1, + sym_word, + ACTIONS(10589), 1, + sym_test_operator, + STATE(2058), 1, + aux_sym__literal_repeat1, + ACTIONS(9117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [199442] = 22, + ACTIONS(10587), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(655), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1628), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224795] = 20, 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(9093), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9095), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9097), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(9099), 1, + sym__special_character, + ACTIONS(9101), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9105), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9107), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9113), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9462), 1, + ACTIONS(9125), 1, + sym__brace_start, + ACTIONS(10585), 1, + sym_word, + ACTIONS(10589), 1, + sym_test_operator, + STATE(2058), 1, + aux_sym__literal_repeat1, + ACTIONS(9117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10587), 2, sym_raw_string, - ACTIONS(9464), 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(2723), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(685), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1628), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199519] = 22, + sym_process_substitution, + [224867] = 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(1601), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(1625), 1, + sym__brace_start, + ACTIONS(10591), 1, + sym_word, + ACTIONS(10593), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10595), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10597), 1, + sym__special_character, + ACTIONS(10599), 1, + anon_sym_DQUOTE, + ACTIONS(10603), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10605), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9466), 1, + ACTIONS(10611), 1, + sym_test_operator, + ACTIONS(10613), 1, + sym_regex, + STATE(1544), 1, + aux_sym__literal_repeat1, + STATE(1666), 1, + sym_concatenation, + ACTIONS(10601), 2, sym_raw_string, - ACTIONS(9468), 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(3110), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10609), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1187), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199596] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [224941] = 19, + 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(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9470), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10615), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9472), 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(2724), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199673] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [225011] = 19, + 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9474), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10617), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9476), 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(3112), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199750] = 22, + sym_process_substitution, + [225081] = 20, 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(8663), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8665), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8667), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8669), 1, + sym__special_character, + ACTIONS(8671), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8675), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8677), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8681), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8683), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9478), 1, + ACTIONS(8695), 1, + sym__brace_start, + ACTIONS(10619), 1, + sym_word, + ACTIONS(10623), 1, + sym_test_operator, + STATE(3798), 1, + aux_sym__literal_repeat1, + ACTIONS(8687), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10621), 2, sym_raw_string, - ACTIONS(9480), 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(2769), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2144), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3719), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199827] = 22, + sym_process_substitution, + [225153] = 20, 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(8663), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8665), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8667), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8669), 1, + sym__special_character, + ACTIONS(8671), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8675), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8677), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8681), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8683), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9482), 1, + ACTIONS(8695), 1, + sym__brace_start, + ACTIONS(10619), 1, + sym_word, + ACTIONS(10623), 1, + sym_test_operator, + STATE(3798), 1, + aux_sym__literal_repeat1, + ACTIONS(8687), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10621), 2, sym_raw_string, - ACTIONS(9484), 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(2725), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2149), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3719), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199904] = 22, + sym_process_substitution, + [225225] = 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(2788), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2790), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(2794), 1, + sym__special_character, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9486), 1, + ACTIONS(2818), 1, + sym__brace_start, + ACTIONS(10625), 1, + sym_word, + ACTIONS(10629), 1, + sym_test_operator, + ACTIONS(10631), 1, + sym_regex, + STATE(2683), 1, + aux_sym__literal_repeat1, + STATE(2840), 1, + sym_concatenation, + ACTIONS(2812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10627), 2, sym_raw_string, - ACTIONS(9488), 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(3115), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2485), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [199981] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [225299] = 19, + 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(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9490), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10633), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9492), 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(2726), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200058] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [225369] = 19, + 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9494), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10635), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9496), 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(3118), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200135] = 22, + sym_process_substitution, + [225439] = 20, 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(10637), 1, + sym_word, + ACTIONS(10639), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10641), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10643), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(10645), 1, + sym__special_character, + ACTIONS(10647), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(10651), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(10653), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(10655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(10657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(10659), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9498), 1, + ACTIONS(10665), 1, + sym_test_operator, + ACTIONS(10667), 1, + sym__brace_start, + STATE(2776), 1, + aux_sym__literal_repeat1, + ACTIONS(10649), 2, sym_raw_string, - ACTIONS(9500), 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(2728), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(879), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2607), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200212] = 22, + sym_process_substitution, + [225511] = 20, 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(10637), 1, + sym_word, + ACTIONS(10639), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10641), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10643), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(10645), 1, + sym__special_character, + ACTIONS(10647), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(10651), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(10653), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(10655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(10657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(10659), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9502), 1, + ACTIONS(10665), 1, + sym_test_operator, + ACTIONS(10667), 1, + sym__brace_start, + STATE(2776), 1, + aux_sym__literal_repeat1, + ACTIONS(10649), 2, sym_raw_string, - ACTIONS(9504), 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(3121), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(855), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2607), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [225583] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1428), 1, + anon_sym_DOLLAR, + ACTIONS(1434), 1, + aux_sym_number_token1, + ACTIONS(1436), 1, + aux_sym_number_token2, + ACTIONS(1440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1452), 1, + sym__brace_start, + ACTIONS(10669), 1, + sym_word, + ACTIONS(10671), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10675), 1, + sym__special_character, + ACTIONS(10677), 1, + anon_sym_DQUOTE, + ACTIONS(10681), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10683), 1, + anon_sym_BQUOTE, + ACTIONS(10685), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10689), 1, + sym_test_operator, + ACTIONS(10691), 1, + sym_regex, + STATE(1134), 1, + aux_sym__literal_repeat1, + STATE(1271), 1, + sym_concatenation, + ACTIONS(10679), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10687), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200289] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [225657] = 19, + 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(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9506), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10693), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9508), 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(2730), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200366] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [225727] = 19, + 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9510), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10695), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9512), 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(3124), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200443] = 22, + sym_process_substitution, + [225797] = 20, 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(4059), 1, + sym_word, + ACTIONS(4065), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(4071), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(4073), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(4077), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(4085), 1, + sym_test_operator, + ACTIONS(4087), 1, + sym__brace_start, + ACTIONS(10697), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10699), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10701), 1, + sym__special_character, + ACTIONS(10703), 1, + anon_sym_DQUOTE, + ACTIONS(10707), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10709), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10711), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9514), 1, + STATE(2602), 1, + aux_sym__literal_repeat1, + ACTIONS(10705), 2, sym_raw_string, - ACTIONS(9516), 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(2731), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10713), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(752), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2019), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200520] = 22, + sym_process_substitution, + [225869] = 20, 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(4059), 1, + sym_word, + ACTIONS(4065), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(4071), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(4073), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(4077), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(4085), 1, + sym_test_operator, + ACTIONS(4087), 1, + sym__brace_start, + ACTIONS(10697), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10699), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10701), 1, + sym__special_character, + ACTIONS(10703), 1, + anon_sym_DQUOTE, + ACTIONS(10707), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10709), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10711), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9518), 1, + STATE(2602), 1, + aux_sym__literal_repeat1, + ACTIONS(10705), 2, sym_raw_string, - ACTIONS(9520), 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(3126), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10713), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(758), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2019), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200597] = 22, + sym_process_substitution, + [225941] = 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(1468), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(1474), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(1476), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(1492), 1, + sym__brace_start, + ACTIONS(10715), 1, + sym_word, + ACTIONS(10717), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10719), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10721), 1, + sym__special_character, + ACTIONS(10723), 1, + anon_sym_DQUOTE, + ACTIONS(10727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10729), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10731), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9522), 1, + ACTIONS(10735), 1, + sym_test_operator, + ACTIONS(10737), 1, + sym_regex, + STATE(1283), 1, + aux_sym__literal_repeat1, + STATE(1577), 1, + sym_concatenation, + ACTIONS(10725), 2, sym_raw_string, - ACTIONS(9524), 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(2732), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10733), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1008), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200674] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [226015] = 19, + 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, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9526), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10739), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9528), 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(3128), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200751] = 22, - ACTIONS(71), 1, + sym_process_substitution, + [226085] = 19, + 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(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9530), 1, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10741), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, sym_raw_string, - ACTIONS(9532), 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(2733), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200828] = 22, + sym_process_substitution, + [226155] = 20, 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(3305), 1, + sym_word, + ACTIONS(3311), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3317), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3319), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3331), 1, + sym_test_operator, + ACTIONS(3333), 1, + sym__brace_start, + ACTIONS(10743), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10745), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10747), 1, + sym__special_character, + ACTIONS(10749), 1, + anon_sym_DQUOTE, + ACTIONS(10753), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10755), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9534), 1, + STATE(2236), 1, + aux_sym__literal_repeat1, + ACTIONS(10751), 2, sym_raw_string, - ACTIONS(9536), 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(3130), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10759), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(705), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1880), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200905] = 22, + sym_process_substitution, + [226227] = 20, 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(3305), 1, + sym_word, + ACTIONS(3311), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3317), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3319), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3331), 1, + sym_test_operator, + ACTIONS(3333), 1, + sym__brace_start, + ACTIONS(10743), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10745), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10747), 1, + sym__special_character, + ACTIONS(10749), 1, + anon_sym_DQUOTE, + ACTIONS(10753), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10755), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9538), 1, + STATE(2236), 1, + aux_sym__literal_repeat1, + ACTIONS(10751), 2, sym_raw_string, - ACTIONS(9540), 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(2734), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10759), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(693), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1880), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [200982] = 22, + sym_process_substitution, + [226299] = 20, 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(4319), 1, + sym_word, + ACTIONS(4325), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(4345), 1, + sym_test_operator, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(10761), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10763), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10765), 1, + sym__special_character, + ACTIONS(10767), 1, + anon_sym_DQUOTE, + ACTIONS(10771), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9542), 1, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(10769), 2, sym_raw_string, - ACTIONS(9544), 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(3132), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(789), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2051), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [201059] = 22, + sym_process_substitution, + [226371] = 20, 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(4319), 1, + sym_word, + ACTIONS(4325), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(4345), 1, + sym_test_operator, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(10761), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10763), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10765), 1, + sym__special_character, + ACTIONS(10767), 1, + anon_sym_DQUOTE, + ACTIONS(10771), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9546), 1, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(10769), 2, sym_raw_string, - ACTIONS(9548), 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(2735), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(791), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2051), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [201136] = 22, + sym_process_substitution, + [226443] = 20, 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(3745), 1, + sym_word, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3771), 1, + sym_test_operator, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(10779), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10781), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10783), 1, + sym__special_character, + ACTIONS(10785), 1, + anon_sym_DQUOTE, + ACTIONS(10789), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9550), 1, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(10787), 2, sym_raw_string, - ACTIONS(9552), 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(3134), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10795), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(723), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1752), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [201213] = 22, + sym_process_substitution, + [226515] = 20, 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(3745), 1, + sym_word, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3771), 1, + sym_test_operator, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(10779), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10781), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10783), 1, + sym__special_character, + ACTIONS(10785), 1, + anon_sym_DQUOTE, + ACTIONS(10789), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9554), 1, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(10787), 2, sym_raw_string, - ACTIONS(9556), 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(2776), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10795), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(724), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1752), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, 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, + sym_process_substitution, + [226587] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6390), 1, + ACTIONS(4325), 1, anon_sym_DOLLAR, - ACTIONS(6396), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6412), 1, - sym_extglob_pattern, - ACTIONS(6414), 1, + ACTIONS(4347), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(4658), 1, + sym_word, + ACTIONS(4662), 1, + sym_test_operator, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7512), 1, - sym__special_character, - ACTIONS(7514), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9558), 1, - sym_word, - ACTIONS(9562), 1, - sym_test_operator, - STATE(6307), 1, + ACTIONS(10797), 1, + sym__special_character, + STATE(2621), 1, aux_sym__literal_repeat1, - ACTIONS(7524), 2, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9560), 2, + ACTIONS(10799), 2, sym_raw_string, sym_ansi_c_string, - STATE(6456), 2, + STATE(850), 2, sym_concatenation, - sym__extglob_blob, - STATE(6153), 9, + aux_sym_for_statement_repeat1, + STATE(2438), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245534,434 +271938,465 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201463] = 22, + [226659] = 20, 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(4325), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(4658), 1, + sym_word, + ACTIONS(4662), 1, + sym_test_operator, + ACTIONS(10761), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10763), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10767), 1, + anon_sym_DQUOTE, + ACTIONS(10771), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9564), 1, + ACTIONS(10797), 1, + sym__special_character, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(10777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10799), 2, sym_raw_string, - ACTIONS(9566), 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(3113), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(851), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [201540] = 3, + sym_process_substitution, + [226731] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3751), 1, anon_sym_DOLLAR, + ACTIONS(3757), 1, aux_sym_number_token1, + ACTIONS(3759), 1, aux_sym_number_token2, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(4027), 1, sym_word, - ACTIONS(5707), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4031), 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, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(10785), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, anon_sym_BQUOTE, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(10801), 1, + sym__special_character, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [201579] = 3, + ACTIONS(10803), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(769), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2106), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226803] = 20, 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, + ACTIONS(3751), 1, anon_sym_DOLLAR, + ACTIONS(3757), 1, aux_sym_number_token1, + ACTIONS(3759), 1, aux_sym_number_token2, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(4027), 1, sym_word, - ACTIONS(2158), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4031), 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, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(10785), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, anon_sym_BQUOTE, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(10801), 1, + sym__special_character, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [201618] = 22, + ACTIONS(10803), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(770), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2106), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226875] = 20, 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(4381), 1, + sym_word, + ACTIONS(4387), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(4407), 1, + sym_test_operator, + ACTIONS(4409), 1, + sym__brace_start, + ACTIONS(10805), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10809), 1, + sym__special_character, + ACTIONS(10811), 1, + anon_sym_DQUOTE, + ACTIONS(10815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10817), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(10819), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9568), 1, + STATE(2558), 1, + aux_sym__literal_repeat1, + ACTIONS(10813), 2, 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, + ACTIONS(10821), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(795), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2074), 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, + [226947] = 20, 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(4381), 1, + sym_word, + ACTIONS(4387), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(4407), 1, + sym_test_operator, + ACTIONS(4409), 1, + sym__brace_start, + ACTIONS(10805), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10809), 1, + sym__special_character, + ACTIONS(10811), 1, + anon_sym_DQUOTE, + ACTIONS(10815), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10817), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(10819), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9572), 1, + STATE(2558), 1, + aux_sym__literal_repeat1, + ACTIONS(10813), 2, sym_raw_string, - ACTIONS(9574), 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(3159), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10821), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(797), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2074), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [201772] = 22, + sym_process_substitution, + [227019] = 20, 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(3775), 1, + sym_word, + ACTIONS(3781), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(3787), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(3789), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(3793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(3801), 1, + sym_test_operator, + ACTIONS(3803), 1, + sym__brace_start, + ACTIONS(10823), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10825), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10827), 1, + sym__special_character, + ACTIONS(10829), 1, + anon_sym_DQUOTE, + ACTIONS(10833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10835), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(10837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9576), 1, + STATE(2304), 1, + aux_sym__literal_repeat1, + ACTIONS(10831), 2, sym_raw_string, - ACTIONS(9578), 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(3156), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(10839), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(726), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1835), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - [201849] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4437), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + sym_command_substitution, + sym_process_substitution, + [227091] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3775), 1, + sym_word, + ACTIONS(3781), 1, anon_sym_DOLLAR, + ACTIONS(3787), 1, aux_sym_number_token1, + ACTIONS(3789), 1, aux_sym_number_token2, + ACTIONS(3793), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4439), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3801), 1, sym_test_operator, + ACTIONS(3803), 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(10823), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(10827), 1, sym__special_character, + ACTIONS(10829), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(10833), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(10835), 1, anon_sym_BQUOTE, + ACTIONS(10837), 1, anon_sym_DOLLAR_BQUOTE, + STATE(2304), 1, + aux_sym__literal_repeat1, + ACTIONS(10831), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [201888] = 22, + STATE(729), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1835), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227163] = 20, 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(5244), 1, + sym_word, + ACTIONS(5246), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5248), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5250), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(5254), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(5258), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(5260), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(5264), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(5266), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(5268), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9580), 1, + ACTIONS(5272), 1, + sym_test_operator, + ACTIONS(5274), 1, + sym__brace_start, + ACTIONS(10841), 1, + sym__special_character, + STATE(3364), 1, + aux_sym__literal_repeat1, + ACTIONS(5256), 2, sym_raw_string, - ACTIONS(9582), 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(3150), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(5270), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1040), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2780), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [201965] = 21, + sym_process_substitution, + [227235] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(5244), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(5246), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(5248), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(5250), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(5254), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(5258), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(5260), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(5264), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(5266), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(5268), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(5272), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(5274), 1, sym__brace_start, - ACTIONS(9584), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(10841), 1, + sym__special_character, + STATE(3364), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(5256), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(5270), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3700), 2, + STATE(1041), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(2780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245971,106 +272406,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202040] = 22, + [227307] = 20, 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(4909), 1, + sym_word, + ACTIONS(4911), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4913), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4915), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, + ACTIONS(4919), 1, anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(4923), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(4925), 1, aux_sym_number_token2, - ACTIONS(8617), 1, + ACTIONS(4927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(4929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(4931), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9586), 1, + ACTIONS(4937), 1, + sym_test_operator, + ACTIONS(4939), 1, + sym__brace_start, + ACTIONS(10843), 1, + sym__special_character, + STATE(2941), 1, + aux_sym__literal_repeat1, + ACTIONS(4921), 2, sym_raw_string, - ACTIONS(9588), 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(3021), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + ACTIONS(4935), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(891), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2734), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [202117] = 21, + sym_process_substitution, + [227379] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(4909), 1, sym_word, - ACTIONS(8637), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(4913), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, + ACTIONS(4915), 1, anon_sym_DOLLAR, - ACTIONS(8643), 1, - sym__special_character, - ACTIONS(8645), 1, + ACTIONS(4919), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(4923), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(4925), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(4927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(4929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(4931), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8663), 1, + ACTIONS(4937), 1, sym_test_operator, - ACTIONS(8665), 1, + ACTIONS(4939), 1, sym__brace_start, - ACTIONS(9590), 1, - anon_sym_RPAREN, - STATE(5388), 1, + ACTIONS(10843), 1, + sym__special_character, + STATE(2941), 1, aux_sym__literal_repeat1, - ACTIONS(8647), 2, + ACTIONS(4921), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8661), 2, + ACTIONS(4935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3488), 2, + STATE(888), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5021), 9, + STATE(2734), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246080,518 +272510,465 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202192] = 3, + [227451] = 20, 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, + ACTIONS(4325), 1, anon_sym_DOLLAR, + ACTIONS(4331), 1, aux_sym_number_token1, + ACTIONS(4333), 1, aux_sym_number_token2, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(4658), 1, sym_word, - ACTIONS(5270), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4662), 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, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(10767), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(10773), 1, anon_sym_BQUOTE, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(10797), 1, + sym__special_character, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [202231] = 22, + ACTIONS(10799), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(826), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227523] = 20, 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(4325), 1, anon_sym_DOLLAR, - ACTIONS(8609), 1, - anon_sym_DQUOTE, - ACTIONS(8613), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(8615), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(8617), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(4658), 1, + sym_word, + ACTIONS(4662), 1, + sym_test_operator, + ACTIONS(10761), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10763), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10767), 1, + anon_sym_DQUOTE, + ACTIONS(10771), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - ACTIONS(9592), 1, + ACTIONS(10797), 1, + sym__special_character, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(10777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10799), 2, sym_raw_string, - ACTIONS(9594), 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(3022), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(827), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2438), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [202308] = 3, + sym_process_substitution, + [227595] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3993), 1, anon_sym_DOLLAR, + ACTIONS(3999), 1, aux_sym_number_token1, + ACTIONS(4001), 1, aux_sym_number_token2, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(8466), 1, sym_word, - ACTIONS(1225), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8474), 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, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(10849), 1, sym__special_character, + ACTIONS(10851), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(10857), 1, anon_sym_BQUOTE, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, + STATE(5470), 1, + aux_sym__literal_repeat1, + ACTIONS(10853), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [202347] = 22, + STATE(3715), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5130), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227667] = 20, 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(3751), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(4027), 1, + sym_word, + ACTIONS(4031), 1, + sym_test_operator, + ACTIONS(10779), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10781), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10785), 1, + anon_sym_DQUOTE, + ACTIONS(10789), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9596), 1, + ACTIONS(10801), 1, + sym__special_character, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(10795), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10803), 2, sym_raw_string, - ACTIONS(9598), 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(2770), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(743), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2106), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [202424] = 22, + sym_process_substitution, + [227739] = 20, 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(8989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8993), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8995), 1, + sym__special_character, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9001), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9003), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_variable_name, - ACTIONS(9600), 1, + ACTIONS(9021), 1, + sym__brace_start, + ACTIONS(10863), 1, + sym_word, + ACTIONS(10867), 1, + sym_test_operator, + STATE(3035), 1, + aux_sym__literal_repeat1, + ACTIONS(9013), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10865), 2, sym_raw_string, - ACTIONS(9602), 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(3172), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(933), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2749), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [202501] = 22, + sym_process_substitution, + [227811] = 20, 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(8989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8993), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8995), 1, + sym__special_character, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(9001), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(9003), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9604), 1, + ACTIONS(9021), 1, + sym__brace_start, + ACTIONS(10863), 1, + sym_word, + ACTIONS(10867), 1, + sym_test_operator, + STATE(3035), 1, + aux_sym__literal_repeat1, + ACTIONS(9013), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10865), 2, sym_raw_string, - ACTIONS(9606), 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(2629), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(885), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2749), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, 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, + sym_process_substitution, + [227883] = 20, 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(8935), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8937), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8939), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, + ACTIONS(8941), 1, + sym__special_character, + ACTIONS(8943), 1, anon_sym_DQUOTE, - ACTIONS(8422), 1, + ACTIONS(8947), 1, aux_sym_number_token1, - ACTIONS(8424), 1, + ACTIONS(8949), 1, aux_sym_number_token2, - ACTIONS(8426), 1, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, + ACTIONS(8953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8436), 1, - sym_variable_name, - ACTIONS(9616), 1, + ACTIONS(8967), 1, + sym__brace_start, + ACTIONS(10553), 1, + sym_word, + ACTIONS(10557), 1, + sym_test_operator, + STATE(2135), 1, + aux_sym__literal_repeat1, + ACTIONS(8959), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10555), 2, sym_raw_string, - ACTIONS(9618), 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(2687), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_ansi_c_string, + STATE(664), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [202753] = 8, - ACTIONS(3), 1, + sym_process_substitution, + [227955] = 20, + 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, + ACTIONS(6260), 1, + sym_word, + ACTIONS(6266), 1, + anon_sym_DOLLAR, + ACTIONS(6272), 1, + aux_sym_number_token1, + ACTIONS(6274), 1, + aux_sym_number_token2, + ACTIONS(6278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6286), 1, sym_test_operator, + ACTIONS(6288), 1, 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, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 15, - anon_sym_RPAREN, + ACTIONS(10869), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10871), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(10873), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(10875), 1, + anon_sym_DQUOTE, + ACTIONS(10879), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(10881), 1, anon_sym_BQUOTE, + ACTIONS(10883), 1, anon_sym_DOLLAR_BQUOTE, + STATE(3724), 1, + aux_sym__literal_repeat1, + ACTIONS(10877), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10885), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [202801] = 20, + STATE(1554), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3411), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [228027] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2331), 1, + ACTIONS(6260), 1, sym_word, - ACTIONS(2337), 1, + ACTIONS(6266), 1, anon_sym_DOLLAR, - ACTIONS(2343), 1, + ACTIONS(6272), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(6274), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(6278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, + ACTIONS(6286), 1, sym_test_operator, - ACTIONS(2359), 1, + ACTIONS(6288), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(10869), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(10871), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9632), 1, + ACTIONS(10873), 1, sym__special_character, - ACTIONS(9634), 1, + ACTIONS(10875), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(10879), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(10881), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(10883), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1491), 1, + STATE(3724), 1, aux_sym__literal_repeat1, - ACTIONS(9636), 2, + ACTIONS(10877), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9644), 2, + ACTIONS(10885), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(592), 2, + STATE(1557), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1165), 9, + STATE(3411), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246601,49 +272978,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202873] = 20, + [228099] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2331), 1, + ACTIONS(5774), 1, sym_word, - ACTIONS(2337), 1, + ACTIONS(5776), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5778), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5780), 1, anon_sym_DOLLAR, - ACTIONS(2343), 1, + ACTIONS(5782), 1, + sym__special_character, + ACTIONS(5784), 1, + anon_sym_DQUOTE, + ACTIONS(5788), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(5790), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(5792), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5794), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, + ACTIONS(5796), 1, + anon_sym_BQUOTE, + ACTIONS(5798), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5802), 1, sym_test_operator, - ACTIONS(2359), 1, + ACTIONS(5804), 1, sym__brace_start, - ACTIONS(9628), 1, + STATE(3451), 1, + aux_sym__literal_repeat1, + ACTIONS(5786), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5800), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1195), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3068), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [228171] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5774), 1, + sym_word, + ACTIONS(5776), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(5778), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9632), 1, + ACTIONS(5780), 1, + anon_sym_DOLLAR, + ACTIONS(5782), 1, sym__special_character, - ACTIONS(9634), 1, + ACTIONS(5784), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(5788), 1, + aux_sym_number_token1, + ACTIONS(5790), 1, + aux_sym_number_token2, + ACTIONS(5792), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(5794), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5796), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1491), 1, + ACTIONS(5802), 1, + sym_test_operator, + ACTIONS(5804), 1, + sym__brace_start, + STATE(3451), 1, aux_sym__literal_repeat1, - ACTIONS(9636), 2, + ACTIONS(5786), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9644), 2, + ACTIONS(5800), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(593), 2, + STATE(1198), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1165), 9, + STATE(3068), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246653,50 +273082,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202945] = 21, + [228243] = 20, 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(9646), 1, + ACTIONS(5384), 1, sym_word, - ACTIONS(9648), 1, + ACTIONS(5386), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(5388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, + ACTIONS(5390), 1, + anon_sym_DOLLAR, + ACTIONS(5392), 1, sym__special_character, - ACTIONS(9654), 1, + ACTIONS(5394), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(5398), 1, + aux_sym_number_token1, + ACTIONS(5400), 1, + aux_sym_number_token2, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(5404), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5406), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9666), 1, + ACTIONS(5412), 1, sym_test_operator, - ACTIONS(9668), 1, - sym_regex, - STATE(1395), 1, + ACTIONS(5414), 1, + sym__brace_start, + STATE(3177), 1, aux_sym__literal_repeat1, - STATE(1586), 1, - sym_concatenation, - ACTIONS(9656), 2, + ACTIONS(5396), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9664), 2, + ACTIONS(5410), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1055), 9, + STATE(1054), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2854), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246706,49 +273134,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203019] = 20, + [228315] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(5384), 1, + sym_word, + ACTIONS(5386), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(5388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(5390), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, + ACTIONS(5392), 1, sym__special_character, - ACTIONS(8234), 1, + ACTIONS(5394), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(5398), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(5400), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(5404), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(5406), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(9670), 1, - sym_word, - ACTIONS(9674), 1, + ACTIONS(5412), 1, sym_test_operator, - STATE(1501), 1, + ACTIONS(5414), 1, + sym__brace_start, + STATE(3177), 1, aux_sym__literal_repeat1, - ACTIONS(8250), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9672), 2, + ACTIONS(5396), 2, sym_raw_string, sym_ansi_c_string, - STATE(595), 2, + ACTIONS(5410), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1055), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1210), 9, + STATE(2854), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246758,48 +273186,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203091] = 19, - ACTIONS(3), 1, + [228387] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8607), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8609), 1, + sym__special_character, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8615), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8617), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8623), 1, + anon_sym_BQUOTE, + ACTIONS(8625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8635), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(10887), 1, sym_word, - ACTIONS(9678), 1, - anon_sym_RBRACK, - ACTIONS(9684), 1, + ACTIONS(10891), 1, sym_test_operator, - ACTIONS(393), 2, + STATE(1580), 1, + aux_sym__literal_repeat1, + ACTIONS(8627), 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(10889), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(597), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1216), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246809,49 +273238,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203161] = 20, + [228459] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(8603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(8605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8607), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, + ACTIONS(8609), 1, sym__special_character, - ACTIONS(8234), 1, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(8615), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(8617), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(8619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(8623), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(8635), 1, sym__brace_start, - ACTIONS(9670), 1, + ACTIONS(10887), 1, sym_word, - ACTIONS(9674), 1, + ACTIONS(10891), 1, sym_test_operator, - STATE(1501), 1, + STATE(1580), 1, aux_sym__literal_repeat1, - ACTIONS(8250), 2, + ACTIONS(8627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9672), 2, + ACTIONS(10889), 2, sym_raw_string, sym_ansi_c_string, - STATE(596), 2, + STATE(598), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1210), 9, + STATE(1216), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246861,49 +273290,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203233] = 20, + [228531] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(4325), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4347), 1, sym__brace_start, - ACTIONS(3793), 1, + ACTIONS(5229), 1, sym_word, - ACTIONS(3797), 1, + ACTIONS(5233), 1, sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, - sym__special_character, - ACTIONS(9692), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, + ACTIONS(10893), 1, + sym__special_character, + STATE(2621), 1, aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(10777), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10895), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9702), 2, + STATE(1037), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2875), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [228603] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4325), 1, + anon_sym_DOLLAR, + ACTIONS(4331), 1, + aux_sym_number_token1, + ACTIONS(4333), 1, + aux_sym_number_token2, + ACTIONS(4337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(5229), 1, + sym_word, + ACTIONS(5233), 1, + sym_test_operator, + ACTIONS(10761), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10763), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10767), 1, + anon_sym_DQUOTE, + ACTIONS(10771), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10893), 1, + sym__special_character, + STATE(2621), 1, + aux_sym__literal_repeat1, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(718), 2, + ACTIONS(10895), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1038), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1761), 9, + STATE(2875), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246913,48 +273394,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203305] = 19, - ACTIONS(3), 1, + [228675] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3757), 1, + aux_sym_number_token1, + ACTIONS(3759), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(5016), 1, + sym_word, + ACTIONS(5020), 1, + sym_test_operator, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(10789), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, + anon_sym_BQUOTE, + ACTIONS(10793), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10897), 1, + sym__special_character, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(10795), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10899), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(909), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2758), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [228747] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(5016), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(5020), 1, sym_test_operator, - ACTIONS(9704), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(10779), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10781), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10785), 1, + anon_sym_DQUOTE, + ACTIONS(10789), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, + anon_sym_BQUOTE, + ACTIONS(10793), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10897), 1, + sym__special_character, + STATE(2284), 1, + aux_sym__literal_repeat1, + ACTIONS(10795), 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(10899), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(937), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2758), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246964,49 +273498,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203375] = 20, + [228819] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3089), 1, sym_word, - ACTIONS(3594), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3600), 1, + ACTIONS(3101), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3103), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3614), 1, + ACTIONS(3115), 1, sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(3117), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(10901), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(10903), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, + ACTIONS(10905), 1, sym__special_character, - ACTIONS(9712), 1, + ACTIONS(10907), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(10911), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(10913), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(10915), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2279), 1, + STATE(2154), 1, aux_sym__literal_repeat1, - ACTIONS(9714), 2, + ACTIONS(10909), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9722), 2, + ACTIONS(10917), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(690), 2, + STATE(679), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1800), 9, + STATE(1595), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247016,49 +273550,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203447] = 20, + [228891] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3089), 1, + sym_word, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(3101), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3103), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(3115), 1, + sym_test_operator, + ACTIONS(3117), 1, sym__brace_start, - ACTIONS(3793), 1, + ACTIONS(10901), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10903), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10905), 1, + sym__special_character, + ACTIONS(10907), 1, + anon_sym_DQUOTE, + ACTIONS(10911), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10913), 1, + anon_sym_BQUOTE, + ACTIONS(10915), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2154), 1, + aux_sym__literal_repeat1, + ACTIONS(10909), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10917), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(682), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1595), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [228963] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2516), 1, sym_word, - ACTIONS(3797), 1, + ACTIONS(2522), 1, + anon_sym_DOLLAR, + ACTIONS(2528), 1, + aux_sym_number_token1, + ACTIONS(2530), 1, + aux_sym_number_token2, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2542), 1, sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(2544), 1, + sym__brace_start, + ACTIONS(10919), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10921), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, + ACTIONS(10923), 1, sym__special_character, - ACTIONS(9692), 1, + ACTIONS(10925), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10931), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10933), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, + STATE(1839), 1, aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(10927), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9702), 2, + ACTIONS(10935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(720), 2, + STATE(646), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1761), 9, + STATE(1406), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247068,49 +273654,204 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203519] = 20, + [229035] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3231), 1, + ACTIONS(2516), 1, sym_word, - ACTIONS(3237), 1, + ACTIONS(2522), 1, anon_sym_DOLLAR, - ACTIONS(3243), 1, + ACTIONS(2528), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(2530), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(2534), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(2542), 1, sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(2544), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(10919), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(10921), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9728), 1, + ACTIONS(10923), 1, sym__special_character, - ACTIONS(9730), 1, + ACTIONS(10925), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(10929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(10931), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(10933), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2110), 1, + STATE(1839), 1, aux_sym__literal_repeat1, - ACTIONS(9732), 2, + ACTIONS(10927), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9740), 2, + ACTIONS(10935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(660), 2, + STATE(626), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1406), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229107] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9055), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9057), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9059), 1, + anon_sym_DOLLAR, + ACTIONS(9061), 1, + sym__special_character, + ACTIONS(9063), 1, + anon_sym_DQUOTE, + ACTIONS(9067), 1, + aux_sym_number_token1, + ACTIONS(9069), 1, + aux_sym_number_token2, + ACTIONS(9071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9075), 1, + anon_sym_BQUOTE, + ACTIONS(9077), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9087), 1, + sym__brace_start, + ACTIONS(10937), 1, + sym_word, + ACTIONS(10941), 1, + sym_test_operator, + STATE(1902), 1, + aux_sym__literal_repeat1, + ACTIONS(9079), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10939), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(637), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1427), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229179] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9055), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9057), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9059), 1, + anon_sym_DOLLAR, + ACTIONS(9061), 1, + sym__special_character, + ACTIONS(9063), 1, + anon_sym_DQUOTE, + ACTIONS(9067), 1, + aux_sym_number_token1, + ACTIONS(9069), 1, + aux_sym_number_token2, + ACTIONS(9071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9075), 1, + anon_sym_BQUOTE, + ACTIONS(9077), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9087), 1, + sym__brace_start, + ACTIONS(10937), 1, + sym_word, + ACTIONS(10941), 1, + sym_test_operator, + STATE(1902), 1, + aux_sym__literal_repeat1, + ACTIONS(9079), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10939), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(642), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1524), 9, + STATE(1427), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229251] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + aux_sym_number_token1, + ACTIONS(529), 1, + aux_sym_number_token2, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, + sym__brace_start, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10943), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247120,49 +273861,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203591] = 20, + [229321] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3375), 1, sym_word, - ACTIONS(3594), 1, + ACTIONS(3381), 1, anon_sym_DOLLAR, - ACTIONS(3600), 1, + ACTIONS(3387), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(3389), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(3393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3614), 1, + ACTIONS(3401), 1, sym_test_operator, - ACTIONS(3616), 1, + ACTIONS(3403), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(10945), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(10947), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, + ACTIONS(10949), 1, sym__special_character, - ACTIONS(9712), 1, + ACTIONS(10951), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(10955), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(10957), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(10959), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2279), 1, + STATE(2498), 1, aux_sym__literal_repeat1, - ACTIONS(9714), 2, + ACTIONS(10953), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9722), 2, + ACTIONS(10961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(714), 2, + STATE(696), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1800), 9, + STATE(1932), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247172,49 +273913,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203663] = 20, + [229393] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3231), 1, + ACTIONS(3375), 1, sym_word, - ACTIONS(3237), 1, + ACTIONS(3381), 1, anon_sym_DOLLAR, - ACTIONS(3243), 1, + ACTIONS(3387), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(3389), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(3393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3401), 1, sym_test_operator, - ACTIONS(3259), 1, + ACTIONS(3403), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(10945), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(10947), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9728), 1, + ACTIONS(10949), 1, sym__special_character, - ACTIONS(9730), 1, + ACTIONS(10951), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(10955), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(10957), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(10959), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2110), 1, + STATE(2498), 1, aux_sym__literal_repeat1, - ACTIONS(9732), 2, + ACTIONS(10953), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9740), 2, + ACTIONS(10961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(661), 2, + STATE(706), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1524), 9, + STATE(1932), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247224,49 +273965,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203735] = 20, - ACTIONS(71), 1, + [229465] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2619), 1, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, anon_sym_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(2631), 1, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2639), 1, - sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 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, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(6002), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1903), 1, - aux_sym__literal_repeat1, - ACTIONS(9750), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9758), 2, + ACTIONS(10565), 1, + sym_word, + ACTIONS(10573), 1, + sym_test_operator, + ACTIONS(10963), 1, + anon_sym_RBRACK, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(617), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1348), 9, + ACTIONS(10569), 2, + sym__special_character, + sym__comment_word, + ACTIONS(10571), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247276,49 +274016,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203807] = 20, + [229535] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2613), 1, + ACTIONS(2820), 1, sym_word, - ACTIONS(2619), 1, + ACTIONS(2826), 1, anon_sym_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(2832), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(2834), 1, aux_sym_number_token2, - ACTIONS(2631), 1, + ACTIONS(2838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2639), 1, + ACTIONS(2846), 1, sym_test_operator, - ACTIONS(2641), 1, + ACTIONS(2848), 1, sym__brace_start, - ACTIONS(9742), 1, + ACTIONS(10965), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(10967), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9746), 1, + ACTIONS(10969), 1, sym__special_character, - ACTIONS(9748), 1, + ACTIONS(10971), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(10975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(10977), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(10979), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1903), 1, + STATE(2177), 1, aux_sym__literal_repeat1, - ACTIONS(9750), 2, + ACTIONS(10973), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9758), 2, + ACTIONS(10981), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(620), 2, + STATE(658), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1348), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247328,49 +274068,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203879] = 20, + [229607] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(2820), 1, + sym_word, + ACTIONS(2826), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(2832), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(2834), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(2838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, - sym__brace_start, - ACTIONS(3793), 1, - sym_word, - ACTIONS(3797), 1, + ACTIONS(2846), 1, sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(2848), 1, + sym__brace_start, + ACTIONS(10965), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10967), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, + ACTIONS(10969), 1, sym__special_character, - ACTIONS(9692), 1, + ACTIONS(10971), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10977), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10979), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, + STATE(2177), 1, aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(10973), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9702), 2, + ACTIONS(10981), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(712), 2, + STATE(659), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1761), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247380,49 +274120,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203951] = 20, + [229679] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(3793), 1, + ACTIONS(8466), 1, sym_word, - ACTIONS(3797), 1, + ACTIONS(8474), 1, sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9690), 1, + ACTIONS(10849), 1, sym__special_character, - ACTIONS(9692), 1, + ACTIONS(10851), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2112), 1, + STATE(5470), 1, aux_sym__literal_repeat1, - ACTIONS(9694), 2, + ACTIONS(10853), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9702), 2, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(722), 2, + STATE(3729), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1761), 9, + STATE(5130), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247432,50 +274172,130 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204023] = 21, + [229751] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10985), 1, + anon_sym_DQUOTE, + ACTIONS(10989), 1, + sym_variable_name, + STATE(5639), 1, + sym_string, + ACTIONS(1251), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(10987), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10983), 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(1249), 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, + aux_sym_number_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, + [229799] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10985), 1, + anon_sym_DQUOTE, + ACTIONS(10989), 1, + sym_variable_name, + STATE(5639), 1, + sym_string, + ACTIONS(1245), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(10987), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10983), 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(1237), 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, + aux_sym_number_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, + [229847] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(1528), 1, sym__brace_start, - ACTIONS(9760), 1, + ACTIONS(10991), 1, sym_word, - ACTIONS(9762), 1, + ACTIONS(10993), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(10995), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, + ACTIONS(10997), 1, sym__special_character, - ACTIONS(9768), 1, + ACTIONS(10999), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(11003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(11005), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(11007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9780), 1, + ACTIONS(11011), 1, sym_test_operator, - ACTIONS(9782), 1, + ACTIONS(11013), 1, sym_regex, - STATE(1235), 1, + STATE(1564), 1, aux_sym__literal_repeat1, - STATE(1347), 1, + STATE(1770), 1, sym_concatenation, - ACTIONS(9770), 2, + ACTIONS(11001), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9778), 2, + ACTIONS(11009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(960), 9, + STATE(1133), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247485,100 +274305,209 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204097] = 19, + [229921] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(8645), 1, + sym_variable_name, + STATE(5353), 1, + sym_string, + ACTIONS(1251), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8643), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8641), 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(1249), 15, + aux_sym_heredoc_redirect_token1, 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, + sym__special_character, + 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(5375), 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_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + sym_word, + [229969] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + ACTIONS(8645), 1, + sym_variable_name, + STATE(5353), 1, + sym_string, + ACTIONS(1245), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8643), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8641), 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(1237), 15, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, - sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, + aux_sym_number_token1, + aux_sym_number_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, + [230017] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(11017), 1, + anon_sym_DQUOTE, + ACTIONS(11021), 1, + sym_variable_name, + STATE(5755), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [204167] = 20, + ACTIONS(11019), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11015), 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(1249), 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, + [230065] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(11017), 1, + anon_sym_DQUOTE, + ACTIONS(11021), 1, + sym_variable_name, + STATE(5755), 1, + sym_string, + ACTIONS(11019), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11015), 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(1237), 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, + [230113] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3558), 1, + ACTIONS(3993), 1, anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(7605), 1, + ACTIONS(8466), 1, sym_word, - ACTIONS(7613), 1, + ACTIONS(8474), 1, sym_test_operator, - ACTIONS(9786), 1, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, + ACTIONS(10849), 1, sym__special_character, - ACTIONS(9792), 1, + ACTIONS(10851), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, + STATE(5470), 1, aux_sym__literal_repeat1, - ACTIONS(9794), 2, + ACTIONS(10853), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9802), 2, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3355), 2, + STATE(3712), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(4614), 9, + STATE(5130), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247588,49 +274517,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204239] = 20, + [230185] = 20, 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, - sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8811), 1, sym__special_character, - ACTIONS(9810), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8817), 1, + aux_sym_number_token1, + ACTIONS(8819), 1, + aux_sym_number_token2, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2253), 1, + ACTIONS(8837), 1, + sym__brace_start, + ACTIONS(11023), 1, + sym_word, + ACTIONS(11027), 1, + sym_test_operator, + STATE(2171), 1, aux_sym__literal_repeat1, - ACTIONS(9812), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9820), 2, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(756), 2, + ACTIONS(11025), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(708), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1931), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247640,49 +274569,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204311] = 20, + [230257] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(8809), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, + ACTIONS(8811), 1, sym__special_character, - ACTIONS(7836), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(9822), 1, + ACTIONS(11023), 1, sym_word, - ACTIONS(9826), 1, + ACTIONS(11027), 1, sym_test_operator, - STATE(2634), 1, + STATE(2171), 1, aux_sym__literal_repeat1, - ACTIONS(7852), 2, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(11025), 2, sym_raw_string, sym_ansi_c_string, - STATE(842), 2, + STATE(714), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2335), 9, + STATE(1856), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247692,49 +274621,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204383] = 20, + [230329] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7828), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, - anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(7844), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10531), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10533), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10537), 1, + anon_sym_DQUOTE, + ACTIONS(10541), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, - sym__brace_start, - ACTIONS(9822), 1, + ACTIONS(10551), 1, + sym_regex, + ACTIONS(11029), 1, sym_word, - ACTIONS(9826), 1, + ACTIONS(11031), 1, + sym__special_character, + ACTIONS(11035), 1, sym_test_operator, - STATE(2634), 1, + STATE(1566), 1, aux_sym__literal_repeat1, - ACTIONS(7852), 2, + STATE(1755), 1, + sym_concatenation, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(11033), 2, sym_raw_string, sym_ansi_c_string, - STATE(844), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2335), 9, + STATE(1420), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247744,49 +274674,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204455] = 20, + [230403] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(8466), 1, sym_word, - ACTIONS(4323), 1, + ACTIONS(8474), 1, + sym_test_operator, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, - anon_sym_DOLLAR, - ACTIONS(4331), 1, + ACTIONS(10849), 1, + sym__special_character, + ACTIONS(10851), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, - aux_sym_number_token1, - ACTIONS(4337), 1, - aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, - sym_test_operator, - ACTIONS(4351), 1, - sym__brace_start, - ACTIONS(9828), 1, - sym__special_character, - STATE(2630), 1, + STATE(5470), 1, aux_sym__literal_repeat1, - ACTIONS(4333), 2, + ACTIONS(10853), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4347), 2, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(820), 2, + STATE(3732), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2382), 9, + STATE(5130), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247796,48 +274726,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204527] = 19, - ACTIONS(3), 1, + [230475] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8809), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8825), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(9179), 1, + sym__special_character, + ACTIONS(11037), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(11041), 1, sym_test_operator, - ACTIONS(9830), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + STATE(2171), 1, + aux_sym__literal_repeat1, + ACTIONS(8829), 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(11039), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(862), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2624), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247847,48 +274778,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204597] = 19, - ACTIONS(3), 1, + [230547] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, + ACTIONS(8809), 1, anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8825), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(9179), 1, + sym__special_character, + ACTIONS(11037), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(11041), 1, sym_test_operator, - ACTIONS(9832), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + STATE(2171), 1, + aux_sym__literal_repeat1, + ACTIONS(8829), 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(11039), 2, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(868), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2624), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247898,49 +274830,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204667] = 20, + [230619] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3201), 1, - sym_word, - ACTIONS(3207), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(3213), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3227), 1, - sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9838), 1, - sym__special_character, - ACTIONS(9840), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2027), 1, + ACTIONS(10551), 1, + sym_regex, + ACTIONS(11043), 1, + sym_word, + ACTIONS(11045), 1, + sym__special_character, + ACTIONS(11049), 1, + sym_test_operator, + STATE(1566), 1, aux_sym__literal_repeat1, - ACTIONS(9842), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9850), 2, + STATE(1755), 1, + sym_concatenation, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(673), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1611), 9, + ACTIONS(11047), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2187), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247950,49 +274883,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204739] = 20, + [230693] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3201), 1, - sym_word, - ACTIONS(3207), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3213), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3227), 1, - sym_test_operator, - ACTIONS(3229), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(4027), 1, + sym_word, + ACTIONS(4031), 1, + sym_test_operator, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9838), 1, - sym__special_character, - ACTIONS(9840), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2027), 1, + ACTIONS(10801), 1, + sym__special_character, + STATE(2284), 1, aux_sym__literal_repeat1, - ACTIONS(9842), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9850), 2, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(659), 2, + ACTIONS(10803), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(742), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1611), 9, + STATE(2106), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248002,49 +274935,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204811] = 20, - ACTIONS(71), 1, + [230765] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(11051), 1, sym_word, - ACTIONS(4323), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, - anon_sym_DOLLAR, - ACTIONS(4331), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, - aux_sym_number_token1, - ACTIONS(4337), 1, - aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4349), 1, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(11057), 2, sym_test_operator, - ACTIONS(4351), 1, - sym__brace_start, - ACTIONS(9828), 1, sym__special_character, - STATE(2630), 1, - aux_sym__literal_repeat1, - ACTIONS(4333), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4347), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(821), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2382), 9, + ACTIONS(11061), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248054,48 +274984,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204883] = 19, + [230832] = 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(1651), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(10531), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10533), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10537), 1, + anon_sym_DQUOTE, + ACTIONS(10541), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(10545), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11073), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9852), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(11075), 1, + anon_sym_DOLLAR, + ACTIONS(11081), 1, + sym__comment_word, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(11077), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(11079), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248105,49 +275033,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204953] = 20, - ACTIONS(71), 1, + [230899] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, - aux_sym_number_token1, - ACTIONS(7988), 1, - aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, - sym__brace_start, - ACTIONS(9854), 1, + ACTIONS(11073), 1, sym_word, - ACTIONS(9858), 1, - sym_test_operator, - STATE(3442), 1, - aux_sym__literal_repeat1, - ACTIONS(7998), 2, + ACTIONS(11081), 1, + sym__comment_word, + ACTIONS(11083), 1, + anon_sym_DOLLAR, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9856), 2, + ACTIONS(11077), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11079), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1716), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, + STATE(1352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248157,49 +275082,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205025] = 20, - ACTIONS(71), 1, + [230966] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(1607), 1, + aux_sym_number_token1, + ACTIONS(1609), 1, + aux_sym_number_token2, + ACTIONS(1613), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1625), 1, + sym__brace_start, + ACTIONS(10593), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(10595), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, + ACTIONS(10599), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, - aux_sym_number_token1, - ACTIONS(7880), 1, - aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(10603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(10605), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(10607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(11085), 1, sym_word, - ACTIONS(9864), 1, - sym_test_operator, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(7890), 2, + ACTIONS(11087), 1, + anon_sym_DOLLAR, + ACTIONS(11093), 1, + sym__comment_word, + ACTIONS(10609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9862), 2, + ACTIONS(11089), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11091), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(609), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1325), 9, + STATE(1381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248209,50 +275131,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205097] = 21, - ACTIONS(71), 1, + [231033] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(1607), 1, + aux_sym_number_token1, + ACTIONS(1609), 1, + aux_sym_number_token2, + ACTIONS(1613), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1625), 1, + sym__brace_start, + ACTIONS(10593), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(10595), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, - anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, + ACTIONS(10599), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, - aux_sym_number_token1, - ACTIONS(2667), 1, - aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(10603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(10605), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(10607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(9866), 1, + ACTIONS(11085), 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, + ACTIONS(11093), 1, + sym__comment_word, + ACTIONS(11095), 1, + anon_sym_DOLLAR, + ACTIONS(10609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9868), 2, + ACTIONS(11089), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11091), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1916), 9, + STATE(1381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248262,49 +275180,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205171] = 20, - ACTIONS(71), 1, + [231100] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, - sym_word, - ACTIONS(5625), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9878), 1, - sym__special_character, - ACTIONS(9880), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(9882), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9890), 2, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(11097), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1429), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3082), 9, + ACTIONS(11061), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248314,49 +275229,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205243] = 20, - ACTIONS(71), 1, + [231167] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 1, - sym_word, - ACTIONS(5625), 1, - anon_sym_DOLLAR, - ACTIONS(5631), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5645), 1, - sym_test_operator, - ACTIONS(5647), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9878), 1, - sym__special_character, - ACTIONS(9880), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3369), 1, - aux_sym__literal_repeat1, - ACTIONS(9882), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9890), 2, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(11099), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1390), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3082), 9, + ACTIONS(11061), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248366,88 +275278,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205315] = 8, + [231234] = 18, ACTIONS(3), 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, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, 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, - 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, + ACTIONS(11101), 1, + sym_word, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(11107), 1, + anon_sym_DOLLAR, + ACTIONS(11111), 1, + anon_sym_DQUOTE, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(11117), 1, anon_sym_BQUOTE, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(11123), 1, + sym__comment_word, + ACTIONS(11109), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [205363] = 19, + ACTIONS(11113), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [231301] = 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(4202), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(11101), 1, sym_word, - ACTIONS(9684), 1, + ACTIONS(11103), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11105), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11111), 1, + anon_sym_DQUOTE, + ACTIONS(11115), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + ACTIONS(11119), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11123), 1, + sym__comment_word, + ACTIONS(11125), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, sym_test_operator, - ACTIONS(9892), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + sym__special_character, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(11113), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248457,49 +275376,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205433] = 20, - ACTIONS(71), 1, + [231368] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9894), 1, - sym_word, - ACTIONS(9896), 1, + ACTIONS(3999), 1, + aux_sym_number_token1, + ACTIONS(4001), 1, + aux_sym_number_token2, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(10851), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(11127), 1, + sym_word, + ACTIONS(11129), 1, + anon_sym_DOLLAR, + ACTIONS(11135), 1, + sym__comment_word, + ACTIONS(10861), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11131), 2, sym_test_operator, - ACTIONS(9924), 1, - sym__brace_start, - STATE(2496), 1, - aux_sym__literal_repeat1, - ACTIONS(9906), 2, + sym__special_character, + ACTIONS(11133), 3, + sym__bare_dollar, 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, + STATE(5361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248509,49 +275425,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205505] = 20, - ACTIONS(71), 1, + [231435] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(4056), 1, - sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, - sym__special_character, - ACTIONS(9810), 1, + ACTIONS(10851), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10859), 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, + ACTIONS(11127), 1, + sym_word, + ACTIONS(11135), 1, + sym__comment_word, + ACTIONS(11137), 1, + anon_sym_DOLLAR, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(759), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, + ACTIONS(11131), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11133), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248561,48 +275474,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205577] = 19, + [231502] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11143), 1, + anon_sym_LT_LT_LT, + ACTIONS(11145), 1, + sym_file_descriptor, + STATE(5367), 1, + sym_herestring_redirect, + ACTIONS(4722), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4724), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4728), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2641), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11139), 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, + [231559] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8779), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8781), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8799), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(11147), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9926), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(11149), 1, + anon_sym_DOLLAR, + ACTIONS(11155), 1, + sym__comment_word, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(11151), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248612,49 +275567,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205647] = 20, - ACTIONS(71), 1, + [231626] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, - sym_word, - ACTIONS(4803), 1, + ACTIONS(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, - anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(8779), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(8781), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, - sym_test_operator, - ACTIONS(4831), 1, + ACTIONS(8799), 1, sym__brace_start, - ACTIONS(9928), 1, + ACTIONS(11147), 1, + sym_word, + ACTIONS(11155), 1, + sym__comment_word, + ACTIONS(11157), 1, + anon_sym_DOLLAR, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11151), 2, + sym_test_operator, sym__special_character, - STATE(2859), 1, - aux_sym__literal_repeat1, - ACTIONS(4813), 2, + ACTIONS(11153), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - ACTIONS(4827), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(964), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2538), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248664,49 +275616,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205719] = 20, - ACTIONS(71), 1, + [231693] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(4347), 1, sym__brace_start, - ACTIONS(4056), 1, - sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, - sym__special_character, - ACTIONS(9810), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10775), 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, + ACTIONS(11159), 1, + sym_word, + ACTIONS(11161), 1, + anon_sym_DOLLAR, + ACTIONS(11167), 1, + sym__comment_word, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(757), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, + ACTIONS(11163), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11165), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248716,49 +275665,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205791] = 20, - ACTIONS(71), 1, + [231760] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, - sym_word, - ACTIONS(2801), 1, - anon_sym_DOLLAR, - ACTIONS(2807), 1, - aux_sym_number_token1, - ACTIONS(2809), 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, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9934), 1, - sym__special_character, - ACTIONS(9936), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(8817), 1, + aux_sym_number_token1, + ACTIONS(8819), 1, + aux_sym_number_token2, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(8823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1722), 1, - aux_sym__literal_repeat1, - ACTIONS(9938), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9946), 2, + ACTIONS(8837), 1, + sym__brace_start, + ACTIONS(11169), 1, + sym_word, + ACTIONS(11171), 1, + anon_sym_DOLLAR, + ACTIONS(11177), 1, + sym__comment_word, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(633), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1292), 9, + ACTIONS(11173), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11175), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248768,49 +275714,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205863] = 20, + [231827] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2795), 1, - sym_word, - ACTIONS(2801), 1, - anon_sym_DOLLAR, - ACTIONS(2807), 1, - aux_sym_number_token1, - ACTIONS(2809), 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, + ACTIONS(9093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(9095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9934), 1, + ACTIONS(9097), 1, + anon_sym_DOLLAR, + ACTIONS(9099), 1, sym__special_character, - ACTIONS(9936), 1, + ACTIONS(9101), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(9105), 1, + aux_sym_number_token1, + ACTIONS(9107), 1, + aux_sym_number_token2, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(9111), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9113), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1722), 1, + ACTIONS(9125), 1, + sym__brace_start, + ACTIONS(11179), 1, + sym_word, + ACTIONS(11183), 1, + sym_test_operator, + STATE(2072), 1, aux_sym__literal_repeat1, - ACTIONS(9938), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9946), 2, + STATE(2288), 1, + sym_concatenation, + ACTIONS(9117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(635), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1292), 9, + ACTIONS(11181), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1453), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248820,49 +275765,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205935] = 20, - ACTIONS(71), 1, + [231898] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - sym_word, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3658), 1, - sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9948), 1, - sym__special_character, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9820), 2, + ACTIONS(11185), 1, + sym_word, + ACTIONS(11187), 1, + anon_sym_DOLLAR, + ACTIONS(11193), 1, + sym__comment_word, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9950), 2, + ACTIONS(11189), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11191), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(711), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1851), 9, + STATE(1971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248872,49 +275814,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206007] = 20, + [231965] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5009), 1, - sym_word, - ACTIONS(5011), 1, + ACTIONS(9093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(9095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(9097), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, + ACTIONS(9099), 1, sym__special_character, - ACTIONS(5019), 1, + ACTIONS(9101), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(9105), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(9107), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(9113), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, - sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(9125), 1, sym__brace_start, - STATE(3136), 1, + ACTIONS(11195), 1, + sym_word, + ACTIONS(11199), 1, + sym_test_operator, + STATE(2086), 1, aux_sym__literal_repeat1, - ACTIONS(5021), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, + STATE(2305), 1, + sym_concatenation, + ACTIONS(9117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(998), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2655), 9, + ACTIONS(11197), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1502), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248924,49 +275865,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206079] = 20, - ACTIONS(71), 1, + [232036] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(11201), 1, sym_word, - ACTIONS(5011), 1, + ACTIONS(11203), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR, - ACTIONS(5017), 1, - sym__special_character, - ACTIONS(5019), 1, + ACTIONS(11211), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(11215), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(11217), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(11221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5037), 1, - sym_test_operator, - ACTIONS(5039), 1, + ACTIONS(11229), 1, + sym__comment_word, + ACTIONS(11231), 1, sym__brace_start, - STATE(3136), 1, - aux_sym__literal_repeat1, - ACTIONS(5021), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5035), 2, + ACTIONS(11209), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(999), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2655), 9, + ACTIONS(11213), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6690), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248976,49 +275914,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206151] = 20, - ACTIONS(71), 1, + [232103] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, - anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(11169), 1, sym_word, - ACTIONS(9864), 1, - sym_test_operator, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(7890), 2, + ACTIONS(11177), 1, + sym__comment_word, + ACTIONS(11233), 1, + anon_sym_DOLLAR, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9862), 2, + ACTIONS(11173), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11175), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(629), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1325), 9, + STATE(1803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249028,48 +275963,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206223] = 19, + [232170] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8663), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8665), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8671), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8675), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8677), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8681), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8683), 1, + anon_sym_BQUOTE, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8695), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(11235), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9952), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(11237), 1, + anon_sym_DOLLAR, + ACTIONS(11243), 1, + sym__comment_word, + ACTIONS(8687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(11239), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(11241), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(3745), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249079,49 +276012,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206293] = 20, - ACTIONS(71), 1, + [232237] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(7605), 1, - sym_word, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(9786), 1, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, - sym__special_character, - ACTIONS(9792), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(9794), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9802), 2, + ACTIONS(11185), 1, + sym_word, + ACTIONS(11193), 1, + sym__comment_word, + ACTIONS(11245), 1, + anon_sym_DOLLAR, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3350), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, + ACTIONS(11189), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11191), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249131,48 +276061,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206365] = 19, + [232304] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8663), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8665), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8671), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8675), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8677), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8681), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8683), 1, + anon_sym_BQUOTE, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8695), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(11235), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9954), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(11243), 1, + sym__comment_word, + ACTIONS(11247), 1, + anon_sym_DOLLAR, + ACTIONS(8687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(11239), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(11241), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(3745), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249182,49 +276110,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206435] = 20, - ACTIONS(71), 1, + [232371] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9894), 1, + ACTIONS(11201), 1, sym_word, - ACTIONS(9896), 1, + ACTIONS(11203), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(11211), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(11215), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(11217), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(11221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9922), 1, - sym_test_operator, - ACTIONS(9924), 1, + ACTIONS(11229), 1, + sym__comment_word, + ACTIONS(11231), 1, sym__brace_start, - STATE(2496), 1, - aux_sym__literal_repeat1, - ACTIONS(9906), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9920), 2, + ACTIONS(11249), 1, + anon_sym_DOLLAR, + ACTIONS(11209), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(794), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2283), 9, + ACTIONS(11213), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6690), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249234,49 +276159,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206507] = 20, - ACTIONS(71), 1, + [232438] = 18, + ACTIONS(3), 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, - 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, - sym_test_operator, - ACTIONS(4566), 1, + ACTIONS(340), 1, sym__brace_start, - STATE(2975), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 2, + ACTIONS(11251), 1, + sym_word, + ACTIONS(11253), 1, + anon_sym_DOLLAR, + ACTIONS(11259), 1, + sym__comment_word, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(870), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2540), 9, + ACTIONS(11255), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11257), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249286,49 +276208,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206579] = 20, - ACTIONS(71), 1, + [232505] = 18, + ACTIONS(3), 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, - 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, - sym_test_operator, - ACTIONS(4566), 1, + ACTIONS(340), 1, sym__brace_start, - STATE(2975), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4562), 2, + ACTIONS(11251), 1, + sym_word, + ACTIONS(11259), 1, + sym__comment_word, + ACTIONS(11261), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(871), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2540), 9, + ACTIONS(11255), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11257), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249338,49 +276257,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206651] = 20, - ACTIONS(71), 1, + [232572] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(4056), 1, - sym_word, - ACTIONS(4060), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9808), 1, - sym__special_character, - ACTIONS(9810), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, - anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(1169), 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, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(11263), 1, + sym_word, + ACTIONS(11265), 1, + anon_sym_DOLLAR, + ACTIONS(11271), 1, + sym__comment_word, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(758), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1931), 9, + ACTIONS(11267), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11269), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249390,49 +276306,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206723] = 20, - ACTIONS(71), 1, + [232639] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4801), 1, - sym_word, - ACTIONS(4803), 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(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, - anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, - aux_sym_number_token1, - ACTIONS(4817), 1, - aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, - anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(11263), 1, + sym_word, + ACTIONS(11271), 1, + sym__comment_word, + ACTIONS(11273), 1, + anon_sym_DOLLAR, + ACTIONS(1171), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11267), 2, sym_test_operator, - ACTIONS(4831), 1, - sym__brace_start, - ACTIONS(9928), 1, sym__special_character, - STATE(2859), 1, - aux_sym__literal_repeat1, - ACTIONS(4813), 2, + ACTIONS(11269), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - ACTIONS(4827), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(965), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2538), 9, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249442,48 +276355,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206795] = 19, + [232706] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8825), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(11169), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9956), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(11177), 1, + sym__comment_word, + ACTIONS(11275), 1, + anon_sym_DOLLAR, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(11173), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(11175), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249493,48 +276404,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206865] = 19, + [232773] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8825), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(11169), 1, sym_word, - ACTIONS(9684), 1, - sym_test_operator, - ACTIONS(9958), 1, - anon_sym_RBRACK, - ACTIONS(393), 2, + ACTIONS(11177), 1, + sym__comment_word, + ACTIONS(11277), 1, + anon_sym_DOLLAR, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(11173), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(9682), 3, + ACTIONS(11175), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249544,49 +276453,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206935] = 20, - ACTIONS(71), 1, + [232840] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(2354), 1, + aux_sym_number_token1, + ACTIONS(2356), 1, + aux_sym_number_token2, + ACTIONS(2360), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(9960), 1, + ACTIONS(11279), 1, sym_word, - ACTIONS(9964), 1, - sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(11281), 1, + anon_sym_DOLLAR, + ACTIONS(11287), 1, + sym__comment_word, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(11283), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11285), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(676), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1663), 9, + STATE(1879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249596,49 +276502,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207007] = 20, - ACTIONS(71), 1, + [232907] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(2354), 1, + aux_sym_number_token1, + ACTIONS(2356), 1, + aux_sym_number_token2, + ACTIONS(2360), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(9960), 1, + ACTIONS(11279), 1, sym_word, - ACTIONS(9964), 1, - sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(11287), 1, + sym__comment_word, + ACTIONS(11289), 1, + anon_sym_DOLLAR, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(11283), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11285), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(677), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1663), 9, + STATE(1879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249648,49 +276551,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207079] = 20, - ACTIONS(71), 1, + [232974] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(3641), 1, + aux_sym_number_token1, + ACTIONS(3643), 1, + aux_sym_number_token2, + ACTIONS(3647), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3659), 1, + sym__brace_start, + ACTIONS(11291), 1, + sym_word, + ACTIONS(11293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(11295), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, + ACTIONS(11297), 1, anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(11301), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(11305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(11307), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(11309), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(9966), 1, - sym_word, - ACTIONS(9970), 1, + ACTIONS(11313), 1, + sym__comment_word, + ACTIONS(11299), 2, sym_test_operator, - STATE(1320), 1, - aux_sym__literal_repeat1, - ACTIONS(8138), 2, + sym__special_character, + ACTIONS(11311), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9968), 2, + ACTIONS(11303), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(569), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1021), 9, + STATE(2095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249700,50 +276600,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207151] = 21, - ACTIONS(71), 1, + [233041] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3659), 1, sym__brace_start, - ACTIONS(9972), 1, + ACTIONS(11291), 1, sym_word, - ACTIONS(9974), 1, + ACTIONS(11293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(11295), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, - sym__special_character, - ACTIONS(9980), 1, + ACTIONS(11301), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(11305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(11307), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(11309), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9992), 1, + ACTIONS(11313), 1, + sym__comment_word, + ACTIONS(11315), 1, + anon_sym_DOLLAR, + ACTIONS(11299), 2, sym_test_operator, - ACTIONS(9994), 1, - sym_regex, - STATE(1436), 1, - aux_sym__literal_repeat1, - STATE(1483), 1, - sym_concatenation, - ACTIONS(9982), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9990), 2, + sym__special_character, + ACTIONS(11311), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1276), 9, + ACTIONS(11303), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249753,49 +276649,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207225] = 20, - ACTIONS(71), 1, + [233108] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(9966), 1, + ACTIONS(11073), 1, sym_word, - ACTIONS(9970), 1, - sym_test_operator, - STATE(1320), 1, - aux_sym__literal_repeat1, - ACTIONS(8138), 2, + ACTIONS(11081), 1, + sym__comment_word, + ACTIONS(11317), 1, + anon_sym_DOLLAR, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9968), 2, + ACTIONS(11077), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11079), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(571), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1021), 9, + STATE(1352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249805,129 +276698,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207297] = 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, + [233175] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(10006), 1, - anon_sym_DQUOTE, - ACTIONS(10010), 1, - sym_variable_name, - STATE(5422), 1, - sym_string, - ACTIONS(10008), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10004), 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, - [207393] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3558), 1, - anon_sym_DOLLAR, - ACTIONS(3564), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(7605), 1, - sym_word, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(9786), 1, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, - sym__special_character, - ACTIONS(9792), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(9794), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9802), 2, + ACTIONS(11073), 1, + sym_word, + ACTIONS(11081), 1, + sym__comment_word, + ACTIONS(11319), 1, + anon_sym_DOLLAR, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3365), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, + ACTIONS(11077), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11079), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249937,89 +276747,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207465] = 8, + [233242] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 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(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, - [207513] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8300), 1, + ACTIONS(11201), 1, + sym_word, + ACTIONS(11203), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(11211), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(11215), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(11217), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(11221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(11229), 1, + sym__comment_word, + ACTIONS(11231), 1, sym__brace_start, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(10012), 1, - sym_word, - ACTIONS(10016), 1, + ACTIONS(11321), 1, + anon_sym_DOLLAR, + ACTIONS(11209), 2, sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + sym__special_character, + ACTIONS(11227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10014), 2, + ACTIONS(11213), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(623), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1355), 9, + STATE(6690), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250029,49 +276796,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207585] = 20, - ACTIONS(71), 1, + [233309] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - sym_word, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3030), 1, - sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10018), 1, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(11323), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, + sym_test_operator, sym__special_character, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9702), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 2, + ACTIONS(11061), 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(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250081,49 +276845,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207657] = 20, - ACTIONS(71), 1, + [233376] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(10012), 1, - sym_word, - ACTIONS(10016), 1, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(11325), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + sym__special_character, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10014), 2, + ACTIONS(11061), 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(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250133,49 +276894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207729] = 20, - ACTIONS(71), 1, + [233443] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - sym_word, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3658), 1, - sym_test_operator, - ACTIONS(3660), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(11101), 1, + sym_word, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9948), 1, + ACTIONS(11123), 1, + sym__comment_word, + ACTIONS(11327), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, + sym_test_operator, sym__special_character, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9820), 2, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9950), 2, + ACTIONS(11113), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(698), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1851), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250185,89 +276943,195 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207801] = 8, + [233510] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, - anon_sym_DQUOTE, - ACTIONS(8294), 1, - sym_variable_name, - STATE(4874), 1, - sym_string, - ACTIONS(1197), 2, - sym_test_operator, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, 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, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1195), 15, - aux_sym_heredoc_redirect_token1, + ACTIONS(11101), 1, + sym_word, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(11111), 1, + anon_sym_DQUOTE, + ACTIONS(11115), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + ACTIONS(11119), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11123), 1, + sym__comment_word, + ACTIONS(11329), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, + sym_test_operator, sym__special_character, + ACTIONS(11121), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11113), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, + STATE(4557), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233577] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, aux_sym_number_token1, + ACTIONS(8781), 1, aux_sym_number_token2, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, anon_sym_BQUOTE, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(11147), 1, + sym_word, + ACTIONS(11155), 1, + sym__comment_word, + ACTIONS(11331), 1, + anon_sym_DOLLAR, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [207849] = 20, - ACTIONS(71), 1, + ACTIONS(11151), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11153), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4600), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233644] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(8767), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8769), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8775), 1, + anon_sym_DQUOTE, + ACTIONS(8779), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(8781), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(8783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(8787), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8799), 1, sym__brace_start, - ACTIONS(4771), 1, + ACTIONS(11147), 1, sym_word, - ACTIONS(4775), 1, + ACTIONS(11155), 1, + sym__comment_word, + ACTIONS(11333), 1, + anon_sym_DOLLAR, + ACTIONS(8791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11151), 2, sym_test_operator, - ACTIONS(9804), 1, + sym__special_character, + ACTIONS(11153), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4600), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233711] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8663), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8665), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8667), 1, + anon_sym_DOLLAR, + ACTIONS(8669), 1, + sym__special_character, + ACTIONS(8671), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8675), 1, + aux_sym_number_token1, + ACTIONS(8677), 1, + aux_sym_number_token2, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8681), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8683), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10022), 1, - sym__special_character, - STATE(2253), 1, + ACTIONS(8695), 1, + sym__brace_start, + ACTIONS(11335), 1, + sym_word, + ACTIONS(11339), 1, + sym_test_operator, + STATE(3796), 1, aux_sym__literal_repeat1, - ACTIONS(9820), 2, + STATE(3870), 1, + sym_concatenation, + ACTIONS(8687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10024), 2, + ACTIONS(11337), 2, sym_raw_string, sym_ansi_c_string, - STATE(946), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2556), 9, + STATE(3726), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250277,49 +277141,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207921] = 20, - ACTIONS(71), 1, + [233782] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3004), 1, - sym_word, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(3101), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(3103), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3030), 1, - sym_test_operator, - ACTIONS(3032), 1, + ACTIONS(3117), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10901), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10903), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10907), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10911), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10913), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10915), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10018), 1, - sym__special_character, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9702), 2, + ACTIONS(11341), 1, + sym_word, + ACTIONS(11343), 1, + anon_sym_DOLLAR, + ACTIONS(11349), 1, + sym__comment_word, + ACTIONS(10917), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 2, + ACTIONS(11345), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11347), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(646), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1653), 9, + STATE(1680), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250329,89 +277190,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207993] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 1, - sym_file_descriptor, - ACTIONS(10006), 1, - anon_sym_DQUOTE, - ACTIONS(10010), 1, - sym_variable_name, - STATE(5422), 1, - sym_string, - ACTIONS(10008), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(10004), 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, - [208041] = 20, + [233849] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(8663), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(8665), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(8667), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(8669), 1, + sym__special_character, + ACTIONS(8671), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(8675), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(8677), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(8681), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8683), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(8695), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(10026), 1, + ACTIONS(11351), 1, sym_word, - ACTIONS(10030), 1, + ACTIONS(11355), 1, sym_test_operator, - STATE(1814), 1, + STATE(3787), 1, aux_sym__literal_repeat1, - ACTIONS(8324), 2, + STATE(3936), 1, + sym_concatenation, + ACTIONS(8687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10028), 2, + ACTIONS(11353), 2, sym_raw_string, sym_ansi_c_string, - STATE(795), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2287), 9, + STATE(3714), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250421,49 +277241,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208113] = 20, - ACTIONS(71), 1, + [233920] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(10639), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(10641), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(10647), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(10651), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(10653), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(10655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(10657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(10659), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(10667), 1, sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(10026), 1, + ACTIONS(11357), 1, sym_word, - ACTIONS(10030), 1, - sym_test_operator, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(8324), 2, + ACTIONS(11359), 1, + anon_sym_DOLLAR, + ACTIONS(11365), 1, + sym__comment_word, + ACTIONS(10663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10028), 2, + ACTIONS(11361), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11363), 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(2679), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [233987] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10639), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10641), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10647), 1, + anon_sym_DQUOTE, + ACTIONS(10651), 1, + aux_sym_number_token1, + ACTIONS(10653), 1, + aux_sym_number_token2, + ACTIONS(10655), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10659), 1, + anon_sym_BQUOTE, + ACTIONS(10661), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10667), 1, + sym__brace_start, + ACTIONS(11357), 1, + sym_word, + ACTIONS(11365), 1, + sym__comment_word, + ACTIONS(11367), 1, + anon_sym_DOLLAR, + ACTIONS(10663), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11361), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11363), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2679), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250473,49 +277339,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208185] = 20, - ACTIONS(71), 1, + [234054] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(320), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(322), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(326), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(340), 1, sym__brace_start, - ACTIONS(9854), 1, + ACTIONS(11251), 1, sym_word, - ACTIONS(9858), 1, - sym_test_operator, - STATE(3442), 1, - aux_sym__literal_repeat1, - ACTIONS(7998), 2, + ACTIONS(11259), 1, + sym__comment_word, + ACTIONS(11369), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9856), 2, + ACTIONS(11255), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11257), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1746), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3373), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250525,50 +277388,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208257] = 21, - ACTIONS(71), 1, + [234121] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3101), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3103), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3117), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10901), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10903), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10907), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10911), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10913), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10915), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9994), 1, - sym_regex, - ACTIONS(10032), 1, + ACTIONS(11341), 1, sym_word, - ACTIONS(10034), 1, - sym__special_character, - ACTIONS(10038), 1, - sym_test_operator, - STATE(1436), 1, - aux_sym__literal_repeat1, - STATE(1483), 1, - sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(11349), 1, + sym__comment_word, + ACTIONS(11371), 1, + anon_sym_DOLLAR, + ACTIONS(10917), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10036), 2, + ACTIONS(11345), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11347), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1894), 9, + STATE(1680), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250578,50 +277437,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208331] = 21, - ACTIONS(71), 1, + [234188] = 18, + ACTIONS(3), 1, sym_comment, - 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(10040), 1, - sym_word, - ACTIONS(10042), 1, + ACTIONS(817), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(819), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(821), 1, + anon_sym_DOLLAR, + ACTIONS(825), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(835), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(837), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(839), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10060), 1, + ACTIONS(849), 1, + sym__brace_start, + ACTIONS(11373), 1, + sym_word, + ACTIONS(11379), 1, + sym__comment_word, + ACTIONS(841), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11375), 2, sym_test_operator, - ACTIONS(10062), 1, - sym_regex, - STATE(1083), 1, - aux_sym__literal_repeat1, - STATE(1212), 1, - sym_concatenation, - ACTIONS(10050), 2, + sym__special_character, + ACTIONS(11377), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - ACTIONS(10058), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(816), 9, + STATE(1088), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250631,49 +277486,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208405] = 20, - ACTIONS(71), 1, + [234255] = 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(7605), 1, - sym_word, - ACTIONS(7613), 1, - sym_test_operator, - ACTIONS(9786), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9790), 1, - sym__special_character, - ACTIONS(9792), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, - anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4982), 1, - aux_sym__literal_repeat1, - ACTIONS(9794), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9802), 2, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(11263), 1, + sym_word, + ACTIONS(11271), 1, + sym__comment_word, + ACTIONS(11381), 1, + anon_sym_DOLLAR, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3367), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4614), 9, + ACTIONS(11267), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11269), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250683,49 +277535,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208477] = 20, - ACTIONS(71), 1, + [234322] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(4771), 1, - sym_word, - ACTIONS(4775), 1, - sym_test_operator, - ACTIONS(9804), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, - anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10022), 1, - sym__special_character, - STATE(2253), 1, - aux_sym__literal_repeat1, - ACTIONS(9820), 2, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(11263), 1, + sym_word, + ACTIONS(11271), 1, + sym__comment_word, + ACTIONS(11383), 1, + anon_sym_DOLLAR, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10024), 2, + ACTIONS(11267), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11269), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(947), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2556), 9, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250735,49 +277584,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208549] = 20, - ACTIONS(71), 1, + [234389] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(11051), 1, sym_word, - ACTIONS(4366), 1, - sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10064), 1, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(11385), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, + sym_test_operator, sym__special_character, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9702), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10066), 2, + ACTIONS(11061), 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(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250787,49 +277633,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208621] = 20, - ACTIONS(71), 1, + [234456] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, - anon_sym_DOLLAR, - ACTIONS(3016), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(11051), 1, sym_word, - ACTIONS(4366), 1, - sym_test_operator, - ACTIONS(9686), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10064), 1, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(11387), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, + sym_test_operator, sym__special_character, - STATE(2112), 1, - aux_sym__literal_repeat1, - ACTIONS(9702), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10066), 2, + ACTIONS(11061), 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(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250839,50 +277682,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208693] = 21, - ACTIONS(71), 1, + [234523] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(11101), 1, + sym_word, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9994), 1, - sym_regex, - ACTIONS(10068), 1, - sym_word, - ACTIONS(10070), 1, - sym__special_character, - ACTIONS(10074), 1, + ACTIONS(11123), 1, + sym__comment_word, + ACTIONS(11389), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, sym_test_operator, - STATE(1436), 1, - aux_sym__literal_repeat1, - STATE(1483), 1, - sym_concatenation, - ACTIONS(9990), 2, + sym__special_character, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10072), 2, + ACTIONS(11113), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1028), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250892,86 +277731,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208767] = 8, + [234590] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9622), 1, - anon_sym_DQUOTE, - ACTIONS(9626), 1, - sym_variable_name, - STATE(5125), 1, - sym_string, - ACTIONS(1191), 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, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - ACTIONS(1183), 15, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4202), 1, aux_sym_number_token1, + ACTIONS(4204), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11101), 1, sym_word, - [208815] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7936), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, - sym_word, - ACTIONS(10078), 1, - anon_sym_DOLLAR, - ACTIONS(10084), 1, + ACTIONS(11123), 1, sym__comment_word, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(11391), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(11121), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11113), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250981,46 +277780,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208882] = 18, + [234657] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, - anon_sym_DOLLAR, - ACTIONS(5099), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(8779), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(8781), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(8799), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(11147), 1, sym_word, - ACTIONS(10092), 1, + ACTIONS(11155), 1, sym__comment_word, - ACTIONS(5115), 2, + ACTIONS(11393), 1, + anon_sym_DOLLAR, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, + ACTIONS(11151), 2, sym_test_operator, sym__special_character, - ACTIONS(10090), 3, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251030,46 +277829,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208949] = 18, + [234724] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8122), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(8779), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(8781), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(8799), 1, sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(11147), 1, sym_word, - ACTIONS(10100), 1, + ACTIONS(11155), 1, sym__comment_word, - ACTIONS(8138), 2, + ACTIONS(11395), 1, + anon_sym_DOLLAR, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, + ACTIONS(11151), 2, sym_test_operator, sym__special_character, - ACTIONS(10098), 3, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251079,84 +277878,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209016] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - STATE(4815), 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(4182), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 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, - [209061] = 18, - ACTIONS(3), 1, + [234791] = 20, + ACTIONS(71), 1, sym_comment, - 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(10639), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(10641), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(10643), 1, + anon_sym_DOLLAR, + ACTIONS(10645), 1, + sym__special_character, + ACTIONS(10647), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(10651), 1, + aux_sym_number_token1, + ACTIONS(10653), 1, + aux_sym_number_token2, + ACTIONS(10655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(10657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10659), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(10661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(10667), 1, + sym__brace_start, + ACTIONS(11397), 1, sym_word, - ACTIONS(10106), 1, - anon_sym_DOLLAR, - ACTIONS(10112), 1, - sym__comment_word, - ACTIONS(8028), 2, + ACTIONS(11401), 1, + sym_test_operator, + STATE(2800), 1, + aux_sym__literal_repeat1, + STATE(3119), 1, + sym_concatenation, + ACTIONS(10663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10110), 3, - sym__bare_dollar, + ACTIONS(11399), 2, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(2612), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251166,46 +277929,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209128] = 18, + [234862] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, - anon_sym_DOLLAR, - ACTIONS(1597), 1, + ACTIONS(3673), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(3675), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, + ACTIONS(3689), 1, sym__brace_start, - ACTIONS(8160), 1, + ACTIONS(11403), 1, + sym_word, + ACTIONS(11405), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(11407), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(11409), 1, + anon_sym_DOLLAR, + ACTIONS(11413), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(11417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(11419), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(11421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, - sym_word, - ACTIONS(10120), 1, + ACTIONS(11425), 1, sym__comment_word, - ACTIONS(8176), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(11411), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(11423), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11415), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(4978), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251215,46 +277978,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209195] = 18, - ACTIONS(3), 1, + [234929] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8068), 1, + ACTIONS(10639), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(10641), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8076), 1, + ACTIONS(10643), 1, + anon_sym_DOLLAR, + ACTIONS(10645), 1, + sym__special_character, + ACTIONS(10647), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(10651), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(10653), 1, aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(10655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(10657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, + ACTIONS(10659), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(10661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, + ACTIONS(10667), 1, sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(11427), 1, sym_word, - ACTIONS(10124), 1, - anon_sym_DOLLAR, - ACTIONS(10130), 1, - sym__comment_word, - ACTIONS(8092), 2, + ACTIONS(11431), 1, + sym_test_operator, + STATE(2899), 1, + aux_sym__literal_repeat1, + STATE(3145), 1, + sym_concatenation, + ACTIONS(10663), 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(11429), 2, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(2640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251264,46 +278029,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209262] = 18, + [235000] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(3673), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3675), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(3689), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(11403), 1, + sym_word, + ACTIONS(11405), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(11407), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(11413), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(11417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(11419), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(11421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, - sym_word, - ACTIONS(10134), 1, - anon_sym_DOLLAR, - ACTIONS(10140), 1, + ACTIONS(11425), 1, sym__comment_word, - ACTIONS(9802), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(11433), 1, + anon_sym_DOLLAR, + ACTIONS(11411), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(11423), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11415), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(4978), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251313,46 +278078,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209329] = 18, + [235067] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 1, - anon_sym_DOLLAR, - ACTIONS(2295), 1, + ACTIONS(2528), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(2530), 1, aux_sym_number_token2, - ACTIONS(2301), 1, + ACTIONS(2534), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, + ACTIONS(2544), 1, sym__brace_start, - ACTIONS(10142), 1, - sym_word, - ACTIONS(10144), 1, + ACTIONS(10919), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(10921), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(10925), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(10929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(10931), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(10933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, + ACTIONS(11435), 1, + sym_word, + ACTIONS(11437), 1, + anon_sym_DOLLAR, + ACTIONS(11443), 1, sym__comment_word, - ACTIONS(10148), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10160), 2, + ACTIONS(10935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, + ACTIONS(11439), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11441), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(1565), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251362,46 +278127,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209396] = 18, + [235134] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(2374), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(11279), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(11287), 1, sym__comment_word, - ACTIONS(10164), 1, + ACTIONS(11445), 1, anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(11283), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(11285), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(1879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251411,46 +278176,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209463] = 18, + [235201] = 18, ACTIONS(3), 1, sym_comment, - 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(10042), 1, + ACTIONS(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(191), 1, + anon_sym_DOLLAR, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(199), 1, + aux_sym_number_token1, + ACTIONS(201), 1, + aux_sym_number_token2, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(219), 1, + sym__brace_start, + ACTIONS(11447), 1, sym_word, - ACTIONS(10172), 1, + ACTIONS(11453), 1, sym__comment_word, - ACTIONS(10058), 2, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(11449), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, + ACTIONS(11451), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(537), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251460,46 +278225,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209530] = 18, + [235268] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4072), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, - aux_sym_number_token1, - ACTIONS(4078), 1, - aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(11067), 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(11071), 1, sym__comment_word, - ACTIONS(4088), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10178), 2, + ACTIONS(11455), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, sym_test_operator, sym__special_character, - ACTIONS(10180), 3, + ACTIONS(11069), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11061), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251509,46 +278274,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209597] = 18, + [235335] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_DOLLAR, - ACTIONS(2807), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(2813), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, - sym_word, - ACTIONS(10190), 1, + ACTIONS(11071), 1, sym__comment_word, - ACTIONS(9946), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10186), 2, + ACTIONS(11457), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, sym_test_operator, sym__special_character, - ACTIONS(10188), 3, + ACTIONS(11069), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11061), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251558,46 +278323,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209664] = 18, + [235402] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11101), 1, + sym_word, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(10192), 1, - sym_word, - ACTIONS(10194), 1, - anon_sym_DOLLAR, - ACTIONS(10200), 1, + ACTIONS(11123), 1, sym__comment_word, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10196), 2, + ACTIONS(11459), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, sym_test_operator, sym__special_character, - ACTIONS(10198), 3, + ACTIONS(11121), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11113), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251607,46 +278372,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209731] = 18, + [235469] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - anon_sym_DOLLAR, - ACTIONS(3129), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(10202), 1, + ACTIONS(11101), 1, sym_word, - ACTIONS(10204), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, + ACTIONS(11123), 1, sym__comment_word, - ACTIONS(10208), 2, + ACTIONS(11461), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, sym_test_operator, sym__special_character, - ACTIONS(10220), 2, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, + ACTIONS(11113), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251656,46 +278421,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209798] = 18, + [235536] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(2528), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(2530), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(2534), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(2544), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(10919), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(10921), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(10925), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(10929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(10931), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(10933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(11435), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(11443), 1, sym__comment_word, - ACTIONS(10224), 1, + ACTIONS(11463), 1, anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(10935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(11439), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(11441), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(1565), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251705,46 +278470,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209865] = 18, - ACTIONS(3), 1, + [235603] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2337), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(2343), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, + ACTIONS(11465), 1, sym_word, - ACTIONS(10232), 1, - sym__comment_word, - ACTIONS(9644), 2, + ACTIONS(11467), 1, + sym__special_character, + ACTIONS(11471), 1, + sym_test_operator, + STATE(4839), 1, + aux_sym__literal_repeat1, + STATE(5048), 1, + sym_concatenation, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10228), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10230), 3, - sym__bare_dollar, + ACTIONS(11469), 2, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(5047), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251754,46 +278521,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209932] = 18, + [235674] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(2374), 1, sym__brace_start, - ACTIONS(10234), 1, - sym_word, - ACTIONS(10236), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, + ACTIONS(11279), 1, + sym_word, + ACTIONS(11287), 1, sym__comment_word, - ACTIONS(10240), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10252), 2, + ACTIONS(11473), 1, + anon_sym_DOLLAR, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, + ACTIONS(11283), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11285), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(1879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251803,46 +278570,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209999] = 18, - ACTIONS(3), 1, + [235741] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, + ACTIONS(11467), 1, + sym__special_character, + ACTIONS(11475), 1, sym_word, - ACTIONS(10258), 1, - anon_sym_DOLLAR, - ACTIONS(10264), 1, - sym__comment_word, - ACTIONS(9778), 2, + ACTIONS(11479), 1, + sym_test_operator, + STATE(4885), 1, + aux_sym__literal_repeat1, + STATE(5078), 1, + sym_concatenation, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10260), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10262), 3, - sym__bare_dollar, + ACTIONS(11477), 2, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, + STATE(5077), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251852,46 +278621,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210066] = 18, + [235812] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(701), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(705), 1, - anon_sym_DOLLAR, - ACTIONS(709), 1, + ACTIONS(115), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, + ACTIONS(119), 1, aux_sym_number_token1, - ACTIONS(715), 1, + ACTIONS(121), 1, aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, + ACTIONS(125), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, + ACTIONS(139), 1, sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(11481), 1, sym_word, - ACTIONS(10272), 1, + ACTIONS(11483), 1, + anon_sym_DOLLAR, + ACTIONS(11489), 1, sym__comment_word, - ACTIONS(725), 2, + ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10268), 2, + ACTIONS(11485), 2, sym_test_operator, sym__special_character, - ACTIONS(10270), 3, + ACTIONS(11487), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(501), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251901,46 +278670,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210133] = 18, + [235879] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(107), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(109), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8192), 1, - anon_sym_DOLLAR, - ACTIONS(8196), 1, + ACTIONS(115), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(119), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(121), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(125), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, + ACTIONS(139), 1, sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(11481), 1, sym_word, - ACTIONS(10280), 1, + ACTIONS(11489), 1, sym__comment_word, - ACTIONS(8212), 2, + ACTIONS(11491), 1, + anon_sym_DOLLAR, + ACTIONS(131), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(11485), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(11487), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(501), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251950,46 +278719,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210200] = 18, + [235946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [235989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(3184), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(3186), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(3190), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(3200), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(11497), 1, + sym_word, + ACTIONS(11499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(11501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(11503), 1, + anon_sym_DOLLAR, + ACTIONS(11507), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(11511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(11513), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(11515), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, - sym_word, - ACTIONS(10264), 1, + ACTIONS(11519), 1, sym__comment_word, - ACTIONS(10282), 1, - anon_sym_DOLLAR, - ACTIONS(9778), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10260), 2, + ACTIONS(11505), 2, sym_test_operator, sym__special_character, - ACTIONS(10262), 3, + ACTIONS(11517), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11509), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, + STATE(4715), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251999,46 +278805,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210267] = 18, + [236056] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(3184), 1, + aux_sym_number_token1, + ACTIONS(3186), 1, + aux_sym_number_token2, + ACTIONS(3190), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3200), 1, + sym__brace_start, + ACTIONS(11497), 1, + sym_word, + ACTIONS(11499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(11501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8234), 1, + ACTIONS(11507), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(11511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(11513), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(11515), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(10284), 1, - sym_word, - ACTIONS(10290), 1, + ACTIONS(11519), 1, sym__comment_word, - ACTIONS(8250), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10286), 2, + ACTIONS(11521), 1, + anon_sym_DOLLAR, + ACTIONS(11505), 2, sym_test_operator, sym__special_character, - ACTIONS(10288), 3, + ACTIONS(11517), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11509), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(4715), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252048,46 +278854,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210334] = 18, + [236123] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(256), 1, + anon_sym_DOLLAR, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3324), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3336), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(10292), 1, - sym_word, - ACTIONS(10294), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10298), 1, - anon_sym_DOLLAR, - ACTIONS(10302), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, - anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(11263), 1, + sym_word, + ACTIONS(11271), 1, sym__comment_word, - ACTIONS(10300), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10312), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 3, + ACTIONS(11267), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11269), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252097,46 +278903,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210401] = 18, + [236190] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10316), 1, - sym_word, - ACTIONS(10318), 1, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10322), 1, - anon_sym_DOLLAR, - ACTIONS(10326), 1, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(10324), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10342), 2, + ACTIONS(11523), 1, + sym_word, + ACTIONS(11525), 1, + anon_sym_DOLLAR, + ACTIONS(11531), 1, + sym__comment_word, + ACTIONS(725), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, + ACTIONS(11527), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11529), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(963), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252146,46 +278952,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210468] = 18, - ACTIONS(3), 1, + [236257] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1883), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(1889), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(1891), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(1895), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, + ACTIONS(1528), 1, sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(10993), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(10995), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(10997), 1, + sym__special_character, + ACTIONS(10999), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(11003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(11005), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(11007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(11533), 1, sym_word, - ACTIONS(10354), 1, - sym__comment_word, - ACTIONS(8280), 2, + ACTIONS(11537), 1, + sym_test_operator, + STATE(1624), 1, + aux_sym__literal_repeat1, + STATE(1893), 1, + sym_concatenation, + ACTIONS(11009), 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(11535), 2, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(1114), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252195,46 +279003,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210535] = 18, + [236328] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5019), 1, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(5025), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(10356), 1, + ACTIONS(11523), 1, sym_word, - ACTIONS(10358), 1, - anon_sym_DOLLAR, - ACTIONS(10364), 1, + ACTIONS(11531), 1, sym__comment_word, - ACTIONS(5035), 2, + ACTIONS(11539), 1, + anon_sym_DOLLAR, + ACTIONS(725), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(11527), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(11529), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(963), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252244,46 +279052,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210602] = 18, - ACTIONS(3), 1, + [236395] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR, - ACTIONS(2546), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(2548), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(2552), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2564), 1, + ACTIONS(1528), 1, sym__brace_start, - ACTIONS(10366), 1, - sym_word, - ACTIONS(10368), 1, + ACTIONS(10993), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, + ACTIONS(10995), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, + ACTIONS(10997), 1, + sym__special_character, + ACTIONS(10999), 1, anon_sym_DQUOTE, - ACTIONS(10378), 1, + ACTIONS(11003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(11005), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(11007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, - sym__comment_word, - ACTIONS(10372), 2, + ACTIONS(11541), 1, + sym_word, + ACTIONS(11545), 1, sym_test_operator, - sym__special_character, - ACTIONS(10384), 2, + STATE(1446), 1, + aux_sym__literal_repeat1, + STATE(1756), 1, + sym_concatenation, + ACTIONS(11009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 3, - sym__bare_dollar, + ACTIONS(11543), 2, sym_raw_string, sym_ansi_c_string, - STATE(1498), 9, + STATE(1123), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252293,46 +279103,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210669] = 18, + [236466] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(2312), 1, + anon_sym_DOLLAR, + ACTIONS(2318), 1, + aux_sym_number_token1, + ACTIONS(2320), 1, + aux_sym_number_token2, + ACTIONS(2324), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2338), 1, + sym__brace_start, + ACTIONS(9027), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(9029), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4546), 1, + ACTIONS(9033), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(9037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(9039), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(9041), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, - sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(11547), 1, sym_word, - ACTIONS(10390), 1, - anon_sym_DOLLAR, - ACTIONS(10396), 1, + ACTIONS(11553), 1, sym__comment_word, - ACTIONS(4562), 2, + ACTIONS(9043), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10392), 2, + ACTIONS(11549), 2, sym_test_operator, sym__special_character, - ACTIONS(10394), 3, + ACTIONS(11551), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(1808), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252342,46 +279152,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210736] = 18, + [236533] = 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(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10256), 1, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(11251), 1, sym_word, - ACTIONS(10264), 1, + ACTIONS(11259), 1, sym__comment_word, - ACTIONS(9778), 2, + ACTIONS(11555), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10260), 2, + ACTIONS(11255), 2, sym_test_operator, sym__special_character, - ACTIONS(10262), 3, + ACTIONS(11257), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1011), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252391,46 +279201,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210803] = 18, - ACTIONS(3), 1, + [236600] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3237), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(3243), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, + ACTIONS(11557), 1, sym_word, - ACTIONS(10404), 1, - sym__comment_word, - ACTIONS(9740), 2, + ACTIONS(11559), 1, + sym__special_character, + ACTIONS(11563), 1, + sym_test_operator, + STATE(4711), 1, + aux_sym__literal_repeat1, + STATE(4835), 1, + sym_concatenation, + ACTIONS(11121), 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(11561), 2, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(4833), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252440,46 +279252,85 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210870] = 18, + [236671] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(11565), 1, + aux_sym_concatenation_token1, + ACTIONS(11567), 1, + sym__concat, + STATE(4570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [236714] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(3484), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(10406), 1, - sym_word, - ACTIONS(10408), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, - sym__comment_word, - ACTIONS(10412), 2, - sym_test_operator, + ACTIONS(11559), 1, sym__special_character, - ACTIONS(10424), 2, + ACTIONS(11569), 1, + sym_word, + ACTIONS(11573), 1, + sym_test_operator, + STATE(4717), 1, + aux_sym__literal_repeat1, + STATE(4848), 1, + sym_concatenation, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, - sym__bare_dollar, + ACTIONS(11571), 2, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(4847), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252489,46 +279340,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210937] = 18, + [236785] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2619), 1, - anon_sym_DOLLAR, - 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(4499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, + ACTIONS(4507), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(4511), 1, + aux_sym_number_token1, + ACTIONS(4513), 1, + aux_sym_number_token2, + ACTIONS(4515), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(4517), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4519), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(4521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(4531), 1, + sym__brace_start, + ACTIONS(11575), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(11577), 1, + anon_sym_DOLLAR, + ACTIONS(11583), 1, sym__comment_word, - ACTIONS(9758), 2, + ACTIONS(4523), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(11579), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(11581), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(2886), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252538,46 +279389,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211004] = 18, + [236852] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3344), 1, + ACTIONS(3468), 1, anon_sym_DOLLAR, - ACTIONS(3350), 1, + ACTIONS(3474), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(3476), 1, aux_sym_number_token2, - ACTIONS(3356), 1, + ACTIONS(3480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, + ACTIONS(3492), 1, sym__brace_start, - ACTIONS(10436), 1, + ACTIONS(11585), 1, sym_word, - ACTIONS(10438), 1, + ACTIONS(11587), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(11589), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(11593), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(11605), 1, sym__comment_word, - ACTIONS(10442), 2, + ACTIONS(11591), 2, sym_test_operator, sym__special_character, - ACTIONS(10454), 2, + ACTIONS(11603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(11595), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(2040), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252587,46 +279438,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211071] = 18, + [236919] = 7, 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(11143), 1, + anon_sym_LT_LT_LT, + STATE(5367), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, + [236964] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(4507), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(4511), 1, + aux_sym_number_token1, + ACTIONS(4513), 1, + aux_sym_number_token2, + ACTIONS(4515), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(4517), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4519), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(4521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, + ACTIONS(4531), 1, + sym__brace_start, + ACTIONS(11575), 1, sym_word, - ACTIONS(10404), 1, + ACTIONS(11583), 1, sym__comment_word, - ACTIONS(10458), 1, + ACTIONS(11607), 1, anon_sym_DOLLAR, - ACTIONS(9740), 2, + ACTIONS(4523), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10400), 2, + ACTIONS(11579), 2, sym_test_operator, sym__special_character, - ACTIONS(10402), 3, + ACTIONS(11581), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(2886), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252636,46 +279525,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211138] = 18, - ACTIONS(3), 1, + [237031] = 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(1645), 1, anon_sym_DOLLAR, - ACTIONS(8378), 1, - anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(8386), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10531), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10533), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10535), 1, + sym__special_character, + ACTIONS(10537), 1, + anon_sym_DQUOTE, + ACTIONS(10541), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, - sym__brace_start, - ACTIONS(10460), 1, + ACTIONS(11609), 1, sym_word, - ACTIONS(10466), 1, - sym__comment_word, - ACTIONS(8394), 2, + ACTIONS(11613), 1, + sym_test_operator, + STATE(1475), 1, + aux_sym__literal_repeat1, + STATE(1758), 1, + sym_concatenation, + ACTIONS(10547), 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(11611), 2, sym_raw_string, sym_ansi_c_string, - STATE(4362), 9, + STATE(1144), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252685,46 +279576,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211205] = 18, - ACTIONS(3), 1, + [237102] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3243), 1, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(3245), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(3249), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(9724), 1, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9726), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9730), 1, + ACTIONS(10535), 1, + sym__special_character, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10398), 1, + ACTIONS(11615), 1, sym_word, - ACTIONS(10404), 1, - sym__comment_word, - ACTIONS(10468), 1, - anon_sym_DOLLAR, - ACTIONS(9740), 2, + ACTIONS(11619), 1, + sym_test_operator, + STATE(1479), 1, + aux_sym__literal_repeat1, + STATE(1816), 1, + sym_concatenation, + ACTIONS(10547), 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(11617), 2, sym_raw_string, sym_ansi_c_string, - STATE(1831), 9, + STATE(1149), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252734,46 +279627,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211272] = 18, + [237173] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, + ACTIONS(1504), 1, + anon_sym_DOLLAR, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(5633), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(5637), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, + ACTIONS(1528), 1, sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(10993), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(10995), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(10999), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(11003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(11005), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(11007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, + ACTIONS(11621), 1, sym_word, - ACTIONS(10472), 1, - anon_sym_DOLLAR, - ACTIONS(10478), 1, + ACTIONS(11627), 1, sym__comment_word, - ACTIONS(9890), 2, + ACTIONS(11009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(11623), 2, sym_test_operator, sym__special_character, - ACTIONS(10476), 3, + ACTIONS(11625), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3342), 9, + STATE(1323), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252783,46 +279676,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211339] = 18, - ACTIONS(3), 1, + [237240] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(256), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(262), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(11067), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11629), 1, sym_word, - ACTIONS(10486), 1, - sym__comment_word, - ACTIONS(1125), 2, + ACTIONS(11631), 1, + sym__special_character, + ACTIONS(11635), 1, + sym_test_operator, + STATE(5048), 1, + sym_concatenation, + STATE(5345), 1, + aux_sym__literal_repeat1, + ACTIONS(11069), 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(11633), 2, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(5184), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252832,46 +279727,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211406] = 18, + [237311] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3659), 1, sym__brace_start, - ACTIONS(10488), 1, + ACTIONS(11291), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(11293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(11295), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10494), 1, - anon_sym_DOLLAR, - ACTIONS(10498), 1, + ACTIONS(11301), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(11305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(11307), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(11309), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(11313), 1, sym__comment_word, - ACTIONS(10496), 2, + ACTIONS(11637), 1, + anon_sym_DOLLAR, + ACTIONS(11299), 2, sym_test_operator, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(11311), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(11303), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(2095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252881,46 +279776,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211473] = 18, - ACTIONS(3), 1, + [237378] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(10512), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, + ACTIONS(11631), 1, sym__special_character, - ACTIONS(10508), 2, + ACTIONS(11639), 1, + sym_word, + ACTIONS(11643), 1, + sym_test_operator, + STATE(5078), 1, + sym_concatenation, + STATE(5349), 1, + aux_sym__literal_repeat1, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(11641), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(5188), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252930,46 +279827,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211540] = 18, + [237449] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(519), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(531), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(543), 1, sym__brace_start, - ACTIONS(10514), 1, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, sym_word, - ACTIONS(10516), 1, + ACTIONS(10569), 1, + sym__comment_word, + ACTIONS(539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10573), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10571), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [237516] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10520), 1, - anon_sym_DOLLAR, - ACTIONS(10524), 1, + ACTIONS(8737), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8741), 1, + aux_sym_number_token1, + ACTIONS(8743), 1, + aux_sym_number_token2, + ACTIONS(8745), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8747), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8749), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8751), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(8761), 1, + sym__brace_start, + ACTIONS(11645), 1, + sym_word, + ACTIONS(11647), 1, + anon_sym_DOLLAR, + ACTIONS(11653), 1, sym__comment_word, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(8753), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(11649), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11651), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(4749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252979,46 +279925,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211607] = 18, - ACTIONS(3), 1, + [237583] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(1601), 1, + anon_sym_DOLLAR, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(1625), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(10593), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10595), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10597), 1, + sym__special_character, + ACTIONS(10599), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10605), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(10538), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(11655), 1, + sym_word, + ACTIONS(11659), 1, sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + STATE(1503), 1, + aux_sym__literal_repeat1, + STATE(1662), 1, + sym_concatenation, + ACTIONS(10609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(11657), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1155), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253028,46 +279976,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211674] = 18, + [237654] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8737), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(8741), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(8743), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(8745), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(8747), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(8749), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8751), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(8761), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(11645), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(11653), 1, sym__comment_word, - ACTIONS(10540), 1, + ACTIONS(11661), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(8753), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(11649), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(11651), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253077,48 +280025,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211741] = 20, + [237721] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(1625), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(10593), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(10595), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, + ACTIONS(10597), 1, sym__special_character, - ACTIONS(9654), 1, + ACTIONS(10599), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(10603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(10605), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(10607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10542), 1, + ACTIONS(11663), 1, sym_word, - ACTIONS(10546), 1, + ACTIONS(11667), 1, sym_test_operator, - STATE(1360), 1, + STATE(1505), 1, aux_sym__literal_repeat1, - STATE(1612), 1, + STATE(1689), 1, sym_concatenation, - ACTIONS(9664), 2, + ACTIONS(10609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10544), 2, + ACTIONS(11665), 2, sym_raw_string, sym_ansi_c_string, - STATE(1100), 9, + STATE(1158), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253128,46 +280076,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211812] = 18, + [237792] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4637), 1, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(4643), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(10548), 1, + ACTIONS(11169), 1, sym_word, - ACTIONS(10550), 1, - anon_sym_DOLLAR, - ACTIONS(10556), 1, + ACTIONS(11177), 1, sym__comment_word, - ACTIONS(4653), 2, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10552), 2, + ACTIONS(11173), 2, sym_test_operator, sym__special_character, - ACTIONS(10554), 3, + ACTIONS(11175), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(1803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253177,46 +280125,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211879] = 18, + [237859] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(3641), 1, + aux_sym_number_token1, + ACTIONS(3643), 1, + aux_sym_number_token2, + ACTIONS(3647), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3659), 1, + sym__brace_start, + ACTIONS(11291), 1, + sym_word, + ACTIONS(11293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(11295), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(11301), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(11305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(11307), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(11309), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, - sym_word, - ACTIONS(10084), 1, + ACTIONS(11313), 1, sym__comment_word, - ACTIONS(10558), 1, + ACTIONS(11669), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(11299), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(11311), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11303), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253226,48 +280174,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211946] = 20, + [237926] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9652), 1, - sym__special_character, - ACTIONS(9654), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10560), 1, + ACTIONS(11671), 1, sym_word, - ACTIONS(10564), 1, + ACTIONS(11673), 1, + sym__special_character, + ACTIONS(11677), 1, sym_test_operator, - STATE(1366), 1, - aux_sym__literal_repeat1, - STATE(1613), 1, + STATE(4835), 1, sym_concatenation, - ACTIONS(9664), 2, + STATE(5195), 1, + aux_sym__literal_repeat1, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10562), 2, + ACTIONS(11675), 2, sym_raw_string, sym_ansi_c_string, - STATE(1102), 9, + STATE(4948), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253277,46 +280225,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212017] = 18, - ACTIONS(3), 1, + [237997] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4637), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(4641), 1, - aux_sym_number_token1, - ACTIONS(4643), 1, - aux_sym_number_token2, - ACTIONS(4645), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(10548), 1, + ACTIONS(11673), 1, + sym__special_character, + ACTIONS(11679), 1, sym_word, - ACTIONS(10556), 1, - sym__comment_word, - ACTIONS(10566), 1, - anon_sym_DOLLAR, - ACTIONS(4653), 2, + ACTIONS(11683), 1, + sym_test_operator, + STATE(4848), 1, + sym_concatenation, + STATE(5031), 1, + aux_sym__literal_repeat1, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10552), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10554), 3, - sym__bare_dollar, + ACTIONS(11681), 2, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(4950), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253326,46 +280276,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212084] = 18, + [238068] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(2374), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(11279), 1, sym_word, - ACTIONS(10570), 1, - anon_sym_DOLLAR, - ACTIONS(10576), 1, + ACTIONS(11287), 1, sym__comment_word, - ACTIONS(9820), 2, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(11283), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(11285), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(1879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253375,46 +280325,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212151] = 18, + [238135] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(9055), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(9057), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7982), 1, + ACTIONS(9063), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(9067), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(9069), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(9071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(9073), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(9075), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(9087), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(11685), 1, sym_word, - ACTIONS(10580), 1, + ACTIONS(11687), 1, anon_sym_DOLLAR, - ACTIONS(10586), 1, + ACTIONS(11693), 1, sym__comment_word, - ACTIONS(7998), 2, + ACTIONS(9079), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(11689), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(11691), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(1458), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253424,46 +280374,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212218] = 18, - ACTIONS(3), 1, + [238202] = 20, + ACTIONS(71), 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(5686), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(5688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(5690), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(5698), 1, + aux_sym_number_token1, + ACTIONS(5700), 1, + aux_sym_number_token2, + ACTIONS(5702), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(5704), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5706), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(5714), 1, + sym__brace_start, + ACTIONS(11695), 1, sym_word, - ACTIONS(10576), 1, - sym__comment_word, - ACTIONS(10588), 1, - anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(11697), 1, + sym__special_character, + ACTIONS(11701), 1, + sym_test_operator, + STATE(5809), 1, + aux_sym__literal_repeat1, + STATE(6029), 1, + sym_concatenation, + ACTIONS(5710), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10574), 3, - sym__bare_dollar, + ACTIONS(11699), 2, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(5699), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253473,46 +280425,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212285] = 18, + [238273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5631), 1, - aux_sym_number_token1, - ACTIONS(5633), 1, - aux_sym_number_token2, - ACTIONS(5637), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5647), 1, - sym__brace_start, - ACTIONS(9874), 1, + ACTIONS(9055), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, + ACTIONS(9057), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, + ACTIONS(9063), 1, anon_sym_DQUOTE, - ACTIONS(9884), 1, + ACTIONS(9067), 1, + aux_sym_number_token1, + ACTIONS(9069), 1, + aux_sym_number_token2, + ACTIONS(9071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(9073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9075), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, + ACTIONS(9087), 1, + sym__brace_start, + ACTIONS(11685), 1, sym_word, - ACTIONS(10478), 1, + ACTIONS(11693), 1, sym__comment_word, - ACTIONS(10590), 1, + ACTIONS(11703), 1, anon_sym_DOLLAR, - ACTIONS(9890), 2, + ACTIONS(9079), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(11689), 2, sym_test_operator, sym__special_character, - ACTIONS(10476), 3, + ACTIONS(11691), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3342), 9, + STATE(1458), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253522,46 +280474,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212352] = 18, - ACTIONS(3), 1, + [238340] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3484), 1, - aux_sym_number_token1, - ACTIONS(3486), 1, - aux_sym_number_token2, - ACTIONS(3490), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, - sym__brace_start, - ACTIONS(10406), 1, - sym_word, - ACTIONS(10408), 1, + ACTIONS(5686), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(5688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(5690), 1, + anon_sym_DOLLAR, + ACTIONS(5694), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(5698), 1, + aux_sym_number_token1, + ACTIONS(5700), 1, + aux_sym_number_token2, + ACTIONS(5702), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(5704), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5706), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, - sym__comment_word, - ACTIONS(10592), 1, - anon_sym_DOLLAR, - ACTIONS(10412), 2, - sym_test_operator, + ACTIONS(5714), 1, + sym__brace_start, + ACTIONS(11697), 1, sym__special_character, - ACTIONS(10424), 2, + ACTIONS(11705), 1, + sym_word, + ACTIONS(11709), 1, + sym_test_operator, + STATE(5770), 1, + aux_sym__literal_repeat1, + STATE(6034), 1, + sym_concatenation, + ACTIONS(5710), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, - sym__bare_dollar, + ACTIONS(11707), 2, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(5711), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253571,48 +280525,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212419] = 20, - ACTIONS(71), 1, + [238411] = 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(3635), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, - sym__special_character, - ACTIONS(7874), 1, - anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(7882), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, - anon_sym_BQUOTE, - ACTIONS(7888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(3659), 1, sym__brace_start, - ACTIONS(10594), 1, + ACTIONS(11291), 1, sym_word, - ACTIONS(10598), 1, + ACTIONS(11293), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11295), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11301), 1, + anon_sym_DQUOTE, + ACTIONS(11305), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11307), 1, + anon_sym_BQUOTE, + ACTIONS(11309), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11313), 1, + sym__comment_word, + ACTIONS(11299), 2, sym_test_operator, - STATE(1790), 1, - aux_sym__literal_repeat1, - STATE(1987), 1, - sym_concatenation, - ACTIONS(7890), 2, + sym__special_character, + ACTIONS(11311), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10596), 2, + ACTIONS(11303), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1307), 9, + STATE(2095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253622,46 +280574,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212490] = 18, + [238478] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, + ACTIONS(1857), 1, aux_sym_number_token1, - ACTIONS(5775), 1, + ACTIONS(1859), 1, aux_sym_number_token2, - ACTIONS(5779), 1, + ACTIONS(1863), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5789), 1, + ACTIONS(1877), 1, sym__brace_start, - ACTIONS(10600), 1, - sym_word, - ACTIONS(10602), 1, + ACTIONS(9225), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10606), 1, - anon_sym_DOLLAR, - ACTIONS(10610), 1, + ACTIONS(9231), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(9235), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(9237), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(9239), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, + ACTIONS(11711), 1, + sym_word, + ACTIONS(11713), 1, + anon_sym_DOLLAR, + ACTIONS(11719), 1, sym__comment_word, - ACTIONS(10608), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10620), 2, + ACTIONS(9241), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, + ACTIONS(11715), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11717), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(1483), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253671,46 +280623,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212557] = 18, - ACTIONS(3), 1, + [238545] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3484), 1, - aux_sym_number_token1, - ACTIONS(3486), 1, - aux_sym_number_token2, - ACTIONS(3490), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, - sym__brace_start, - ACTIONS(10406), 1, - sym_word, - ACTIONS(10408), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(2792), 1, + anon_sym_DOLLAR, + ACTIONS(2794), 1, + sym__special_character, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(2800), 1, + aux_sym_number_token1, + ACTIONS(2802), 1, + aux_sym_number_token2, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(2806), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10426), 1, - sym__comment_word, - ACTIONS(10624), 1, - anon_sym_DOLLAR, - ACTIONS(10412), 2, + ACTIONS(2818), 1, + sym__brace_start, + ACTIONS(11721), 1, + sym_word, + ACTIONS(11725), 1, sym_test_operator, - sym__special_character, - ACTIONS(10424), 2, + STATE(2677), 1, + aux_sym__literal_repeat1, + STATE(2834), 1, + sym_concatenation, + ACTIONS(2812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 3, - sym__bare_dollar, + ACTIONS(11723), 2, sym_raw_string, sym_ansi_c_string, - STATE(4511), 9, + STATE(2290), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253720,46 +280674,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212624] = 18, + [238616] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(1857), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(1859), 1, aux_sym_number_token2, - ACTIONS(2079), 1, + ACTIONS(1863), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + ACTIONS(1877), 1, sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(9225), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(9231), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(9235), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(9237), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(9239), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(11711), 1, sym_word, - ACTIONS(10628), 1, - anon_sym_DOLLAR, - ACTIONS(10634), 1, + ACTIONS(11719), 1, sym__comment_word, - ACTIONS(7924), 2, + ACTIONS(11727), 1, + anon_sym_DOLLAR, + ACTIONS(9241), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(11715), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(11717), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(1483), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253769,99 +280723,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212691] = 22, - ACTIONS(3), 1, + [238683] = 20, + ACTIONS(71), 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(2788), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2790), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, + ACTIONS(2794), 1, + sym__special_character, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(2810), 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(2818), 1, + sym__brace_start, + ACTIONS(11729), 1, + sym_word, + ACTIONS(11733), 1, + sym_test_operator, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(2910), 1, + sym_concatenation, + ACTIONS(2812), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11731), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2294), 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, + [238754] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, + ACTIONS(5468), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(115), 1, + ACTIONS(5474), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(5478), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(5480), 1, aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(5482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(5484), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(5486), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(5488), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, + ACTIONS(5496), 1, sym__brace_start, - ACTIONS(10662), 1, + ACTIONS(11735), 1, sym_word, - ACTIONS(10664), 1, + ACTIONS(11737), 1, anon_sym_DOLLAR, - ACTIONS(10670), 1, + ACTIONS(11743), 1, sym__comment_word, - ACTIONS(131), 2, + ACTIONS(5490), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(11739), 2, sym_test_operator, sym__special_character, - ACTIONS(10668), 3, + ACTIONS(11741), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + STATE(3115), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253871,48 +280823,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212833] = 20, - ACTIONS(71), 1, + [238821] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10672), 1, + ACTIONS(11073), 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(11081), 1, + sym__comment_word, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10676), 2, + ACTIONS(11077), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11079), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4570), 9, + STATE(1352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253922,48 +280872,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212904] = 20, - ACTIONS(71), 1, + [238888] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2911), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2913), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2917), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2929), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(11745), 1, + sym_word, + ACTIONS(11747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(11749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(11751), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(11759), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(11761), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(11763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10674), 1, - sym__special_character, - ACTIONS(10680), 1, - sym_word, - ACTIONS(10684), 1, + ACTIONS(11767), 1, + sym__comment_word, + ACTIONS(11753), 2, sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + sym__special_character, + ACTIONS(11765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10682), 2, + ACTIONS(11757), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4574), 9, + STATE(1785), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253973,48 +280921,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212975] = 20, + [238955] = 20, ACTIONS(71), 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(5292), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5296), 1, + anon_sym_DOLLAR, + ACTIONS(5300), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5304), 1, + aux_sym_number_token1, + ACTIONS(5306), 1, + aux_sym_number_token2, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5310), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5312), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10686), 1, + ACTIONS(5320), 1, + sym__brace_start, + ACTIONS(11769), 1, sym_word, - ACTIONS(10688), 1, + ACTIONS(11771), 1, sym__special_character, - ACTIONS(10692), 1, + ACTIONS(11775), 1, sym_test_operator, - STATE(4260), 1, + STATE(5703), 1, aux_sym__literal_repeat1, - STATE(4557), 1, + STATE(5958), 1, sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(5316), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10690), 2, + ACTIONS(11773), 2, sym_raw_string, sym_ansi_c_string, - STATE(4459), 9, + STATE(5603), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254024,48 +280972,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213046] = 20, - ACTIONS(71), 1, + [239026] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(2911), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2913), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2917), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2929), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(11745), 1, + sym_word, + ACTIONS(11747), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(11749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(11755), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(11759), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(11761), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(11763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10688), 1, - sym__special_character, - ACTIONS(10694), 1, - sym_word, - ACTIONS(10698), 1, + ACTIONS(11767), 1, + sym__comment_word, + ACTIONS(11777), 1, + anon_sym_DOLLAR, + ACTIONS(11753), 2, sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + sym__special_character, + ACTIONS(11765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10696), 2, + ACTIONS(11757), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4461), 9, + STATE(1785), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254075,48 +281021,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213117] = 20, + [239093] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(5296), 1, anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(5300), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(5304), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(5306), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(5310), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(5312), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(5320), 1, sym__brace_start, - ACTIONS(10700), 1, + ACTIONS(11771), 1, + sym__special_character, + ACTIONS(11779), 1, sym_word, - ACTIONS(10704), 1, + ACTIONS(11783), 1, sym_test_operator, - STATE(3449), 1, + STATE(5712), 1, aux_sym__literal_repeat1, - STATE(3696), 1, + STATE(5917), 1, sym_concatenation, - ACTIONS(7998), 2, + ACTIONS(5316), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10702), 2, + ACTIONS(11781), 2, sym_raw_string, sym_ansi_c_string, - STATE(3356), 9, + STATE(5570), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254126,46 +281072,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213188] = 18, + [239164] = 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(5466), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(5468), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(5474), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(5478), 1, + aux_sym_number_token1, + ACTIONS(5480), 1, + aux_sym_number_token2, + ACTIONS(5482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(5484), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5486), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(5488), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(5496), 1, + sym__brace_start, + ACTIONS(11735), 1, sym_word, - ACTIONS(10634), 1, + ACTIONS(11743), 1, sym__comment_word, - ACTIONS(10706), 1, + ACTIONS(11785), 1, anon_sym_DOLLAR, - ACTIONS(7924), 2, + ACTIONS(5490), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(11739), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(11741), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(3115), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254175,46 +281121,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213255] = 18, + [239231] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(9093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(9095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7982), 1, + ACTIONS(9097), 1, + anon_sym_DOLLAR, + ACTIONS(9101), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(9105), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(9107), 1, aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(9113), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(9125), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(11787), 1, sym_word, - ACTIONS(10586), 1, + ACTIONS(11793), 1, sym__comment_word, - ACTIONS(10708), 1, - anon_sym_DOLLAR, - ACTIONS(7998), 2, + ACTIONS(9117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(11789), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(11791), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254224,48 +281170,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213322] = 20, - ACTIONS(71), 1, + [239298] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, - anon_sym_DOLLAR, - ACTIONS(7980), 1, - sym__special_character, - ACTIONS(7982), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(7986), 1, - aux_sym_number_token1, - ACTIONS(7988), 1, - aux_sym_number_token2, - ACTIONS(7990), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, - sym__brace_start, - ACTIONS(10710), 1, + ACTIONS(11073), 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(11081), 1, + sym__comment_word, + ACTIONS(11795), 1, + anon_sym_DOLLAR, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10712), 2, + ACTIONS(11077), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11079), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3351), 9, + STATE(1352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254275,46 +281219,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213393] = 18, - ACTIONS(3), 1, + [239365] = 20, + ACTIONS(71), 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(8989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(8991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, + ACTIONS(8993), 1, + anon_sym_DOLLAR, + ACTIONS(8995), 1, + sym__special_character, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(9001), 1, + aux_sym_number_token1, + ACTIONS(9003), 1, + aux_sym_number_token2, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(9007), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(9021), 1, + sym__brace_start, + ACTIONS(11797), 1, sym_word, - ACTIONS(10434), 1, - sym__comment_word, - ACTIONS(10716), 1, - anon_sym_DOLLAR, - ACTIONS(9758), 2, + ACTIONS(11801), 1, + sym_test_operator, + STATE(3036), 1, + aux_sym__literal_repeat1, + STATE(3325), 1, + sym_concatenation, + ACTIONS(9013), 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(11799), 2, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(2676), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254324,46 +281270,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213460] = 18, + [239436] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(2631), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2641), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(9742), 1, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9744), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9748), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(9752), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(11073), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(11081), 1, sym__comment_word, - ACTIONS(10718), 1, + ACTIONS(11803), 1, anon_sym_DOLLAR, - ACTIONS(9758), 2, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(11077), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(11079), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1526), 9, + STATE(1352), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254373,46 +281319,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213527] = 18, - ACTIONS(3), 1, + [239503] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(8989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(8991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2661), 1, + ACTIONS(8993), 1, + anon_sym_DOLLAR, + ACTIONS(8995), 1, + sym__special_character, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(9001), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(9003), 1, aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(9007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, + ACTIONS(9021), 1, sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(11805), 1, sym_word, - ACTIONS(10722), 1, - anon_sym_DOLLAR, - ACTIONS(10728), 1, - sym__comment_word, - ACTIONS(2677), 2, + ACTIONS(11809), 1, + sym_test_operator, + STATE(3042), 1, + aux_sym__literal_repeat1, + STATE(3155), 1, + sym_concatenation, + ACTIONS(9013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10726), 3, - sym__bare_dollar, + ACTIONS(11807), 2, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(2704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254422,46 +281370,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213594] = 18, + [239574] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 1, + ACTIONS(4818), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11143), 1, + anon_sym_LT_LT_LT, + ACTIONS(11145), 1, + sym_file_descriptor, + STATE(5367), 1, + sym_herestring_redirect, + ACTIONS(4724), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4728), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4814), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4816), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11139), 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, + [239631] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2382), 1, anon_sym_DOLLAR, - ACTIONS(2073), 1, + ACTIONS(2388), 1, aux_sym_number_token1, - ACTIONS(2075), 1, + ACTIONS(2390), 1, aux_sym_number_token2, - ACTIONS(2079), 1, + ACTIONS(2394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2093), 1, + ACTIONS(2408), 1, sym__brace_start, - ACTIONS(7908), 1, + ACTIONS(8905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7910), 1, + ACTIONS(8907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7914), 1, + ACTIONS(8911), 1, anon_sym_DQUOTE, - ACTIONS(7918), 1, + ACTIONS(8915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(8917), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(8919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10626), 1, + ACTIONS(11811), 1, sym_word, - ACTIONS(10634), 1, + ACTIONS(11817), 1, sym__comment_word, - ACTIONS(7924), 2, + ACTIONS(8921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10630), 2, + ACTIONS(11813), 2, sym_test_operator, sym__special_character, - ACTIONS(10632), 3, + ACTIONS(11815), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1618), 9, + STATE(1717), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254471,46 +281463,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213661] = 18, + [239698] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1474), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(1476), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, + ACTIONS(1492), 1, sym__brace_start, - ACTIONS(8160), 1, + ACTIONS(10717), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(10719), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(10723), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(10727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(10729), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(10731), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, + ACTIONS(11819), 1, sym_word, - ACTIONS(10120), 1, - sym__comment_word, - ACTIONS(10730), 1, + ACTIONS(11821), 1, anon_sym_DOLLAR, - ACTIONS(8176), 2, + ACTIONS(11827), 1, + sym__comment_word, + ACTIONS(10733), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(11823), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(11825), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(1116), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254520,46 +281512,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213728] = 18, - ACTIONS(3), 1, + [239765] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(6434), 1, + anon_sym_DOLLAR, + ACTIONS(6440), 1, + aux_sym_number_token1, + ACTIONS(6442), 1, + aux_sym_number_token2, + ACTIONS(6446), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6456), 1, + sym__brace_start, + ACTIONS(11829), 1, + sym_word, + ACTIONS(11831), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, + ACTIONS(11833), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(115), 1, + ACTIONS(11835), 1, + sym__special_character, + ACTIONS(11837), 1, anon_sym_DQUOTE, - ACTIONS(119), 1, - aux_sym_number_token1, - ACTIONS(121), 1, - aux_sym_number_token2, - ACTIONS(123), 1, + ACTIONS(11841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(11843), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(11845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, - sym__brace_start, - ACTIONS(10662), 1, - sym_word, - ACTIONS(10670), 1, - sym__comment_word, - ACTIONS(10732), 1, - anon_sym_DOLLAR, - ACTIONS(131), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(11849), 1, sym_test_operator, - sym__special_character, - ACTIONS(10668), 3, - sym__bare_dollar, + STATE(6049), 1, + aux_sym__literal_repeat1, + STATE(6124), 1, + sym_concatenation, + ACTIONS(11839), 2, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + ACTIONS(11847), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5974), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254569,46 +281563,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213795] = 18, + [239836] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(1474), 1, + aux_sym_number_token1, + ACTIONS(1476), 1, + aux_sym_number_token2, + ACTIONS(1480), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1492), 1, + sym__brace_start, + ACTIONS(10717), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, + ACTIONS(10719), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2661), 1, + ACTIONS(10723), 1, anon_sym_DQUOTE, - ACTIONS(2665), 1, - aux_sym_number_token1, - ACTIONS(2667), 1, - aux_sym_number_token2, - ACTIONS(2669), 1, + ACTIONS(10727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(10729), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(10731), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(11819), 1, sym_word, - ACTIONS(10728), 1, + ACTIONS(11827), 1, sym__comment_word, - ACTIONS(10734), 1, + ACTIONS(11851), 1, anon_sym_DOLLAR, - ACTIONS(2677), 2, + ACTIONS(10733), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(11823), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(11825), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(1116), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254618,48 +281612,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213862] = 20, + [239903] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(6434), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(6440), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(6442), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(6446), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(6456), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(11831), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(11833), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(11835), 1, + sym__special_character, + ACTIONS(11837), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(11841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(11843), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(11845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10736), 1, + ACTIONS(11853), 1, sym_word, - ACTIONS(10738), 1, - sym__special_character, - ACTIONS(10742), 1, + ACTIONS(11857), 1, sym_test_operator, - STATE(4260), 1, + STATE(6081), 1, aux_sym__literal_repeat1, - STATE(4557), 1, + STATE(6119), 1, sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(11847), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10740), 2, + ACTIONS(11855), 2, sym_raw_string, sym_ansi_c_string, - STATE(4382), 9, + STATE(5981), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254669,48 +281663,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213933] = 20, - ACTIONS(71), 1, + [239974] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3349), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3355), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3357), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3373), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(11859), 1, + sym_word, + ACTIONS(11861), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(11863), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(11867), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(11871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(11873), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(11875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10738), 1, - sym__special_character, - ACTIONS(10744), 1, - sym_word, - ACTIONS(10748), 1, + ACTIONS(11879), 1, + sym__comment_word, + ACTIONS(11865), 2, sym_test_operator, - STATE(4213), 1, - aux_sym__literal_repeat1, - STATE(4518), 1, - sym_concatenation, - ACTIONS(10534), 2, + sym__special_character, + ACTIONS(11877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10746), 2, + ACTIONS(11869), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4342), 9, + STATE(2133), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254720,48 +281712,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214004] = 20, + [240041] = 20, ACTIONS(71), 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(6072), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(6074), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(6076), 1, + anon_sym_DOLLAR, + ACTIONS(6078), 1, + sym__special_character, + ACTIONS(6080), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(6084), 1, + aux_sym_number_token1, + ACTIONS(6086), 1, + aux_sym_number_token2, + ACTIONS(6088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6092), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(6094), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10750), 1, + ACTIONS(6100), 1, + sym__brace_start, + ACTIONS(11881), 1, sym_word, - ACTIONS(10752), 1, - sym__special_character, - ACTIONS(10756), 1, + ACTIONS(11885), 1, sym_test_operator, - STATE(4353), 1, + STATE(5961), 1, aux_sym__literal_repeat1, - STATE(4901), 1, + STATE(6102), 1, sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(6096), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10754), 2, + ACTIONS(11883), 2, sym_raw_string, sym_ansi_c_string, - STATE(4878), 9, + STATE(5878), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254771,48 +281763,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214075] = 20, + [240112] = 20, ACTIONS(71), 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(6072), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(6074), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(6076), 1, + anon_sym_DOLLAR, + ACTIONS(6078), 1, + sym__special_character, + ACTIONS(6080), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(6084), 1, + aux_sym_number_token1, + ACTIONS(6086), 1, + aux_sym_number_token2, + ACTIONS(6088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6092), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(6094), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10752), 1, - sym__special_character, - ACTIONS(10758), 1, + ACTIONS(6100), 1, + sym__brace_start, + ACTIONS(11887), 1, sym_word, - ACTIONS(10762), 1, + ACTIONS(11891), 1, sym_test_operator, - STATE(4371), 1, + STATE(5945), 1, aux_sym__literal_repeat1, - STATE(4761), 1, + STATE(6052), 1, sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(6096), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10760), 2, + ACTIONS(11889), 2, sym_raw_string, sym_ansi_c_string, - STATE(4882), 9, + STATE(5807), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254822,48 +281814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214146] = 20, - ACTIONS(71), 1, + [240183] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3387), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3389), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3403), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(10945), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10947), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10951), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10955), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10957), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10764), 1, + ACTIONS(11893), 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(11895), 1, + anon_sym_DOLLAR, + ACTIONS(11901), 1, + sym__comment_word, + ACTIONS(10961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10768), 2, + ACTIONS(11897), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11899), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4630), 9, + STATE(2033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254873,48 +281863,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214217] = 20, - ACTIONS(71), 1, + [240250] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(1601), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(1607), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1609), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(1613), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(1625), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(10593), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10595), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10599), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10605), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10766), 1, - sym__special_character, - ACTIONS(10772), 1, + ACTIONS(11085), 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(11093), 1, + sym__comment_word, + ACTIONS(10609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10774), 2, + ACTIONS(11089), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11091), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4632), 9, + STATE(1381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254924,46 +281912,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214288] = 18, + [240317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, + ACTIONS(3387), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(3389), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(3393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(3403), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(10945), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(10947), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(10951), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(10955), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(10957), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(10959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, + ACTIONS(11893), 1, sym_word, - ACTIONS(10232), 1, + ACTIONS(11901), 1, sym__comment_word, - ACTIONS(10778), 1, + ACTIONS(11903), 1, anon_sym_DOLLAR, - ACTIONS(9644), 2, + ACTIONS(10961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10228), 2, + ACTIONS(11897), 2, sym_test_operator, sym__special_character, - ACTIONS(10230), 3, + ACTIONS(11899), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(2033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254973,46 +281961,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214355] = 18, - ACTIONS(3), 1, + [240384] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(45), 1, + ACTIONS(5856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(5858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(5860), 1, + anon_sym_DOLLAR, + ACTIONS(5862), 1, + sym__special_character, + ACTIONS(5864), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(5868), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(5870), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(5872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(5874), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(5876), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(5878), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(5884), 1, sym__brace_start, - ACTIONS(10192), 1, + ACTIONS(11905), 1, sym_word, - ACTIONS(10200), 1, - sym__comment_word, - ACTIONS(10780), 1, - anon_sym_DOLLAR, - ACTIONS(69), 2, + ACTIONS(11909), 1, + sym_test_operator, + STATE(5886), 1, + aux_sym__literal_repeat1, + STATE(5984), 1, + sym_concatenation, + ACTIONS(5880), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10196), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10198), 3, - sym__bare_dollar, + ACTIONS(11907), 2, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(5640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255022,46 +282012,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214422] = 18, + [240455] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(1434), 1, + aux_sym_number_token1, + ACTIONS(1436), 1, + aux_sym_number_token2, + ACTIONS(1440), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1452), 1, + sym__brace_start, + ACTIONS(10671), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(10673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8196), 1, + ACTIONS(10677), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, - aux_sym_number_token1, - ACTIONS(8202), 1, - aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(10681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(10683), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(10685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, - sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(11911), 1, sym_word, - ACTIONS(10280), 1, - sym__comment_word, - ACTIONS(10782), 1, + ACTIONS(11913), 1, anon_sym_DOLLAR, - ACTIONS(8212), 2, + ACTIONS(11919), 1, + sym__comment_word, + ACTIONS(10687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(11915), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(11917), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(953), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255071,46 +282061,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214489] = 18, - ACTIONS(3), 1, + [240522] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(5856), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5858), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5860), 1, + anon_sym_DOLLAR, + ACTIONS(5862), 1, + sym__special_character, + ACTIONS(5864), 1, + anon_sym_DQUOTE, + ACTIONS(5868), 1, aux_sym_number_token1, - ACTIONS(1599), 1, + ACTIONS(5870), 1, aux_sym_number_token2, - ACTIONS(1603), 1, + ACTIONS(5872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5874), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1617), 1, + ACTIONS(5876), 1, + anon_sym_BQUOTE, + ACTIONS(5878), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5884), 1, sym__brace_start, - ACTIONS(8160), 1, + ACTIONS(11921), 1, + sym_word, + ACTIONS(11925), 1, + sym_test_operator, + STATE(5834), 1, + aux_sym__literal_repeat1, + STATE(5989), 1, + sym_concatenation, + ACTIONS(5880), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11923), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5696), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [240593] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8663), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 1, + ACTIONS(8665), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8166), 1, + ACTIONS(8667), 1, + anon_sym_DOLLAR, + ACTIONS(8671), 1, anon_sym_DQUOTE, - ACTIONS(8170), 1, + ACTIONS(8675), 1, + aux_sym_number_token1, + ACTIONS(8677), 1, + aux_sym_number_token2, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(8681), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8683), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10114), 1, + ACTIONS(8695), 1, + sym__brace_start, + ACTIONS(11235), 1, sym_word, - ACTIONS(10120), 1, + ACTIONS(11243), 1, sym__comment_word, - ACTIONS(10784), 1, - anon_sym_DOLLAR, - ACTIONS(8176), 2, + ACTIONS(8687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(11239), 2, sym_test_operator, sym__special_character, - ACTIONS(10118), 3, + ACTIONS(11241), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1171), 9, + STATE(3745), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255120,46 +282161,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214556] = 18, + [240660] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(4111), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4113), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(4117), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(4127), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(11927), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(11929), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(11931), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10792), 1, + ACTIONS(11933), 1, anon_sym_DOLLAR, - ACTIONS(10796), 1, + ACTIONS(11937), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(11943), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(11945), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(11949), 1, sym__comment_word, - ACTIONS(10794), 2, + ACTIONS(11935), 2, sym_test_operator, sym__special_character, - ACTIONS(10806), 2, + ACTIONS(11947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(11939), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(5030), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255169,48 +282210,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214623] = 20, + [240727] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(8603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(8605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(8607), 1, anon_sym_DOLLAR, - ACTIONS(7872), 1, + ACTIONS(8609), 1, sym__special_character, - ACTIONS(7874), 1, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(8615), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(8617), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(8619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(8623), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(8635), 1, sym__brace_start, - ACTIONS(10810), 1, + ACTIONS(11951), 1, sym_word, - ACTIONS(10814), 1, + ACTIONS(11955), 1, sym_test_operator, - STATE(1818), 1, + STATE(1583), 1, aux_sym__literal_repeat1, - STATE(2034), 1, + STATE(1736), 1, sym_concatenation, - ACTIONS(7890), 2, + ACTIONS(8627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10812), 2, + ACTIONS(11953), 2, sym_raw_string, sym_ansi_c_string, - STATE(1357), 9, + STATE(1197), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255220,46 +282261,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214694] = 18, + [240798] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, + ACTIONS(4111), 1, aux_sym_number_token1, - ACTIONS(3352), 1, + ACTIONS(4113), 1, aux_sym_number_token2, - ACTIONS(3356), 1, + ACTIONS(4117), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3366), 1, + ACTIONS(4127), 1, sym__brace_start, - ACTIONS(10436), 1, + ACTIONS(11927), 1, sym_word, - ACTIONS(10438), 1, + ACTIONS(11929), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(11931), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(11937), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(11943), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(11945), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(11949), 1, sym__comment_word, - ACTIONS(10816), 1, + ACTIONS(11957), 1, anon_sym_DOLLAR, - ACTIONS(10442), 2, + ACTIONS(11935), 2, sym_test_operator, sym__special_character, - ACTIONS(10454), 2, + ACTIONS(11947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(11939), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(5030), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255269,48 +282310,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214761] = 20, + [240865] = 20, ACTIONS(71), 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(8603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8607), 1, + anon_sym_DOLLAR, + ACTIONS(8609), 1, + sym__special_character, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8615), 1, + aux_sym_number_token1, + ACTIONS(8617), 1, + aux_sym_number_token2, + ACTIONS(8619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8621), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8623), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10818), 1, + ACTIONS(8635), 1, + sym__brace_start, + ACTIONS(11959), 1, sym_word, - ACTIONS(10820), 1, - sym__special_character, - ACTIONS(10824), 1, + ACTIONS(11963), 1, sym_test_operator, - STATE(4353), 1, + STATE(1588), 1, aux_sym__literal_repeat1, - STATE(4901), 1, + STATE(1744), 1, sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(8627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10822), 2, + ACTIONS(11961), 2, sym_raw_string, sym_ansi_c_string, - STATE(4652), 9, + STATE(1200), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255320,48 +282361,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214832] = 20, - ACTIONS(71), 1, + [240936] = 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(10639), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10641), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10643), 1, + anon_sym_DOLLAR, + ACTIONS(10647), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10651), 1, + aux_sym_number_token1, + ACTIONS(10653), 1, + aux_sym_number_token2, + ACTIONS(10655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10659), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10820), 1, - sym__special_character, - ACTIONS(10826), 1, + ACTIONS(10667), 1, + sym__brace_start, + ACTIONS(11357), 1, sym_word, - ACTIONS(10830), 1, - sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(11365), 1, + sym__comment_word, + ACTIONS(10663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10828), 2, + ACTIONS(11361), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11363), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4656), 9, + STATE(2679), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255371,48 +282410,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214903] = 20, + [241003] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3667), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3673), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3675), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3689), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(11405), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(11407), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(11413), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(11417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(11419), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(11421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10832), 1, + ACTIONS(11965), 1, sym_word, - ACTIONS(10834), 1, + ACTIONS(11967), 1, sym__special_character, - ACTIONS(10838), 1, + ACTIONS(11971), 1, sym_test_operator, - STATE(4260), 1, + STATE(4896), 1, aux_sym__literal_repeat1, - STATE(4557), 1, + STATE(5416), 1, sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(11423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10836), 2, + ACTIONS(11969), 2, sym_raw_string, sym_ansi_c_string, - STATE(4499), 9, + STATE(4719), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255422,48 +282461,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214974] = 20, + [241074] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(3667), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(3673), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(3675), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3689), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(11405), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(11407), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(11413), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(11417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(11419), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(11421), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10834), 1, + ACTIONS(11967), 1, sym__special_character, - ACTIONS(10840), 1, + ACTIONS(11973), 1, sym_word, - ACTIONS(10844), 1, + ACTIONS(11977), 1, sym_test_operator, - STATE(4213), 1, + STATE(4879), 1, aux_sym__literal_repeat1, - STATE(4518), 1, + STATE(5348), 1, sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(11423), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10842), 2, + ACTIONS(11975), 2, sym_raw_string, sym_ansi_c_string, - STATE(4501), 9, + STATE(4742), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255473,46 +282512,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215045] = 18, + [241145] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(8935), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(8937), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7870), 1, + ACTIONS(8939), 1, anon_sym_DOLLAR, - ACTIONS(7874), 1, + ACTIONS(8943), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(8947), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(8949), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(8953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(8967), 1, sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(11979), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(11985), 1, sym__comment_word, - ACTIONS(7890), 2, + ACTIONS(8959), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(11981), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(11983), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(1657), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255522,46 +282561,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215112] = 18, + [241212] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - 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(1069), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(11987), 1, sym_word, - ACTIONS(10856), 1, + ACTIONS(11989), 1, anon_sym_DOLLAR, - ACTIONS(10862), 1, + ACTIONS(11995), 1, sym__comment_word, - ACTIONS(1063), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(11991), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(11993), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255571,46 +282610,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215179] = 18, + [241279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3312), 1, - anon_sym_DOLLAR, - 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(10302), 1, + ACTIONS(111), 1, + anon_sym_DOLLAR, + 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(11481), 1, + sym_word, + ACTIONS(11489), 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(11485), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11487), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(501), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255620,46 +282659,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215246] = 18, + [241346] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(2832), 1, + aux_sym_number_token1, + ACTIONS(2834), 1, + aux_sym_number_token2, + ACTIONS(2838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2848), 1, + sym__brace_start, + ACTIONS(10965), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(10967), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9904), 1, + ACTIONS(10971), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(10975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(10977), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(10979), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(11997), 1, sym_word, - ACTIONS(10866), 1, + ACTIONS(11999), 1, anon_sym_DOLLAR, - ACTIONS(10872), 1, + ACTIONS(12005), 1, sym__comment_word, - ACTIONS(9920), 2, + ACTIONS(10981), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(12001), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(12003), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(1823), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255669,48 +282708,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215313] = 20, + [241413] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(1452), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(10671), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10675), 1, + sym__special_character, + ACTIONS(10677), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10683), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10874), 1, + ACTIONS(12007), 1, sym_word, - ACTIONS(10876), 1, - sym__special_character, - ACTIONS(10880), 1, + ACTIONS(12011), 1, sym_test_operator, - STATE(4353), 1, + STATE(1231), 1, aux_sym__literal_repeat1, - STATE(4901), 1, + STATE(1393), 1, sym_concatenation, - ACTIONS(10508), 2, + ACTIONS(10687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10878), 2, + ACTIONS(12009), 2, sym_raw_string, sym_ansi_c_string, - STATE(5239), 9, + STATE(899), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255720,48 +282759,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215384] = 20, - ACTIONS(71), 1, + [241484] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2832), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2834), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2848), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(10965), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10967), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10971), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10977), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10979), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10876), 1, - sym__special_character, - ACTIONS(10882), 1, + ACTIONS(11997), 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(12005), 1, + sym__comment_word, + ACTIONS(12013), 1, + anon_sym_DOLLAR, + ACTIONS(10981), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10884), 2, + ACTIONS(12001), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12003), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5243), 9, + STATE(1823), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255771,48 +282808,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215455] = 20, + [241551] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3508), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(1452), 1, sym__brace_start, - ACTIONS(10516), 1, + ACTIONS(10671), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10675), 1, + sym__special_character, + ACTIONS(10677), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10683), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10888), 1, + ACTIONS(12015), 1, sym_word, - ACTIONS(10890), 1, - sym__special_character, - ACTIONS(10894), 1, + ACTIONS(12019), 1, sym_test_operator, - STATE(4260), 1, + STATE(1239), 1, aux_sym__literal_repeat1, - STATE(4557), 1, + STATE(1397), 1, sym_concatenation, - ACTIONS(10534), 2, + ACTIONS(10687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10892), 2, + ACTIONS(12017), 2, sym_raw_string, sym_ansi_c_string, - STATE(5112), 9, + STATE(925), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255822,48 +282859,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215526] = 20, - ACTIONS(71), 1, + [241622] = 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(4499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(4501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(4503), 1, + anon_sym_DOLLAR, + ACTIONS(4507), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(4511), 1, + aux_sym_number_token1, + ACTIONS(4513), 1, + aux_sym_number_token2, + ACTIONS(4515), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(4517), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4519), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(4521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10890), 1, - sym__special_character, - ACTIONS(10896), 1, + ACTIONS(4531), 1, + sym__brace_start, + ACTIONS(11575), 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(11583), 1, + sym__comment_word, + ACTIONS(4523), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10898), 2, + ACTIONS(11579), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11581), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5067), 9, + STATE(2886), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255873,48 +282908,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215597] = 20, + [241689] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3178), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3184), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3186), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3190), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3200), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(11499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(11501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(11507), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(11511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(11513), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(11515), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10070), 1, - sym__special_character, - ACTIONS(10902), 1, + ACTIONS(12021), 1, sym_word, - ACTIONS(10906), 1, + ACTIONS(12023), 1, + sym__special_character, + ACTIONS(12027), 1, sym_test_operator, - STATE(1463), 1, + STATE(4689), 1, aux_sym__literal_repeat1, - STATE(1628), 1, + STATE(5034), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(11517), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10904), 2, + ACTIONS(12025), 2, sym_raw_string, sym_ansi_c_string, - STATE(1106), 9, + STATE(4552), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255924,46 +282959,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215668] = 18, + [241760] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1039), 1, + ACTIONS(9093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, + ACTIONS(9095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1047), 1, + ACTIONS(9101), 1, anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(9105), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(9107), 1, aux_sym_number_token2, - ACTIONS(1055), 1, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, + ACTIONS(9113), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(9125), 1, sym__brace_start, - ACTIONS(10854), 1, + ACTIONS(11787), 1, sym_word, - ACTIONS(10862), 1, + ACTIONS(11793), 1, sym__comment_word, - ACTIONS(10908), 1, + ACTIONS(12029), 1, anon_sym_DOLLAR, - ACTIONS(1063), 2, + ACTIONS(9117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10858), 2, + ACTIONS(11789), 2, sym_test_operator, sym__special_character, - ACTIONS(10860), 3, + ACTIONS(11791), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2144), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255973,48 +283008,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215735] = 20, + [241827] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3178), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3184), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3186), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3190), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3200), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(11499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(11501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(11507), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(11511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(11513), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(11515), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10070), 1, + ACTIONS(12023), 1, sym__special_character, - ACTIONS(10910), 1, + ACTIONS(12031), 1, sym_word, - ACTIONS(10914), 1, + ACTIONS(12035), 1, sym_test_operator, - STATE(1387), 1, + STATE(4697), 1, aux_sym__literal_repeat1, - STATE(1635), 1, + STATE(5049), 1, sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(11517), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10912), 2, + ACTIONS(12033), 2, sym_raw_string, sym_ansi_c_string, - STATE(1108), 9, + STATE(4586), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256024,46 +283059,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215806] = 18, + [241898] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8188), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8190), 1, + ACTIONS(5468), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8196), 1, + ACTIONS(5470), 1, + anon_sym_DOLLAR, + ACTIONS(5474), 1, anon_sym_DQUOTE, - ACTIONS(8200), 1, + ACTIONS(5478), 1, aux_sym_number_token1, - ACTIONS(8202), 1, + ACTIONS(5480), 1, aux_sym_number_token2, - ACTIONS(8204), 1, + ACTIONS(5482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8206), 1, + ACTIONS(5484), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8208), 1, + ACTIONS(5486), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(5488), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8220), 1, + ACTIONS(5496), 1, sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(11735), 1, sym_word, - ACTIONS(10280), 1, + ACTIONS(11743), 1, sym__comment_word, - ACTIONS(10916), 1, - anon_sym_DOLLAR, - ACTIONS(8212), 2, + ACTIONS(5490), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, + ACTIONS(11739), 2, sym_test_operator, sym__special_character, - ACTIONS(10278), 3, + ACTIONS(11741), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4200), 9, + STATE(3115), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256073,46 +283108,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215873] = 18, + [241965] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(9093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(9095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9904), 1, + ACTIONS(9101), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(9105), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(9107), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(9113), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(9125), 1, sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(11787), 1, sym_word, - ACTIONS(10872), 1, + ACTIONS(11793), 1, sym__comment_word, - ACTIONS(10918), 1, + ACTIONS(12037), 1, anon_sym_DOLLAR, - ACTIONS(9920), 2, + ACTIONS(9117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(11789), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(11791), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(1688), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256122,46 +283157,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215940] = 18, - ACTIONS(3), 1, + [242032] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(9055), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(9057), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(312), 1, + ACTIONS(9059), 1, anon_sym_DOLLAR, - ACTIONS(316), 1, + ACTIONS(9061), 1, + sym__special_character, + ACTIONS(9063), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(9067), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(9069), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(9071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(9073), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(9075), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(9087), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(12039), 1, sym_word, - ACTIONS(10926), 1, - sym__comment_word, - ACTIONS(332), 2, + ACTIONS(12043), 1, + sym_test_operator, + STATE(1937), 1, + aux_sym__literal_repeat1, + STATE(2158), 1, + sym_concatenation, + ACTIONS(9079), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10924), 3, - sym__bare_dollar, + ACTIONS(12041), 2, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1408), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256171,46 +283208,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216007] = 18, + [242103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 1, + ACTIONS(3557), 1, aux_sym_number_token1, - ACTIONS(2345), 1, + ACTIONS(3559), 1, aux_sym_number_token2, - ACTIONS(2349), 1, + ACTIONS(3563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2359), 1, + ACTIONS(3573), 1, sym__brace_start, - ACTIONS(9628), 1, + ACTIONS(12045), 1, + sym_word, + ACTIONS(12047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9630), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9634), 1, + ACTIONS(12051), 1, + anon_sym_DOLLAR, + ACTIONS(12055), 1, anon_sym_DQUOTE, - ACTIONS(9638), 1, + ACTIONS(12059), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(12061), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(12063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10226), 1, - sym_word, - ACTIONS(10232), 1, + ACTIONS(12067), 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(12053), 2, sym_test_operator, sym__special_character, - ACTIONS(10230), 3, + ACTIONS(12065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12057), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1329), 9, + STATE(4880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256220,127 +283257,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, + [242170] = 20, + 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(9648), 1, + ACTIONS(9055), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(9057), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(9059), 1, + anon_sym_DOLLAR, + ACTIONS(9061), 1, + sym__special_character, + ACTIONS(9063), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(9067), 1, + aux_sym_number_token1, + ACTIONS(9069), 1, + aux_sym_number_token2, + ACTIONS(9071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(9073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9075), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, + ACTIONS(9087), 1, + sym__brace_start, + ACTIONS(12069), 1, sym_word, - ACTIONS(10942), 1, - sym__comment_word, - ACTIONS(9664), 2, + ACTIONS(12073), 1, + sym_test_operator, + STATE(1798), 1, + aux_sym__literal_repeat1, + STATE(2161), 1, + sym_concatenation, + ACTIONS(9079), 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(12071), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(1414), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256350,48 +283308,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216241] = 20, - ACTIONS(71), 1, + [242241] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, - anon_sym_DOLLAR, - ACTIONS(5224), 1, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(2818), 1, sym__brace_start, - ACTIONS(10944), 1, + ACTIONS(12075), 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(12077), 1, + anon_sym_DOLLAR, + ACTIONS(12083), 1, + sym__comment_word, + ACTIONS(2812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10948), 2, + ACTIONS(12079), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12081), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5118), 9, + STATE(2616), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256401,48 +283357,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216312] = 20, - ACTIONS(71), 1, + [242308] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(2788), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(5224), 1, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(2800), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(2802), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(2806), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(2818), 1, sym__brace_start, - ACTIONS(10946), 1, - sym__special_character, - ACTIONS(10952), 1, + ACTIONS(12075), 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(12083), 1, + sym__comment_word, + ACTIONS(2812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10954), 2, + ACTIONS(12079), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12081), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5122), 9, + STATE(2616), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256452,46 +283406,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216383] = 18, + [242375] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(3557), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(3559), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(3563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(3573), 1, sym__brace_start, - ACTIONS(10234), 1, + ACTIONS(12045), 1, sym_word, - ACTIONS(10236), 1, + ACTIONS(12047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(12055), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(12059), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(12061), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(12063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, + ACTIONS(12067), 1, sym__comment_word, - ACTIONS(10958), 1, + ACTIONS(12085), 1, anon_sym_DOLLAR, - ACTIONS(10240), 2, + ACTIONS(12053), 2, sym_test_operator, sym__special_character, - ACTIONS(10252), 2, + ACTIONS(12065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, + ACTIONS(12057), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(4880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256501,46 +283455,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216450] = 18, - ACTIONS(3), 1, + [242442] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2934), 1, + ACTIONS(4105), 1, + anon_sym_DOLLAR, + ACTIONS(4111), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(4113), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(4117), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(4127), 1, sym__brace_start, - ACTIONS(10234), 1, - sym_word, - ACTIONS(10236), 1, + ACTIONS(11929), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(11931), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(11937), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(11943), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(11945), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(10960), 1, - anon_sym_DOLLAR, - ACTIONS(10240), 2, - sym_test_operator, + ACTIONS(12087), 1, + sym_word, + ACTIONS(12089), 1, sym__special_character, - ACTIONS(10252), 2, + ACTIONS(12093), 1, + sym_test_operator, + STATE(4990), 1, + aux_sym__literal_repeat1, + STATE(5462), 1, + sym_concatenation, + ACTIONS(11947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10244), 3, - sym__bare_dollar, + ACTIONS(12091), 2, sym_raw_string, sym_ansi_c_string, - STATE(4301), 9, + STATE(4930), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256550,46 +283506,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216517] = 18, - ACTIONS(3), 1, + [242513] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(10316), 1, - sym_word, - ACTIONS(10318), 1, + ACTIONS(4105), 1, + anon_sym_DOLLAR, + ACTIONS(4111), 1, + aux_sym_number_token1, + ACTIONS(4113), 1, + aux_sym_number_token2, + ACTIONS(4117), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4127), 1, + sym__brace_start, + ACTIONS(11929), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(11931), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(11937), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(11943), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(11945), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10324), 2, - sym_test_operator, + ACTIONS(12089), 1, sym__special_character, - ACTIONS(10342), 2, + ACTIONS(12095), 1, + sym_word, + ACTIONS(12099), 1, + sym_test_operator, + STATE(4995), 1, + aux_sym__literal_repeat1, + STATE(5480), 1, + sym_concatenation, + ACTIONS(11947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, - sym__bare_dollar, + ACTIONS(12097), 2, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(4780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256599,46 +283557,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216584] = 18, + [242584] = 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(2788), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(2790), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(2796), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(2800), 1, + aux_sym_number_token1, + ACTIONS(2802), 1, + aux_sym_number_token2, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(2806), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10456), 1, + ACTIONS(2818), 1, + sym__brace_start, + ACTIONS(12075), 1, + sym_word, + ACTIONS(12083), 1, sym__comment_word, - ACTIONS(10964), 1, + ACTIONS(12101), 1, anon_sym_DOLLAR, - ACTIONS(10442), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10454), 2, + ACTIONS(2812), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 3, + ACTIONS(12079), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12081), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4339), 9, + STATE(2616), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256648,48 +283606,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216651] = 20, - ACTIONS(71), 1, + [242651] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(1095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(1097), 1, + anon_sym_DOLLAR, + ACTIONS(1101), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(1105), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(1107), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(1113), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, + ACTIONS(1123), 1, sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10966), 1, + ACTIONS(12103), 1, sym_word, - ACTIONS(10968), 1, - sym__special_character, - ACTIONS(10972), 1, - sym_test_operator, - STATE(6136), 1, - aux_sym__literal_repeat1, - STATE(6301), 1, - sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(12109), 1, + sym__comment_word, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10970), 2, + ACTIONS(12105), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12107), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6108), 9, + STATE(2538), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256699,46 +283655,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216722] = 18, + [242718] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(9143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(9145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(9151), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(9155), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(9157), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(9159), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(9161), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(9163), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(9165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(9175), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(12111), 1, sym_word, - ACTIONS(10926), 1, - sym__comment_word, - ACTIONS(10974), 1, + ACTIONS(12113), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(12119), 1, + sym__comment_word, + ACTIONS(9167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(12115), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(12117), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(4903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256748,46 +283704,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216789] = 18, - ACTIONS(3), 1, + [242785] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(1468), 1, + anon_sym_DOLLAR, + ACTIONS(1474), 1, + aux_sym_number_token1, + ACTIONS(1476), 1, + aux_sym_number_token2, + ACTIONS(1480), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1492), 1, + sym__brace_start, + ACTIONS(10717), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(10719), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(10721), 1, + sym__special_character, + ACTIONS(10723), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(10727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(10729), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(10731), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(12121), 1, sym_word, - ACTIONS(10926), 1, - sym__comment_word, - ACTIONS(10976), 1, - anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(12125), 1, + sym_test_operator, + STATE(1284), 1, + aux_sym__literal_repeat1, + STATE(1641), 1, + sym_concatenation, + ACTIONS(10733), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10924), 3, - sym__bare_dollar, + ACTIONS(12123), 2, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1075), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256797,46 +283755,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216856] = 18, + [242856] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(9143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(9145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(9151), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(9155), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(9157), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(9159), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(9161), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(9163), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(9165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(9175), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(12111), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(12119), 1, sym__comment_word, - ACTIONS(10978), 1, + ACTIONS(12127), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(9167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(12115), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(12117), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(4903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256846,46 +283804,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216923] = 18, - ACTIONS(3), 1, + [242923] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(1468), 1, + anon_sym_DOLLAR, + ACTIONS(1474), 1, + aux_sym_number_token1, + ACTIONS(1476), 1, + aux_sym_number_token2, + ACTIONS(1480), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1492), 1, + sym__brace_start, + ACTIONS(10717), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(10719), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(373), 1, - anon_sym_DOLLAR, - ACTIONS(377), 1, + ACTIONS(10721), 1, + sym__special_character, + ACTIONS(10723), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(10727), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10729), 1, + anon_sym_BQUOTE, + ACTIONS(10731), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12129), 1, + sym_word, + ACTIONS(12133), 1, + sym_test_operator, + STATE(1289), 1, + aux_sym__literal_repeat1, + STATE(1473), 1, + sym_concatenation, + ACTIONS(10733), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12131), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(948), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [242994] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_DOLLAR, + ACTIONS(4071), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(4073), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(4077), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(4087), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(10697), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10699), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10703), 1, + anon_sym_DQUOTE, + ACTIONS(10707), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10709), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(10711), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12135), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(12141), 1, sym__comment_word, - ACTIONS(393), 2, + ACTIONS(10713), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(12137), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(12139), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(2548), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256895,46 +283904,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216990] = 18, + [243061] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(2388), 1, + aux_sym_number_token1, + ACTIONS(2390), 1, + aux_sym_number_token2, + ACTIONS(2394), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2408), 1, + sym__brace_start, + ACTIONS(8905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(8907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(8911), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(8915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(8917), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(8919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(11811), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(11817), 1, sym__comment_word, - ACTIONS(10980), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(8921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(11813), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(11815), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1717), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256944,48 +283953,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217057] = 20, + [243128] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(3551), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, - anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(3557), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(3559), 1, aux_sym_number_token2, - ACTIONS(2669), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(3563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(3573), 1, + sym__brace_start, + ACTIONS(12047), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12049), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12055), 1, + anon_sym_DQUOTE, + ACTIONS(12059), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12061), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(12063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10982), 1, + ACTIONS(12145), 1, sym_word, - ACTIONS(10986), 1, + ACTIONS(12147), 1, + sym__special_character, + ACTIONS(12151), 1, sym_test_operator, - STATE(2323), 1, + STATE(4849), 1, aux_sym__literal_repeat1, - STATE(2497), 1, + STATE(5322), 1, sym_concatenation, - ACTIONS(2677), 2, + ACTIONS(12065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10984), 2, + ACTIONS(12149), 2, sym_raw_string, sym_ansi_c_string, - STATE(2114), 9, + STATE(4750), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256995,46 +284004,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217128] = 18, + [243199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(2388), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(2390), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(2394), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(2408), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(8905), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(8907), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(8911), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(8915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8917), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(8919), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11811), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(11817), 1, sym__comment_word, - ACTIONS(10988), 1, + ACTIONS(12153), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(8921), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(11813), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(11815), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(1717), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257044,48 +284053,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217195] = 20, + [243266] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(3551), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, - sym__special_character, - ACTIONS(2661), 1, - anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(3557), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(3559), 1, aux_sym_number_token2, - ACTIONS(2669), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(3563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(3573), 1, + sym__brace_start, + ACTIONS(12047), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12049), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12055), 1, + anon_sym_DQUOTE, + ACTIONS(12059), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12061), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(12063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10990), 1, + ACTIONS(12147), 1, + sym__special_character, + ACTIONS(12155), 1, sym_word, - ACTIONS(10994), 1, + ACTIONS(12159), 1, sym_test_operator, - STATE(2329), 1, + STATE(4859), 1, aux_sym__literal_repeat1, - STATE(2509), 1, + STATE(5289), 1, sym_concatenation, - ACTIONS(2677), 2, + ACTIONS(12065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10992), 2, + ACTIONS(12157), 2, sym_raw_string, sym_ansi_c_string, - STATE(2117), 9, + STATE(4760), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257095,46 +284104,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217266] = 18, + [243337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(2568), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(2570), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(2586), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(12161), 1, + sym_word, + ACTIONS(12163), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(12165), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(12167), 1, + anon_sym_DOLLAR, + ACTIONS(12171), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(12175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(12177), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, + ACTIONS(12179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12183), 1, sym__comment_word, - ACTIONS(10996), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(12169), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(12181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12173), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(1615), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257144,46 +284153,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217333] = 18, - ACTIONS(3), 1, + [243404] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3600), 1, - aux_sym_number_token1, - ACTIONS(3602), 1, - aux_sym_number_token2, - ACTIONS(3606), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, - sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(8817), 1, + aux_sym_number_token1, + ACTIONS(8819), 1, + aux_sym_number_token2, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(8823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, + ACTIONS(8837), 1, + sym__brace_start, + ACTIONS(8857), 1, + sym__special_character, + ACTIONS(12185), 1, sym_word, - ACTIONS(11000), 1, - anon_sym_DOLLAR, - ACTIONS(11006), 1, - sym__comment_word, - ACTIONS(9722), 2, + ACTIONS(12189), 1, + sym_test_operator, + STATE(1947), 1, + aux_sym__literal_repeat1, + STATE(2259), 1, + sym_concatenation, + ACTIONS(8829), 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(12187), 2, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(1604), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257193,46 +284204,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217400] = 18, - ACTIONS(3), 1, + [243475] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(8857), 1, + sym__special_character, + ACTIONS(12191), 1, sym_word, - ACTIONS(11010), 1, - anon_sym_DOLLAR, - ACTIONS(11016), 1, - sym__comment_word, - ACTIONS(8324), 2, + ACTIONS(12195), 1, + sym_test_operator, + STATE(2017), 1, + aux_sym__literal_repeat1, + STATE(2214), 1, + sym_concatenation, + ACTIONS(8829), 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(12193), 2, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1621), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257242,46 +284255,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217467] = 18, + [243546] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(3311), 1, + anon_sym_DOLLAR, + ACTIONS(3317), 1, + aux_sym_number_token1, + ACTIONS(3319), 1, + aux_sym_number_token2, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3333), 1, + sym__brace_start, + ACTIONS(10743), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(10745), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(10749), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(10753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(10755), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(12197), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(12203), 1, sym__comment_word, - ACTIONS(11018), 1, - anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(10759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(12199), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(12201), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257291,46 +284304,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217534] = 18, + [243613] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3355), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(3357), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(3361), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(3373), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(11859), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(11861), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(11863), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(11867), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(11871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(11873), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(11875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(11879), 1, sym__comment_word, - ACTIONS(11020), 1, + ACTIONS(12205), 1, anon_sym_DOLLAR, - ACTIONS(10794), 2, + ACTIONS(11865), 2, sym_test_operator, sym__special_character, - ACTIONS(10806), 2, + ACTIONS(11877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(11869), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(2133), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257340,46 +284353,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217601] = 18, + [243680] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, - aux_sym_number_token1, - ACTIONS(3602), 1, - aux_sym_number_token2, - ACTIONS(3606), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, - sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(817), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(819), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(825), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(835), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(837), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(839), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, + ACTIONS(849), 1, + sym__brace_start, + ACTIONS(11373), 1, sym_word, - ACTIONS(11006), 1, + ACTIONS(11379), 1, sym__comment_word, - ACTIONS(11022), 1, + ACTIONS(12207), 1, anon_sym_DOLLAR, - ACTIONS(9722), 2, + ACTIONS(841), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11002), 2, + ACTIONS(11375), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11377), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1088), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [243747] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11101), 1, + sym_word, + ACTIONS(11103), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11105), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11111), 1, + anon_sym_DQUOTE, + ACTIONS(11115), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + ACTIONS(11119), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11123), 1, + sym__comment_word, + ACTIONS(11109), 2, sym_test_operator, sym__special_character, - ACTIONS(11004), 3, + ACTIONS(11121), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11113), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257389,46 +284451,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217668] = 18, + [243814] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(9494), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(12209), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(12215), 1, sym__comment_word, - ACTIONS(8324), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(12211), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(12213), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(5642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257438,46 +284500,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217735] = 18, + [243881] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(3993), 1, + anon_sym_DOLLAR, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(10851), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(11127), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(11135), 1, sym__comment_word, - ACTIONS(11024), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(11131), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(11133), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(5361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257487,48 +284549,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217802] = 20, - ACTIONS(71), 1, + [243948] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(817), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(819), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(825), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(829), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(831), 1, aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(835), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(837), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(839), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, + ACTIONS(849), 1, sym__brace_start, - ACTIONS(11026), 1, + ACTIONS(11373), 1, sym_word, - ACTIONS(11028), 1, - sym__special_character, - ACTIONS(11032), 1, - sym_test_operator, - STATE(5134), 1, - aux_sym__literal_repeat1, - STATE(5407), 1, - sym_concatenation, - ACTIONS(4859), 2, + ACTIONS(11379), 1, + sym__comment_word, + ACTIONS(12217), 1, + anon_sym_DOLLAR, + ACTIONS(841), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11030), 2, + ACTIONS(11375), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11377), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5045), 9, + STATE(1088), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257538,46 +284598,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217873] = 18, + [244015] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(4325), 1, + anon_sym_DOLLAR, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(4347), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(11159), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(11167), 1, sym__comment_word, - ACTIONS(11034), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(11163), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(11165), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(2258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257587,46 +284647,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217940] = 18, + [244082] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3757), 1, + aux_sym_number_token1, + ACTIONS(3759), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7874), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, - aux_sym_number_token1, - ACTIONS(7880), 1, - aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, - sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(11185), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(11193), 1, sym__comment_word, - ACTIONS(11036), 1, - anon_sym_DOLLAR, - ACTIONS(7890), 2, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(11189), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(11191), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(1971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257636,48 +284696,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218007] = 20, - ACTIONS(71), 1, + [244149] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(1095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(1101), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(1105), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(1107), 1, aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(1113), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, + ACTIONS(1123), 1, sym__brace_start, - ACTIONS(11028), 1, - sym__special_character, - ACTIONS(11038), 1, + ACTIONS(12103), 1, sym_word, - ACTIONS(11042), 1, - sym_test_operator, - STATE(5137), 1, - aux_sym__literal_repeat1, - STATE(5415), 1, - sym_concatenation, - ACTIONS(4859), 2, + ACTIONS(12109), 1, + sym__comment_word, + ACTIONS(12219), 1, + anon_sym_DOLLAR, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11040), 2, + ACTIONS(12105), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12107), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5048), 9, + STATE(2538), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257687,46 +284745,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218078] = 18, + [244216] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(7164), 1, + anon_sym_DOLLAR, + ACTIONS(7170), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(7172), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(7188), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(12221), 1, + sym_word, + ACTIONS(12227), 1, sym__comment_word, - ACTIONS(11044), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(12223), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12225), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(7006), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257736,46 +284794,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218145] = 18, + [244283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(4387), 1, + anon_sym_DOLLAR, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(4409), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(10805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(10807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(10811), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(10815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(10817), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(10819), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(12229), 1, + sym_word, + ACTIONS(12235), 1, sym__comment_word, - ACTIONS(11046), 1, - anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + ACTIONS(10821), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(12231), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12233), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(2306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257785,46 +284843,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218212] = 18, + [244350] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(1093), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(1095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(1101), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(1105), 1, + aux_sym_number_token1, + ACTIONS(1107), 1, + aux_sym_number_token2, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1113), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(1123), 1, + sym__brace_start, + ACTIONS(12103), 1, sym_word, - ACTIONS(11050), 1, - anon_sym_DOLLAR, - ACTIONS(11056), 1, + ACTIONS(12109), 1, sym__comment_word, - ACTIONS(9990), 2, + ACTIONS(12237), 1, + anon_sym_DOLLAR, + ACTIONS(1117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(12105), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(12107), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(2538), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257834,46 +284892,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218279] = 18, + [244417] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3781), 1, + anon_sym_DOLLAR, + ACTIONS(3787), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3789), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3803), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10823), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10829), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10835), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(12239), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(12245), 1, sym__comment_word, - ACTIONS(11058), 1, - anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(10839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(12241), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(12243), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(1985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257883,46 +284941,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218346] = 18, + [244484] = 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(8989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(8991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(8993), 1, + anon_sym_DOLLAR, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(9001), 1, + aux_sym_number_token1, + ACTIONS(9003), 1, + aux_sym_number_token2, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(9007), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(9021), 1, + sym__brace_start, + ACTIONS(12247), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(12253), 1, sym__comment_word, - ACTIONS(8028), 2, + ACTIONS(9013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(12249), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(12251), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(2782), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257932,46 +284990,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218413] = 18, + [244551] = 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(5246), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(5248), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(5250), 1, + anon_sym_DOLLAR, + ACTIONS(5254), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(5258), 1, + aux_sym_number_token1, + ACTIONS(5260), 1, + aux_sym_number_token2, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(5264), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5266), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(5268), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5274), 1, + sym__brace_start, + ACTIONS(12255), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(12261), 1, sym__comment_word, - ACTIONS(11060), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(5270), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(12257), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(12259), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(3080), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257981,48 +285039,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218480] = 20, - ACTIONS(71), 1, + [244618] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(5686), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(5688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(5690), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, + ACTIONS(5694), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(5698), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(5700), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(5702), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(5704), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(5706), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(5714), 1, sym__brace_start, - ACTIONS(11062), 1, + ACTIONS(12263), 1, sym_word, - ACTIONS(11066), 1, - sym_test_operator, - STATE(2632), 1, - aux_sym__literal_repeat1, - STATE(2871), 1, - sym_concatenation, - ACTIONS(7852), 2, + ACTIONS(12269), 1, + sym__comment_word, + ACTIONS(5710), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11064), 2, + ACTIONS(12265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12267), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2391), 9, + STATE(5769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258032,46 +285088,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218551] = 18, + [244685] = 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(4911), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(4913), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(4915), 1, + anon_sym_DOLLAR, + ACTIONS(4919), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(4923), 1, + aux_sym_number_token1, + ACTIONS(4925), 1, + aux_sym_number_token2, + ACTIONS(4927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(4929), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4931), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(4933), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4939), 1, + sym__brace_start, + ACTIONS(12271), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(12277), 1, sym__comment_word, - ACTIONS(11068), 1, - anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(4935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(12273), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(12275), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(2792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258081,48 +285137,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218618] = 20, - ACTIONS(71), 1, + [244752] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, + ACTIONS(5296), 1, anon_sym_DOLLAR, - ACTIONS(7834), 1, - sym__special_character, - ACTIONS(7836), 1, + ACTIONS(5300), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(5304), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(5306), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(5310), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(5312), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(5320), 1, sym__brace_start, - ACTIONS(11070), 1, + ACTIONS(12279), 1, sym_word, - ACTIONS(11074), 1, - sym_test_operator, - STATE(2633), 1, - aux_sym__literal_repeat1, - STATE(2874), 1, - sym_concatenation, - ACTIONS(7852), 2, + ACTIONS(12285), 1, + sym__comment_word, + ACTIONS(5316), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11072), 2, + ACTIONS(12281), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12283), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2423), 9, + STATE(5718), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258132,46 +285186,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218689] = 18, + [244819] = 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(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8771), 1, + anon_sym_DOLLAR, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(11147), 1, + sym_word, + ACTIONS(11155), 1, sym__comment_word, - ACTIONS(11076), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(11151), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258181,46 +285235,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218756] = 18, + [244886] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(8867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(8869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5099), 1, + ACTIONS(8871), 1, + anon_sym_DOLLAR, + ACTIONS(8875), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(8879), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(8881), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(8885), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(8887), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(8889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(8899), 1, sym__brace_start, - ACTIONS(10086), 1, + ACTIONS(12287), 1, sym_word, - ACTIONS(10092), 1, + ACTIONS(12293), 1, sym__comment_word, - ACTIONS(11078), 1, - anon_sym_DOLLAR, - ACTIONS(5115), 2, + ACTIONS(8891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, + ACTIONS(12289), 2, sym_test_operator, sym__special_character, - ACTIONS(10090), 3, + ACTIONS(12291), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(5902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258230,46 +285284,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218823] = 18, + [244953] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(6266), 1, + anon_sym_DOLLAR, + ACTIONS(6272), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(6274), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(6278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(6288), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(10869), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(10871), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(10875), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(10879), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(10881), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(10883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(12295), 1, + sym_word, + ACTIONS(12301), 1, sym__comment_word, - ACTIONS(11080), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(10885), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(12297), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12299), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(3692), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258279,46 +285333,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218890] = 18, + [245020] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(4071), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(4073), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(4077), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(4087), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(10697), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10699), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10703), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10709), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10711), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(12135), 1, + sym_word, + ACTIONS(12141), 1, sym__comment_word, - ACTIONS(11082), 1, + ACTIONS(12303), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10713), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(12137), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12139), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(2548), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258328,46 +285382,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218957] = 18, + [245087] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(6434), 1, + anon_sym_DOLLAR, + ACTIONS(6440), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(6442), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(6446), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(6456), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(11831), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(11833), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(11837), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(11841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(11843), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(11845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(12305), 1, + sym_word, + ACTIONS(12311), 1, sym__comment_word, - ACTIONS(11084), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(11847), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(12307), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12309), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(6051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258377,46 +285431,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219024] = 18, + [245154] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - anon_sym_DOLLAR, - ACTIONS(3091), 1, + ACTIONS(4071), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4073), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(4077), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(4087), 1, sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(10697), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(10699), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(10703), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(10707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(10709), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(10711), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(12135), 1, + sym_word, + ACTIONS(12141), 1, sym__comment_word, - ACTIONS(10794), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10806), 2, + ACTIONS(12313), 1, + anon_sym_DOLLAR, + ACTIONS(10713), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(12137), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12139), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(2548), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258426,46 +285480,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219091] = 18, + [245221] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(1452), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(10671), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10677), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10683), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(11911), 1, + sym_word, + ACTIONS(11919), 1, sym__comment_word, - ACTIONS(11086), 1, + ACTIONS(12315), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(11915), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11917), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(953), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258475,46 +285529,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219158] = 18, + [245288] = 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(5776), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(5778), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(5780), 1, + anon_sym_DOLLAR, + ACTIONS(5784), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(5788), 1, + aux_sym_number_token1, + ACTIONS(5790), 1, + aux_sym_number_token2, + ACTIONS(5792), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(5794), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5796), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(5804), 1, + sym__brace_start, + ACTIONS(12317), 1, + sym_word, + ACTIONS(12323), 1, sym__comment_word, - ACTIONS(11088), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(5800), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(12319), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12321), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(3306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258524,46 +285578,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219225] = 18, + [245355] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8370), 1, + ACTIONS(3355), 1, + aux_sym_number_token1, + ACTIONS(3357), 1, + aux_sym_number_token2, + ACTIONS(3361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3373), 1, + sym__brace_start, + ACTIONS(11859), 1, + sym_word, + ACTIONS(11861), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, + ACTIONS(11863), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(11867), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, - aux_sym_number_token1, - ACTIONS(8384), 1, - aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(11871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(11873), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(11875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, - sym__brace_start, - ACTIONS(10460), 1, - sym_word, - ACTIONS(10466), 1, + ACTIONS(11879), 1, sym__comment_word, - ACTIONS(11090), 1, + ACTIONS(12325), 1, anon_sym_DOLLAR, - ACTIONS(8394), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10462), 2, + ACTIONS(11865), 2, sym_test_operator, sym__special_character, - ACTIONS(10464), 3, + ACTIONS(11877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11869), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4362), 9, + STATE(2133), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258573,46 +285627,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219292] = 18, + [245422] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8370), 1, + ACTIONS(6072), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8372), 1, + ACTIONS(6074), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(6076), 1, + anon_sym_DOLLAR, + ACTIONS(6080), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(6084), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(6086), 1, aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(6088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(6090), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(6092), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(6094), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, + ACTIONS(6100), 1, sym__brace_start, - ACTIONS(10460), 1, + ACTIONS(12327), 1, sym_word, - ACTIONS(10466), 1, + ACTIONS(12333), 1, sym__comment_word, - ACTIONS(11092), 1, - anon_sym_DOLLAR, - ACTIONS(8394), 2, + ACTIONS(6096), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10462), 2, + ACTIONS(12329), 2, sym_test_operator, sym__special_character, - ACTIONS(10464), 3, + ACTIONS(12331), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4362), 9, + STATE(5940), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258622,48 +285676,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219359] = 20, - ACTIONS(71), 1, + [245489] = 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(10602), 1, + ACTIONS(5386), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(5388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(5390), 1, + anon_sym_DOLLAR, + ACTIONS(5394), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(5398), 1, + aux_sym_number_token1, + ACTIONS(5400), 1, + aux_sym_number_token2, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(5404), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5406), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11094), 1, + ACTIONS(5414), 1, + sym__brace_start, + ACTIONS(12335), 1, sym_word, - ACTIONS(11096), 1, - sym__special_character, - ACTIONS(11100), 1, - sym_test_operator, - STATE(5596), 1, - aux_sym__literal_repeat1, - STATE(5614), 1, - sym_concatenation, - ACTIONS(10620), 2, + ACTIONS(12341), 1, + sym__comment_word, + ACTIONS(5410), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11098), 2, + ACTIONS(12337), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12339), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5525), 9, + STATE(2918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258673,96 +285725,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219430] = 17, + [245556] = 18, 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, - ACTIONS(71), 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(10602), 1, + ACTIONS(5856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(5858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(5860), 1, + anon_sym_DOLLAR, + ACTIONS(5864), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(5868), 1, + aux_sym_number_token1, + ACTIONS(5870), 1, + aux_sym_number_token2, + ACTIONS(5872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(5874), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5876), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(5878), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11096), 1, - sym__special_character, - ACTIONS(11102), 1, + ACTIONS(5884), 1, + sym__brace_start, + ACTIONS(12343), 1, sym_word, - ACTIONS(11106), 1, - sym_test_operator, - STATE(5600), 1, - aux_sym__literal_repeat1, - STATE(5611), 1, - sym_concatenation, - ACTIONS(10620), 2, + ACTIONS(12349), 1, + sym__comment_word, + ACTIONS(5880), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11104), 2, + ACTIONS(12345), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12347), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5513), 9, + STATE(5766), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258772,46 +285774,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219566] = 18, + [245623] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(8603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(8605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(377), 1, + ACTIONS(8607), 1, + anon_sym_DOLLAR, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(8615), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(8617), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(8619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(8623), 1, + anon_sym_BQUOTE, + ACTIONS(8625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(8635), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(12351), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(12357), 1, sym__comment_word, - ACTIONS(11108), 1, - anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(8627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(12353), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(12355), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1340), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258821,46 +285823,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219633] = 18, + [245690] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(1689), 1, + anon_sym_DOLLAR, + ACTIONS(1695), 1, + aux_sym_number_token1, + ACTIONS(1697), 1, + aux_sym_number_token2, + ACTIONS(1701), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1715), 1, + sym__brace_start, + ACTIONS(9197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(9203), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9209), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(12359), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(12365), 1, sym__comment_word, - ACTIONS(11110), 1, - anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(9213), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(12361), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(12363), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1371), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258870,46 +285872,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219700] = 18, + [245757] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, + ACTIONS(2562), 1, anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(2568), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(2570), 1, aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(2586), 1, sym__brace_start, - ACTIONS(10192), 1, + ACTIONS(12161), 1, sym_word, - ACTIONS(10200), 1, + ACTIONS(12163), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12165), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12171), 1, + anon_sym_DQUOTE, + ACTIONS(12175), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12177), 1, + anon_sym_BQUOTE, + ACTIONS(12179), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12183), 1, sym__comment_word, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10196), 2, + ACTIONS(12169), 2, sym_test_operator, sym__special_character, - ACTIONS(10198), 3, + ACTIONS(12181), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12173), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1110), 9, + STATE(1615), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258919,46 +285921,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219767] = 18, + [245824] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, - sym_word, - ACTIONS(10084), 1, + ACTIONS(11071), 1, sym__comment_word, - ACTIONS(11112), 1, + ACTIONS(12367), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(11057), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(11069), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11061), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258968,46 +285970,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219834] = 18, + [245891] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(1428), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1434), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1436), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1440), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1452), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10671), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10677), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10683), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(11911), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(11919), 1, sym__comment_word, - ACTIONS(9990), 2, + ACTIONS(10687), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(11915), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(11917), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(953), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259017,46 +286019,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219901] = 18, + [245958] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(3095), 1, + anon_sym_DOLLAR, + ACTIONS(3101), 1, + aux_sym_number_token1, + ACTIONS(3103), 1, + aux_sym_number_token2, + ACTIONS(3107), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3117), 1, + sym__brace_start, + ACTIONS(10901), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(10903), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(10907), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, - aux_sym_number_token1, - ACTIONS(7950), 1, - aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(10911), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(10913), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(10915), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, - sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(11341), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(11349), 1, sym__comment_word, - ACTIONS(11114), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(10917), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(11345), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(11347), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(1680), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259066,48 +286068,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219968] = 20, - ACTIONS(71), 1, + [246025] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(11051), 1, + sym_word, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, - anon_sym_DOLLAR, - ACTIONS(5325), 1, - sym__special_character, - ACTIONS(5327), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, - aux_sym_number_token1, - ACTIONS(5333), 1, - aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(11116), 1, - sym_word, - ACTIONS(11120), 1, + ACTIONS(11071), 1, + sym__comment_word, + ACTIONS(12369), 1, + anon_sym_DOLLAR, + ACTIONS(11057), 2, sym_test_operator, - STATE(5434), 1, - aux_sym__literal_repeat1, - STATE(5543), 1, - sym_concatenation, - ACTIONS(5343), 2, + sym__special_character, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11118), 2, + ACTIONS(11061), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5253), 9, + STATE(4642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259117,46 +286117,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220039] = 18, + [246092] = 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(3667), 1, + anon_sym_DOLLAR, + ACTIONS(3673), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(3675), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(3689), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(11403), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(11405), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11407), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11413), 1, + anon_sym_DQUOTE, + ACTIONS(11417), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11419), 1, + anon_sym_BQUOTE, + ACTIONS(11421), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11425), 1, sym__comment_word, - ACTIONS(11122), 1, - anon_sym_DOLLAR, - ACTIONS(393), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(11411), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(11423), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11415), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(4978), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259166,48 +286166,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220106] = 20, - ACTIONS(71), 1, + [246159] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5323), 1, + ACTIONS(2522), 1, anon_sym_DOLLAR, - ACTIONS(5325), 1, - sym__special_character, - ACTIONS(5327), 1, - anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(2528), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(2530), 1, aux_sym_number_token2, - ACTIONS(5335), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(2534), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(2544), 1, + sym__brace_start, + ACTIONS(10919), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10921), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10925), 1, + anon_sym_DQUOTE, + ACTIONS(10929), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10931), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(10933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(11124), 1, + ACTIONS(11435), 1, sym_word, - ACTIONS(11128), 1, - sym_test_operator, - STATE(5444), 1, - aux_sym__literal_repeat1, - STATE(5581), 1, - sym_concatenation, - ACTIONS(5343), 2, + ACTIONS(11443), 1, + sym__comment_word, + ACTIONS(10935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11126), 2, + ACTIONS(11439), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11441), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5271), 9, + STATE(1565), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259217,46 +286215,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220177] = 18, + [246226] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(3178), 1, + anon_sym_DOLLAR, + ACTIONS(3184), 1, + aux_sym_number_token1, + ACTIONS(3186), 1, + aux_sym_number_token2, + ACTIONS(3190), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3200), 1, + sym__brace_start, + ACTIONS(11497), 1, + sym_word, + ACTIONS(11499), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(11501), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(11507), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(11511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(11513), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(11515), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, - sym_word, - ACTIONS(11016), 1, + ACTIONS(11519), 1, sym__comment_word, - ACTIONS(11130), 1, - anon_sym_DOLLAR, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(11505), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(11517), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11509), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(4715), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259266,46 +286264,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220244] = 18, + [246293] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8234), 1, + ACTIONS(705), 1, + anon_sym_DOLLAR, + ACTIONS(709), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(713), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(715), 1, aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(719), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(733), 1, sym__brace_start, - ACTIONS(10284), 1, + ACTIONS(11523), 1, sym_word, - ACTIONS(10290), 1, + ACTIONS(11531), 1, sym__comment_word, - ACTIONS(11132), 1, - anon_sym_DOLLAR, - ACTIONS(8250), 2, + ACTIONS(725), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, + ACTIONS(11527), 2, sym_test_operator, sym__special_character, - ACTIONS(10288), 3, + ACTIONS(11529), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(963), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259315,46 +286313,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220311] = 18, + [246360] = 18, ACTIONS(3), 1, sym_comment, - 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(9686), 1, + ACTIONS(8729), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(8731), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(8733), 1, + anon_sym_DOLLAR, + ACTIONS(8737), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8741), 1, + aux_sym_number_token1, + ACTIONS(8743), 1, + aux_sym_number_token2, + ACTIONS(8745), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8747), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8749), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8751), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(8761), 1, + sym__brace_start, + ACTIONS(11645), 1, sym_word, - ACTIONS(11136), 1, - anon_sym_DOLLAR, - ACTIONS(11142), 1, + ACTIONS(11653), 1, sym__comment_word, - ACTIONS(9702), 2, + ACTIONS(8753), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(11649), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(11651), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(4749), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259364,48 +286362,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220378] = 20, + [246427] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(8935), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(8937), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, + ACTIONS(8939), 1, anon_sym_DOLLAR, - ACTIONS(9902), 1, + ACTIONS(8941), 1, sym__special_character, - ACTIONS(9904), 1, + ACTIONS(8943), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(8947), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(8949), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(8953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(8967), 1, sym__brace_start, - ACTIONS(11144), 1, + ACTIONS(12371), 1, sym_word, - ACTIONS(11148), 1, + ACTIONS(12375), 1, sym_test_operator, - STATE(2436), 1, + STATE(2100), 1, aux_sym__literal_repeat1, - STATE(2665), 1, + STATE(2298), 1, sym_concatenation, - ACTIONS(9920), 2, + ACTIONS(8959), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11146), 2, + ACTIONS(12373), 2, sym_raw_string, sym_ansi_c_string, - STATE(2238), 9, + STATE(1527), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259415,46 +286413,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220449] = 18, + [246498] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(9055), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(9057), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(9059), 1, + anon_sym_DOLLAR, + ACTIONS(9063), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(9067), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(9069), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(9071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(9073), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(9075), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(9087), 1, sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(11685), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(11693), 1, sym__comment_word, - ACTIONS(11150), 1, - anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(9079), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(11689), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(11691), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(1458), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259464,46 +286462,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220516] = 18, + [246565] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(1851), 1, + anon_sym_DOLLAR, + ACTIONS(1857), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(1859), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(1863), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, + ACTIONS(1877), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(9225), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(9231), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(9235), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(9237), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(9239), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(11711), 1, sym_word, - ACTIONS(11154), 1, - anon_sym_DOLLAR, - ACTIONS(11160), 1, + ACTIONS(11719), 1, sym__comment_word, - ACTIONS(9850), 2, + ACTIONS(9241), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(11715), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(11717), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(1483), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259513,46 +286511,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220583] = 18, + [246632] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7978), 1, + ACTIONS(2905), 1, anon_sym_DOLLAR, - ACTIONS(7982), 1, - anon_sym_DQUOTE, - ACTIONS(7986), 1, + ACTIONS(2911), 1, aux_sym_number_token1, - ACTIONS(7988), 1, + ACTIONS(2913), 1, aux_sym_number_token2, - ACTIONS(7990), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7992), 1, + ACTIONS(2917), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7994), 1, - anon_sym_BQUOTE, - ACTIONS(7996), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8006), 1, + ACTIONS(2929), 1, sym__brace_start, - ACTIONS(10578), 1, + ACTIONS(11745), 1, sym_word, - ACTIONS(10586), 1, + ACTIONS(11747), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11759), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11761), 1, + anon_sym_BQUOTE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11767), 1, sym__comment_word, - ACTIONS(7998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10582), 2, + ACTIONS(11753), 2, sym_test_operator, sym__special_character, - ACTIONS(10584), 3, + ACTIONS(11765), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11757), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3402), 9, + STATE(1785), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259562,48 +286560,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220650] = 20, - ACTIONS(71), 1, + [246699] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(3317), 1, + aux_sym_number_token1, + ACTIONS(3319), 1, + aux_sym_number_token2, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3333), 1, + sym__brace_start, + ACTIONS(10743), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(10745), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, - sym__special_character, - ACTIONS(9904), 1, + ACTIONS(10749), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, - aux_sym_number_token1, - ACTIONS(9910), 1, - aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(10753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(10755), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(10757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - sym__brace_start, - ACTIONS(11162), 1, + ACTIONS(12197), 1, sym_word, - ACTIONS(11166), 1, - sym_test_operator, - STATE(2569), 1, - aux_sym__literal_repeat1, - STATE(2686), 1, - sym_concatenation, - ACTIONS(9920), 2, + ACTIONS(12203), 1, + sym__comment_word, + ACTIONS(12377), 1, + anon_sym_DOLLAR, + ACTIONS(10759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11164), 2, + ACTIONS(12199), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12201), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2306), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259613,46 +286609,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220721] = 18, + [246766] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(1468), 1, + anon_sym_DOLLAR, + ACTIONS(1474), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(1476), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(1480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(1492), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(10717), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(10719), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(10723), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(10727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(10729), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(10731), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, + ACTIONS(11819), 1, sym_word, - ACTIONS(10112), 1, + ACTIONS(11827), 1, sym__comment_word, - ACTIONS(11168), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 2, + ACTIONS(10733), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(11823), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(11825), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(1116), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259662,46 +286658,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220788] = 18, + [246833] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3317), 1, aux_sym_number_token1, - ACTIONS(3215), 1, + ACTIONS(3319), 1, aux_sym_number_token2, - ACTIONS(3219), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3229), 1, + ACTIONS(3333), 1, sym__brace_start, - ACTIONS(9834), 1, + ACTIONS(10743), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(10745), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(10749), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(10753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(10755), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(10757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(12197), 1, sym_word, - ACTIONS(11160), 1, + ACTIONS(12203), 1, sym__comment_word, - ACTIONS(11170), 1, + ACTIONS(12379), 1, anon_sym_DOLLAR, - ACTIONS(9850), 2, + ACTIONS(10759), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(12199), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(12201), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259711,48 +286707,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220855] = 20, - ACTIONS(71), 1, + [246900] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(3381), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, - sym__special_character, - ACTIONS(5099), 1, - anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(3387), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(3389), 1, aux_sym_number_token2, - ACTIONS(5107), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(3393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(3403), 1, + sym__brace_start, + ACTIONS(10945), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10947), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10951), 1, + anon_sym_DQUOTE, + ACTIONS(10955), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10957), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(10959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, - sym__brace_start, - ACTIONS(11172), 1, + ACTIONS(11893), 1, sym_word, - ACTIONS(11176), 1, - sym_test_operator, - STATE(5312), 1, - aux_sym__literal_repeat1, - STATE(5504), 1, - sym_concatenation, - ACTIONS(5115), 2, + ACTIONS(11901), 1, + sym__comment_word, + ACTIONS(10961), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11174), 2, + ACTIONS(11897), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11899), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5202), 9, + STATE(2033), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259762,46 +286756,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220926] = 18, + [246967] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3318), 1, + ACTIONS(4105), 1, + anon_sym_DOLLAR, + ACTIONS(4111), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(4113), 1, aux_sym_number_token2, - ACTIONS(3324), 1, + ACTIONS(4117), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3336), 1, + ACTIONS(4127), 1, sym__brace_start, - ACTIONS(10292), 1, + ACTIONS(11927), 1, sym_word, - ACTIONS(10294), 1, + ACTIONS(11929), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10296), 1, + ACTIONS(11931), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10302), 1, + ACTIONS(11937), 1, anon_sym_DQUOTE, - ACTIONS(10306), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(11943), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(11945), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10314), 1, + ACTIONS(11949), 1, sym__comment_word, - ACTIONS(11178), 1, - anon_sym_DOLLAR, - ACTIONS(10300), 2, + ACTIONS(11935), 2, sym_test_operator, sym__special_character, - ACTIONS(10312), 2, + ACTIONS(11947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 3, + ACTIONS(11939), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1841), 9, + STATE(5030), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259811,46 +286805,94 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220993] = 18, + [247034] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8387), 1, + anon_sym_SLASH, + ACTIONS(8389), 1, + anon_sym_PERCENT, + ACTIONS(8391), 1, + anon_sym_COLON, + ACTIONS(8637), 1, + anon_sym_AT, + ACTIONS(9586), 1, + anon_sym_LBRACK, + STATE(7471), 1, + sym__expansion_expression, + STATE(7555), 1, + sym__expansion_operator, + STATE(7606), 1, + sym__expansion_regex_removal, + STATE(7699), 1, + sym__expansion_regex, + STATE(7746), 1, + sym__expansion_regex_replacement, + STATE(7936), 1, + sym__expansion_max_length, + ACTIONS(8385), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8405), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8393), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8403), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8401), 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, + [247099] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8226), 1, + ACTIONS(2826), 1, + anon_sym_DOLLAR, + ACTIONS(2832), 1, + aux_sym_number_token1, + ACTIONS(2834), 1, + aux_sym_number_token2, + ACTIONS(2838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2848), 1, + sym__brace_start, + ACTIONS(10965), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(10967), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8234), 1, + ACTIONS(10971), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(10975), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(10977), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(10979), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(10284), 1, + ACTIONS(11997), 1, sym_word, - ACTIONS(10290), 1, + ACTIONS(12005), 1, sym__comment_word, - ACTIONS(11180), 1, - anon_sym_DOLLAR, - ACTIONS(8250), 2, + ACTIONS(10981), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10286), 2, + ACTIONS(12001), 2, sym_test_operator, sym__special_character, - ACTIONS(10288), 3, + ACTIONS(12003), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1441), 9, + STATE(1823), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259860,46 +286902,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221060] = 18, + [247166] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, + ACTIONS(3551), 1, + anon_sym_DOLLAR, + ACTIONS(3557), 1, aux_sym_number_token1, - ACTIONS(2041), 1, + ACTIONS(3559), 1, aux_sym_number_token2, - ACTIONS(2045), 1, + ACTIONS(3563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(3573), 1, sym__brace_start, - ACTIONS(8012), 1, + ACTIONS(12045), 1, + sym_word, + ACTIONS(12047), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8014), 1, + ACTIONS(12049), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8018), 1, + ACTIONS(12055), 1, anon_sym_DQUOTE, - ACTIONS(8022), 1, + ACTIONS(12059), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(12061), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(12063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, - sym_word, - ACTIONS(10112), 1, + ACTIONS(12067), 1, sym__comment_word, - ACTIONS(11182), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10108), 2, + ACTIONS(12053), 2, sym_test_operator, sym__special_character, - ACTIONS(10110), 3, + ACTIONS(12065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12057), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1703), 9, + STATE(4880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259909,46 +286951,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221127] = 18, - ACTIONS(3), 1, + [247233] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3091), 1, - aux_sym_number_token1, - ACTIONS(3093), 1, - aux_sym_number_token2, - ACTIONS(3097), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, - sym__brace_start, - ACTIONS(10786), 1, - sym_word, - ACTIONS(10788), 1, + ACTIONS(11203), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(11211), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(11215), 1, + aux_sym_number_token1, + ACTIONS(11217), 1, + aux_sym_number_token2, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(11221), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, - sym__comment_word, - ACTIONS(11184), 1, + ACTIONS(11231), 1, + sym__brace_start, + ACTIONS(11249), 1, anon_sym_DOLLAR, - ACTIONS(10794), 2, - sym_test_operator, + ACTIONS(12381), 1, + sym_word, + ACTIONS(12383), 1, sym__special_character, - ACTIONS(10806), 2, + ACTIONS(12387), 1, + sym_test_operator, + STATE(6666), 1, + aux_sym__literal_repeat1, + STATE(6936), 1, + sym_concatenation, + ACTIONS(11227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, - sym__bare_dollar, + ACTIONS(12385), 2, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(6650), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259958,46 +287002,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221194] = 18, + [247304] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, + ACTIONS(9143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9898), 1, + ACTIONS(9145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9900), 1, + ACTIONS(9147), 1, anon_sym_DOLLAR, - ACTIONS(9904), 1, + ACTIONS(9151), 1, anon_sym_DQUOTE, - ACTIONS(9908), 1, + ACTIONS(9155), 1, aux_sym_number_token1, - ACTIONS(9910), 1, + ACTIONS(9157), 1, aux_sym_number_token2, - ACTIONS(9912), 1, + ACTIONS(9159), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9914), 1, + ACTIONS(9161), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9916), 1, + ACTIONS(9163), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(9165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, + ACTIONS(9175), 1, sym__brace_start, - ACTIONS(10864), 1, + ACTIONS(12111), 1, sym_word, - ACTIONS(10872), 1, + ACTIONS(12119), 1, sym__comment_word, - ACTIONS(9920), 2, + ACTIONS(9167), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10868), 2, + ACTIONS(12115), 2, sym_test_operator, sym__special_character, - ACTIONS(10870), 3, + ACTIONS(12117), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2333), 9, + STATE(4903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260007,46 +287051,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221261] = 18, + [247371] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3093), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3097), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3109), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(10786), 1, + ACTIONS(11101), 1, sym_word, - ACTIONS(10788), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10790), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10796), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(10800), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10808), 1, + ACTIONS(11123), 1, sym__comment_word, - ACTIONS(11186), 1, + ACTIONS(12389), 1, anon_sym_DOLLAR, - ACTIONS(10794), 2, + ACTIONS(11109), 2, sym_test_operator, sym__special_character, - ACTIONS(10806), 2, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10798), 3, + ACTIONS(11113), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1855), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260056,48 +287100,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221328] = 20, - ACTIONS(71), 1, + [247438] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12391), 1, + aux_sym_concatenation_token1, + ACTIONS(12394), 1, + sym__concat, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [247481] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11101), 1, + sym_word, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(11188), 1, - sym_word, - ACTIONS(11192), 1, + ACTIONS(11123), 1, + sym__comment_word, + ACTIONS(12397), 1, + anon_sym_DOLLAR, + ACTIONS(11109), 2, sym_test_operator, - STATE(1391), 1, - aux_sym__literal_repeat1, - STATE(1547), 1, - sym_concatenation, - ACTIONS(8138), 2, + sym__special_character, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11190), 2, + ACTIONS(11113), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1009), 9, + STATE(4557), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260107,46 +287186,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221399] = 18, + [247548] = 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(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(10614), 1, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(11987), 1, + sym_word, + ACTIONS(11995), 1, sym__comment_word, - ACTIONS(11194), 1, - anon_sym_DOLLAR, - ACTIONS(10608), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10620), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10612), 3, + ACTIONS(11991), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11993), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5559), 9, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260156,48 +287235,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221466] = 20, - ACTIONS(71), 1, + [247615] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(8935), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(8937), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8118), 1, - anon_sym_DOLLAR, - ACTIONS(8120), 1, - sym__special_character, - ACTIONS(8122), 1, + ACTIONS(8943), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(8947), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(8949), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(8953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(8967), 1, sym__brace_start, - ACTIONS(11196), 1, + ACTIONS(11979), 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(11985), 1, + sym__comment_word, + ACTIONS(12399), 1, + anon_sym_DOLLAR, + ACTIONS(8959), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11198), 2, + ACTIONS(11981), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11983), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1019), 9, + STATE(1657), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260207,46 +287284,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221537] = 18, + [247682] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4546), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(9502), 1, aux_sym_number_token1, - ACTIONS(4552), 1, + ACTIONS(9504), 1, aux_sym_number_token2, - ACTIONS(4554), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, + ACTIONS(9508), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 1, + ACTIONS(9518), 1, sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(12209), 1, sym_word, - ACTIONS(10396), 1, + ACTIONS(12215), 1, sym__comment_word, - ACTIONS(11202), 1, + ACTIONS(12401), 1, anon_sym_DOLLAR, - ACTIONS(4562), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10392), 2, + ACTIONS(12211), 2, sym_test_operator, sym__special_character, - ACTIONS(10394), 3, + ACTIONS(12213), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(5642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260256,46 +287333,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221604] = 18, + [247749] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(9498), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9502), 1, + aux_sym_number_token1, + ACTIONS(9504), 1, + aux_sym_number_token2, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9508), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(9518), 1, + sym__brace_start, + ACTIONS(12209), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(12215), 1, sym__comment_word, - ACTIONS(11204), 1, + ACTIONS(12403), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(9514), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(12211), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(12213), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(5642), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260305,46 +287382,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221671] = 18, - ACTIONS(3), 1, + [247816] = 20, + ACTIONS(71), 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(8935), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(8937), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(8939), 1, + anon_sym_DOLLAR, + ACTIONS(8941), 1, + sym__special_character, + ACTIONS(8943), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(8947), 1, + aux_sym_number_token1, + ACTIONS(8949), 1, + aux_sym_number_token2, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(8953), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11206), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, + ACTIONS(8967), 1, + sym__brace_start, + ACTIONS(12405), 1, + sym_word, + ACTIONS(12409), 1, sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + STATE(2169), 1, + aux_sym__literal_repeat1, + STATE(2496), 1, + sym_concatenation, + ACTIONS(8959), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(12407), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1603), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260354,46 +287433,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221738] = 18, + [247887] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(4017), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(10845), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(10847), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10851), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(11127), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(11135), 1, sym__comment_word, - ACTIONS(11208), 1, + ACTIONS(12411), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(11131), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(11133), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(5361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260403,46 +287482,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221805] = 18, + [247954] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(109), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(111), 1, - anon_sym_DOLLAR, - ACTIONS(115), 1, - anon_sym_DQUOTE, - ACTIONS(119), 1, + ACTIONS(3999), 1, aux_sym_number_token1, - ACTIONS(121), 1, + ACTIONS(4001), 1, aux_sym_number_token2, - ACTIONS(123), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(125), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(127), 1, + ACTIONS(4017), 1, + sym__brace_start, + ACTIONS(10845), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10847), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10851), 1, + anon_sym_DQUOTE, + ACTIONS(10855), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(139), 1, - sym__brace_start, - ACTIONS(10662), 1, + ACTIONS(11127), 1, sym_word, - ACTIONS(10670), 1, + ACTIONS(11135), 1, sym__comment_word, - ACTIONS(131), 2, + ACTIONS(12413), 1, + anon_sym_DOLLAR, + ACTIONS(10861), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10666), 2, + ACTIONS(11131), 2, sym_test_operator, sym__special_character, - ACTIONS(10668), 3, + ACTIONS(11133), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(486), 9, + STATE(5361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260452,46 +287531,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221872] = 18, - ACTIONS(3), 1, + [248021] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11210), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, + ACTIONS(12415), 1, + sym_word, + ACTIONS(12417), 1, sym__special_character, - ACTIONS(10534), 2, + ACTIONS(12421), 1, + sym_test_operator, + STATE(4839), 1, + aux_sym__literal_repeat1, + STATE(5048), 1, + sym_concatenation, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(12419), 2, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(5163), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260501,46 +287582,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221939] = 18, - ACTIONS(3), 1, + [248092] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4554), 1, + aux_sym_number_token1, + ACTIONS(4556), 1, + aux_sym_number_token2, + ACTIONS(4560), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4570), 1, + sym__brace_start, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(195), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, - aux_sym_number_token1, - ACTIONS(201), 1, - aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, - sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(12417), 1, + sym__special_character, + ACTIONS(12423), 1, sym_word, - ACTIONS(11214), 1, - anon_sym_DOLLAR, - ACTIONS(11220), 1, - sym__comment_word, - ACTIONS(211), 2, + ACTIONS(12427), 1, + sym_test_operator, + STATE(4885), 1, + aux_sym__literal_repeat1, + STATE(5078), 1, + sym_concatenation, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11218), 3, - sym__bare_dollar, + ACTIONS(12425), 2, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(5167), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260550,48 +287633,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222006] = 20, + [248163] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(3129), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(10204), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11222), 1, + ACTIONS(12429), 1, sym_word, - ACTIONS(11224), 1, + ACTIONS(12431), 1, sym__special_character, - ACTIONS(11228), 1, + ACTIONS(12435), 1, sym_test_operator, - STATE(4429), 1, + STATE(4711), 1, aux_sym__literal_repeat1, - STATE(4714), 1, + STATE(4835), 1, sym_concatenation, - ACTIONS(10220), 2, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11226), 2, + ACTIONS(12433), 2, sym_raw_string, sym_ansi_c_string, - STATE(4258), 9, + STATE(4920), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260601,48 +287684,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222077] = 20, + [248234] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(3129), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(10204), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11224), 1, + ACTIONS(12431), 1, sym__special_character, - ACTIONS(11230), 1, + ACTIONS(12437), 1, sym_word, - ACTIONS(11234), 1, + ACTIONS(12441), 1, sym_test_operator, - STATE(4356), 1, + STATE(4717), 1, aux_sym__literal_repeat1, - STATE(4935), 1, + STATE(4848), 1, sym_concatenation, - ACTIONS(10220), 2, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11232), 2, + ACTIONS(12439), 2, sym_raw_string, sym_ansi_c_string, - STATE(4235), 9, + STATE(4922), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260652,46 +287735,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222148] = 18, + [248305] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(4331), 1, + aux_sym_number_token1, + ACTIONS(4333), 1, + aux_sym_number_token2, + ACTIONS(4337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, - aux_sym_number_token1, - ACTIONS(8314), 1, - aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(11008), 1, + ACTIONS(11159), 1, sym_word, - ACTIONS(11016), 1, + ACTIONS(11167), 1, sym__comment_word, - ACTIONS(11236), 1, + ACTIONS(12443), 1, anon_sym_DOLLAR, - ACTIONS(8324), 2, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11012), 2, + ACTIONS(11163), 2, sym_test_operator, sym__special_character, - ACTIONS(11014), 3, + ACTIONS(11165), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1664), 9, + STATE(2258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260701,46 +287784,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222215] = 18, + [248372] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 1, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(4347), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(11159), 1, sym_word, - ACTIONS(10172), 1, + ACTIONS(11167), 1, sym__comment_word, - ACTIONS(11238), 1, + ACTIONS(12445), 1, anon_sym_DOLLAR, - ACTIONS(10058), 2, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(11163), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, + ACTIONS(11165), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(2258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260750,46 +287833,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222282] = 18, + [248439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(187), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4066), 1, + ACTIONS(189), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4068), 1, - anon_sym_DOLLAR, - ACTIONS(4072), 1, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(4076), 1, + ACTIONS(199), 1, aux_sym_number_token1, - ACTIONS(4078), 1, + ACTIONS(201), 1, aux_sym_number_token2, - ACTIONS(4080), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4082), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4084), 1, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(219), 1, sym__brace_start, - ACTIONS(10174), 1, + ACTIONS(11447), 1, sym_word, - ACTIONS(10182), 1, + ACTIONS(11453), 1, sym__comment_word, - ACTIONS(4088), 2, + ACTIONS(12447), 1, + anon_sym_DOLLAR, + ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, + ACTIONS(11449), 2, sym_test_operator, sym__special_character, - ACTIONS(10180), 3, + ACTIONS(11451), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2446), 9, + STATE(537), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260799,46 +287882,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222349] = 18, + [248506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(11143), 1, + anon_sym_LT_LT_LT, + STATE(5367), 1, + sym_herestring_redirect, + ACTIONS(4820), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 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, + [248549] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4331), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(4333), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(4337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(4347), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(11159), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(11167), 1, sym__comment_word, - ACTIONS(11240), 1, + ACTIONS(12449), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(11163), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(11165), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(2258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260848,58 +287968,60 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222416] = 20, - ACTIONS(71), 1, + [248616] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(12455), 1, + anon_sym_LPAREN, + ACTIONS(12457), 1, + aux_sym__c_word_token1, + ACTIONS(12459), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(12463), 1, + anon_sym_DQUOTE, + ACTIONS(12465), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(12467), 1, aux_sym_number_token2, - ACTIONS(1386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, - sym__brace_start, - ACTIONS(10042), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, - anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(12469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(12471), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12473), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(12475), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11242), 1, - sym_word, - ACTIONS(11246), 1, - sym_test_operator, - STATE(1027), 1, - aux_sym__literal_repeat1, - STATE(1150), 1, - sym_concatenation, - ACTIONS(10058), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11244), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(838), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(4613), 1, + sym__c_terminator, + STATE(6780), 1, + sym__c_expression, + STATE(7000), 1, + sym__c_variable_assignment, + STATE(7389), 1, + sym__for_body, + ACTIONS(12451), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(12453), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3182), 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, - [222487] = 18, + [248691] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(187), 1, @@ -260922,23 +288044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(219), 1, sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(11447), 1, sym_word, - ACTIONS(11220), 1, + ACTIONS(11453), 1, sym__comment_word, - ACTIONS(11248), 1, + ACTIONS(12477), 1, anon_sym_DOLLAR, ACTIONS(211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(11449), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(11451), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(537), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260948,46 +288070,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222554] = 18, + [248758] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(3757), 1, + aux_sym_number_token1, + ACTIONS(3759), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3773), 1, + sym__brace_start, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5327), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, - aux_sym_number_token1, - ACTIONS(5333), 1, - aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, - sym__brace_start, - ACTIONS(11250), 1, + ACTIONS(11185), 1, sym_word, - ACTIONS(11252), 1, - anon_sym_DOLLAR, - ACTIONS(11258), 1, + ACTIONS(11193), 1, sym__comment_word, - ACTIONS(5343), 2, + ACTIONS(12479), 1, + anon_sym_DOLLAR, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(11189), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(11191), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(1971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260997,48 +288119,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222621] = 20, + [248825] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1374), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(1380), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(1382), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(1386), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1398), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(10042), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10046), 1, - sym__special_character, - ACTIONS(10048), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11260), 1, + ACTIONS(11629), 1, sym_word, - ACTIONS(11264), 1, + ACTIONS(11635), 1, sym_test_operator, - STATE(1029), 1, + ACTIONS(12481), 1, + sym__special_character, + STATE(4839), 1, aux_sym__literal_repeat1, - STATE(1153), 1, + STATE(5048), 1, sym_concatenation, - ACTIONS(10058), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11262), 2, + ACTIONS(11633), 2, sym_raw_string, sym_ansi_c_string, - STATE(818), 9, + STATE(5184), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261048,83 +288170,48 @@ 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, - ACTIONS(3), 1, + [248896] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, - sym__comment_word, - ACTIONS(11270), 1, - anon_sym_DOLLAR, - ACTIONS(10496), 2, + ACTIONS(11639), 1, + sym_word, + ACTIONS(11643), 1, sym_test_operator, + ACTIONS(12481), 1, sym__special_character, - ACTIONS(10508), 2, + STATE(4885), 1, + aux_sym__literal_repeat1, + STATE(5078), 1, + sym_concatenation, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, - sym__bare_dollar, + ACTIONS(11641), 2, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(5188), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261134,46 +288221,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222802] = 18, - ACTIONS(3), 1, + [248967] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8645), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(11671), 1, sym_word, - ACTIONS(11274), 1, - anon_sym_DOLLAR, - ACTIONS(11280), 1, - sym__comment_word, - ACTIONS(8661), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(11677), 1, sym_test_operator, + ACTIONS(12483), 1, sym__special_character, - ACTIONS(11278), 3, - sym__bare_dollar, + STATE(4711), 1, + aux_sym__literal_repeat1, + STATE(4835), 1, + sym_concatenation, + ACTIONS(11121), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11675), 2, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(4948), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261183,46 +288272,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222869] = 18, - ACTIONS(3), 1, + [249038] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4629), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4631), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4633), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(4637), 1, - anon_sym_DQUOTE, - ACTIONS(4641), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(4643), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(4645), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4647), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4649), 1, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11103), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11105), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11111), 1, + anon_sym_DQUOTE, + ACTIONS(11115), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(10548), 1, + ACTIONS(11679), 1, sym_word, - ACTIONS(10556), 1, - sym__comment_word, - ACTIONS(4653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10552), 2, + ACTIONS(11683), 1, sym_test_operator, + ACTIONS(12483), 1, sym__special_character, - ACTIONS(10554), 3, - sym__bare_dollar, + STATE(4717), 1, + aux_sym__literal_repeat1, + STATE(4848), 1, + sym_concatenation, + ACTIONS(11121), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11681), 2, sym_raw_string, sym_ansi_c_string, - STATE(2740), 9, + STATE(4950), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261232,46 +288323,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222936] = 18, + [249109] = 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(3757), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(385), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(5375), 1, + ACTIONS(10779), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10781), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10785), 1, + anon_sym_DQUOTE, + ACTIONS(10789), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(10793), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11185), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(11193), 1, sym__comment_word, - ACTIONS(11282), 1, + ACTIONS(12485), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(11189), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(11191), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(1971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261281,46 +288372,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223003] = 18, + [249176] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(4331), 1, + aux_sym_number_token1, + ACTIONS(4333), 1, + aux_sym_number_token2, + ACTIONS(4337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8645), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, - aux_sym_number_token1, - ACTIONS(8651), 1, - aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, - sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(11159), 1, sym_word, - ACTIONS(11280), 1, + ACTIONS(11167), 1, sym__comment_word, - ACTIONS(11284), 1, + ACTIONS(12487), 1, anon_sym_DOLLAR, - ACTIONS(8661), 2, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(11163), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(11165), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(2258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261330,48 +288421,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223070] = 20, + [249243] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11286), 1, + ACTIONS(12489), 1, sym_word, - ACTIONS(11288), 1, + ACTIONS(12491), 1, sym__special_character, - ACTIONS(11292), 1, + ACTIONS(12495), 1, sym_test_operator, - STATE(4291), 1, + STATE(4839), 1, aux_sym__literal_repeat1, - STATE(4579), 1, + STATE(5048), 1, sym_concatenation, - ACTIONS(10252), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11290), 2, + ACTIONS(12493), 2, sym_raw_string, sym_ansi_c_string, - STATE(4158), 9, + STATE(5200), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261381,48 +288472,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223141] = 20, + [249314] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2928), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(2934), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(2936), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(2940), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2950), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10238), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10242), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(10246), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11288), 1, + ACTIONS(12491), 1, sym__special_character, - ACTIONS(11294), 1, + ACTIONS(12497), 1, sym_word, - ACTIONS(11298), 1, + ACTIONS(12501), 1, sym_test_operator, - STATE(4175), 1, + STATE(4885), 1, aux_sym__literal_repeat1, - STATE(4616), 1, + STATE(5078), 1, sym_concatenation, - ACTIONS(10252), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11296), 2, + ACTIONS(12499), 2, sym_raw_string, sym_ansi_c_string, - STATE(4138), 9, + STATE(5204), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261432,46 +288523,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223212] = 18, - ACTIONS(3), 1, + [249385] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(701), 1, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4202), 1, + aux_sym_number_token1, + ACTIONS(4204), 1, + aux_sym_number_token2, + ACTIONS(4208), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, - aux_sym_number_token1, - ACTIONS(715), 1, - aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, - sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(12503), 1, sym_word, - ACTIONS(10272), 1, - sym__comment_word, - ACTIONS(11300), 1, - anon_sym_DOLLAR, - ACTIONS(725), 2, + ACTIONS(12505), 1, + sym__special_character, + ACTIONS(12509), 1, + sym_test_operator, + STATE(4711), 1, + aux_sym__literal_repeat1, + STATE(4835), 1, + sym_concatenation, + ACTIONS(11121), 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(12507), 2, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(4972), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261481,46 +288574,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223279] = 18, - ACTIONS(3), 1, + [249456] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2655), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2657), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(2661), 1, - anon_sym_DQUOTE, - ACTIONS(2665), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(2667), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(2669), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2673), 1, + ACTIONS(4218), 1, + sym__brace_start, + ACTIONS(11103), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(11105), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(11111), 1, + anon_sym_DQUOTE, + ACTIONS(11115), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2683), 1, - sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(12505), 1, + sym__special_character, + ACTIONS(12511), 1, sym_word, - ACTIONS(10728), 1, - sym__comment_word, - ACTIONS(2677), 2, + ACTIONS(12515), 1, + sym_test_operator, + STATE(4717), 1, + aux_sym__literal_repeat1, + STATE(4848), 1, + sym_concatenation, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10726), 3, - sym__bare_dollar, + ACTIONS(12513), 2, sym_raw_string, sym_ansi_c_string, - STATE(2222), 9, + STATE(4974), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261530,46 +288625,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223346] = 18, + [249527] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(4331), 1, + aux_sym_number_token1, + ACTIONS(4333), 1, + aux_sym_number_token2, + ACTIONS(4337), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4347), 1, + sym__brace_start, + ACTIONS(10761), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(10763), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(10767), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, - aux_sym_number_token1, - ACTIONS(322), 1, - aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(11159), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(11167), 1, sym__comment_word, - ACTIONS(11302), 1, + ACTIONS(12517), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(10777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(11163), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(11165), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(2258), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261579,143 +288674,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223413] = 20, + [249594] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8226), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, - anon_sym_DQUOTE, - ACTIONS(8238), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(8240), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(8242), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, - anon_sym_BQUOTE, - ACTIONS(8248), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(11304), 1, - sym_word, - ACTIONS(11308), 1, - sym_test_operator, - STATE(1502), 1, - aux_sym__literal_repeat1, - STATE(1765), 1, - sym_concatenation, - ACTIONS(8250), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11306), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1291), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [223484] = 13, - 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(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8228), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8230), 1, - anon_sym_DOLLAR, - ACTIONS(8232), 1, - sym__special_character, - ACTIONS(8234), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(8238), 1, - aux_sym_number_token1, - ACTIONS(8240), 1, - aux_sym_number_token2, - ACTIONS(8242), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8246), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8258), 1, - sym__brace_start, - ACTIONS(11310), 1, + ACTIONS(12519), 1, sym_word, - ACTIONS(11314), 1, + ACTIONS(12521), 1, + sym__special_character, + ACTIONS(12525), 1, sym_test_operator, - STATE(1508), 1, + STATE(4839), 1, aux_sym__literal_repeat1, - STATE(1802), 1, + STATE(5048), 1, sym_concatenation, - ACTIONS(8250), 2, + ACTIONS(11069), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11312), 2, + ACTIONS(12523), 2, sym_raw_string, sym_ansi_c_string, - STATE(1223), 9, + STATE(5735), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261725,95 +288725,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223612] = 18, - ACTIONS(3), 1, + [249665] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1039), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1041), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1043), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(1047), 1, - anon_sym_DQUOTE, - ACTIONS(1051), 1, + ACTIONS(4554), 1, aux_sym_number_token1, - ACTIONS(1053), 1, + ACTIONS(4556), 1, aux_sym_number_token2, - ACTIONS(1055), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1057), 1, + ACTIONS(4560), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1059), 1, - anon_sym_BQUOTE, - ACTIONS(1061), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, + ACTIONS(4570), 1, sym__brace_start, - ACTIONS(10854), 1, - sym_word, - ACTIONS(10862), 1, - sym__comment_word, - ACTIONS(1063), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10858), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10860), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2144), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [223679] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(701), 1, + ACTIONS(11053), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(703), 1, + ACTIONS(11055), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(11059), 1, anon_sym_DQUOTE, - ACTIONS(713), 1, - aux_sym_number_token1, - ACTIONS(715), 1, - aux_sym_number_token2, - ACTIONS(717), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(719), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(721), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, - sym__brace_start, - ACTIONS(10266), 1, + ACTIONS(12521), 1, + sym__special_character, + ACTIONS(12527), 1, sym_word, - ACTIONS(10272), 1, - sym__comment_word, - ACTIONS(11316), 1, - anon_sym_DOLLAR, - ACTIONS(725), 2, + ACTIONS(12531), 1, + sym_test_operator, + STATE(4885), 1, + aux_sym__literal_repeat1, + STATE(5078), 1, + sym_concatenation, + ACTIONS(11069), 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(12529), 2, sym_raw_string, sym_ansi_c_string, - STATE(897), 9, + STATE(5739), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261823,48 +288776,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223746] = 20, + [249736] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(4196), 1, anon_sym_DOLLAR, - ACTIONS(3484), 1, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(10408), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11318), 1, + ACTIONS(12533), 1, sym_word, - ACTIONS(11320), 1, + ACTIONS(12535), 1, sym__special_character, - ACTIONS(11324), 1, + ACTIONS(12539), 1, sym_test_operator, - STATE(4640), 1, + STATE(4711), 1, aux_sym__literal_repeat1, - STATE(4970), 1, + STATE(4835), 1, sym_concatenation, - ACTIONS(10424), 2, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11322), 2, + ACTIONS(12537), 2, sym_raw_string, sym_ansi_c_string, - STATE(4489), 9, + STATE(5616), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261874,46 +288827,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223817] = 18, - ACTIONS(3), 1, + [249807] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(4196), 1, + anon_sym_DOLLAR, + ACTIONS(4202), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(4204), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(4208), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(4218), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(11103), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(11105), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(11111), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(12535), 1, + sym__special_character, + ACTIONS(12541), 1, sym_word, - ACTIONS(10140), 1, - sym__comment_word, - ACTIONS(11326), 1, - anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(12545), 1, + sym_test_operator, + STATE(4717), 1, + aux_sym__literal_repeat1, + STATE(4848), 1, + sym_concatenation, + ACTIONS(11121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10138), 3, - sym__bare_dollar, + ACTIONS(12543), 2, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(5618), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261923,46 +288878,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223884] = 18, + [249878] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(3566), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(3570), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3582), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(11185), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(11193), 1, sym__comment_word, - ACTIONS(11328), 1, + ACTIONS(12547), 1, anon_sym_DOLLAR, - ACTIONS(9802), 2, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(11189), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(11191), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(1971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261972,46 +288927,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223951] = 18, + [249945] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(3757), 1, aux_sym_number_token1, - ACTIONS(2297), 1, + ACTIONS(3759), 1, aux_sym_number_token2, - ACTIONS(2301), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, + ACTIONS(3773), 1, sym__brace_start, - ACTIONS(10142), 1, - sym_word, - ACTIONS(10144), 1, + ACTIONS(10779), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(10785), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, + ACTIONS(11185), 1, + sym_word, + ACTIONS(11193), 1, sym__comment_word, - ACTIONS(11330), 1, + ACTIONS(12549), 1, anon_sym_DOLLAR, - ACTIONS(10148), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10160), 2, + ACTIONS(10795), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10152), 3, + ACTIONS(11189), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11191), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1304), 9, + STATE(1971), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262021,48 +288976,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224018] = 20, - ACTIONS(71), 1, + [250012] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_DOLLAR, - ACTIONS(3484), 1, + ACTIONS(7170), 1, aux_sym_number_token1, - ACTIONS(3486), 1, + ACTIONS(7172), 1, aux_sym_number_token2, - ACTIONS(3490), 1, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3500), 1, + ACTIONS(7188), 1, sym__brace_start, - ACTIONS(10408), 1, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10410), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10414), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(10418), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11320), 1, - sym__special_character, - ACTIONS(11332), 1, + ACTIONS(12221), 1, sym_word, - ACTIONS(11336), 1, - sym_test_operator, - STATE(4598), 1, - aux_sym__literal_repeat1, - STATE(5003), 1, - sym_concatenation, - ACTIONS(10424), 2, + ACTIONS(12227), 1, + sym__comment_word, + ACTIONS(12551), 1, + anon_sym_DOLLAR, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11334), 2, + ACTIONS(12223), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12225), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4325), 9, + STATE(7006), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262072,46 +289025,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224089] = 18, + [250079] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, - anon_sym_DOLLAR, - ACTIONS(3600), 1, + ACTIONS(7170), 1, aux_sym_number_token1, - ACTIONS(3602), 1, + ACTIONS(7172), 1, aux_sym_number_token2, - ACTIONS(3606), 1, + ACTIONS(7176), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3616), 1, + ACTIONS(7188), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(8137), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 1, + ACTIONS(8139), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9712), 1, + ACTIONS(8143), 1, anon_sym_DQUOTE, - ACTIONS(9716), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10998), 1, + ACTIONS(12221), 1, sym_word, - ACTIONS(11006), 1, + ACTIONS(12227), 1, sym__comment_word, - ACTIONS(9722), 2, + ACTIONS(12553), 1, + anon_sym_DOLLAR, + ACTIONS(8153), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11002), 2, + ACTIONS(12223), 2, sym_test_operator, sym__special_character, - ACTIONS(11004), 3, + ACTIONS(12225), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1910), 9, + STATE(7006), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262121,46 +289074,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224156] = 18, + [250146] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(8935), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(189), 1, + ACTIONS(8937), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(191), 1, - anon_sym_DOLLAR, - ACTIONS(195), 1, + ACTIONS(8943), 1, anon_sym_DQUOTE, - ACTIONS(199), 1, + ACTIONS(8947), 1, aux_sym_number_token1, - ACTIONS(201), 1, + ACTIONS(8949), 1, aux_sym_number_token2, - ACTIONS(203), 1, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(205), 1, + ACTIONS(8953), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(207), 1, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(219), 1, + ACTIONS(8967), 1, sym__brace_start, - ACTIONS(11212), 1, + ACTIONS(11979), 1, sym_word, - ACTIONS(11220), 1, + ACTIONS(11985), 1, sym__comment_word, - ACTIONS(211), 2, + ACTIONS(12555), 1, + anon_sym_DOLLAR, + ACTIONS(8959), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11216), 2, + ACTIONS(11981), 2, sym_test_operator, sym__special_character, - ACTIONS(11218), 3, + ACTIONS(11983), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(508), 9, + STATE(1657), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262170,85 +289123,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224223] = 6, + [250213] = 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(4393), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(4409), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(10805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(10807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, - sym__special_character, - ACTIONS(9768), 1, + ACTIONS(10811), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(10815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(10817), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(10819), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11342), 1, + ACTIONS(12229), 1, sym_word, - ACTIONS(11346), 1, - sym_test_operator, - STATE(1245), 1, - aux_sym__literal_repeat1, - STATE(1369), 1, - sym_concatenation, - ACTIONS(9778), 2, + ACTIONS(12235), 1, + sym__comment_word, + ACTIONS(12557), 1, + anon_sym_DOLLAR, + ACTIONS(10821), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11344), 2, + ACTIONS(12231), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12233), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(879), 9, + STATE(2306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262258,46 +289172,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224337] = 18, + [250280] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(4393), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(4395), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(4399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(4409), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(10805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(10807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(10811), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(10815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(10817), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(10819), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12229), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(12235), 1, sym__comment_word, - ACTIONS(11348), 1, + ACTIONS(12559), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(10821), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(12231), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(12233), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(2306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262307,48 +289221,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224404] = 20, - ACTIONS(71), 1, + [250347] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(3787), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(3789), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(3793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(3803), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(10823), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9764), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9766), 1, - sym__special_character, - ACTIONS(9768), 1, + ACTIONS(10829), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(10833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(10835), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(10837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11350), 1, + ACTIONS(12239), 1, sym_word, - ACTIONS(11354), 1, - sym_test_operator, - STATE(1258), 1, - aux_sym__literal_repeat1, - STATE(1408), 1, - sym_concatenation, - ACTIONS(9778), 2, + ACTIONS(12245), 1, + sym__comment_word, + ACTIONS(12561), 1, + anon_sym_DOLLAR, + ACTIONS(10839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11352), 2, + ACTIONS(12241), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12243), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(882), 9, + STATE(1985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262358,46 +289270,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224475] = 18, + [250414] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10490), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, - anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(11263), 1, + sym_word, + ACTIONS(11271), 1, sym__comment_word, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(12563), 1, + anon_sym_DOLLAR, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(11267), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11269), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262407,46 +289319,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224542] = 18, + [250481] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(3787), 1, + aux_sym_number_token1, + ACTIONS(3789), 1, + aux_sym_number_token2, + ACTIONS(3793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3803), 1, + sym__brace_start, + ACTIONS(10823), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(10825), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8122), 1, + ACTIONS(10829), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, - aux_sym_number_token1, - ACTIONS(8128), 1, - aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(10833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(10835), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(10837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, - sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(12239), 1, sym_word, - ACTIONS(10100), 1, + ACTIONS(12245), 1, sym__comment_word, - ACTIONS(11356), 1, + ACTIONS(12565), 1, anon_sym_DOLLAR, - ACTIONS(8138), 2, + ACTIONS(10839), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, + ACTIONS(12241), 2, sym_test_operator, sym__special_character, - ACTIONS(10098), 3, + ACTIONS(12243), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(1985), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262456,7 +289368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224609] = 18, + [250548] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(262), 1, @@ -262467,35 +289379,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(282), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, + ACTIONS(11263), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(11271), 1, sym__comment_word, - ACTIONS(11358), 1, + ACTIONS(12567), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(11267), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(11269), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262505,97 +289417,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224676] = 20, - ACTIONS(71), 1, + [250615] = 18, + ACTIONS(3), 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(8989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(8991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, - anon_sym_BQUOTE, - ACTIONS(10452), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11360), 1, - sym_word, - ACTIONS(11362), 1, - sym__special_character, - ACTIONS(11366), 1, - sym_test_operator, - STATE(4347), 1, - aux_sym__literal_repeat1, - STATE(4848), 1, - sym_concatenation, - ACTIONS(10454), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11364), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4300), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [224747] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 1, + ACTIONS(9001), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(9003), 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, - anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(9007), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(9021), 1, + sym__brace_start, + ACTIONS(12247), 1, + sym_word, + ACTIONS(12253), 1, sym__comment_word, - ACTIONS(11368), 1, + ACTIONS(12569), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(9013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(12249), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12251), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(2782), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262605,48 +289466,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224814] = 20, - ACTIONS(71), 1, + [250682] = 18, + ACTIONS(3), 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(8989), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10440), 1, + ACTIONS(8991), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10444), 1, + ACTIONS(8997), 1, anon_sym_DQUOTE, - ACTIONS(10448), 1, + ACTIONS(9001), 1, + aux_sym_number_token1, + ACTIONS(9003), 1, + aux_sym_number_token2, + ACTIONS(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(9007), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11362), 1, - sym__special_character, - ACTIONS(11370), 1, + ACTIONS(9021), 1, + sym__brace_start, + ACTIONS(12247), 1, sym_word, - ACTIONS(11374), 1, - sym_test_operator, - STATE(4350), 1, - aux_sym__literal_repeat1, - STATE(4915), 1, - sym_concatenation, - ACTIONS(10454), 2, + ACTIONS(12253), 1, + sym__comment_word, + ACTIONS(12571), 1, + anon_sym_DOLLAR, + ACTIONS(9013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11372), 2, + ACTIONS(12249), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12251), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4193), 9, + STATE(2782), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262656,46 +289515,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224885] = 18, + [250749] = 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(5246), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10044), 1, + ACTIONS(5248), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10048), 1, + ACTIONS(5254), 1, anon_sym_DQUOTE, - ACTIONS(10052), 1, + ACTIONS(5258), 1, + aux_sym_number_token1, + ACTIONS(5260), 1, + aux_sym_number_token2, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(5264), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5266), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(5268), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10166), 1, + ACTIONS(5274), 1, + sym__brace_start, + ACTIONS(12255), 1, sym_word, - ACTIONS(10172), 1, + ACTIONS(12261), 1, sym__comment_word, - ACTIONS(11376), 1, + ACTIONS(12573), 1, anon_sym_DOLLAR, - ACTIONS(10058), 2, + ACTIONS(5270), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10168), 2, + ACTIONS(12257), 2, sym_test_operator, sym__special_character, - ACTIONS(10170), 3, + ACTIONS(12259), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(889), 9, + STATE(3080), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262705,46 +289564,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224952] = 18, + [250816] = 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(5246), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(5248), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(5254), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(5258), 1, + aux_sym_number_token1, + ACTIONS(5260), 1, + aux_sym_number_token2, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(5264), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5266), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(5268), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(5274), 1, + sym__brace_start, + ACTIONS(12255), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(12261), 1, sym__comment_word, - ACTIONS(11378), 1, + ACTIONS(12575), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(5270), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(12257), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(12259), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(3080), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262754,46 +289613,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225019] = 18, + [250883] = 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(5686), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(5688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(5694), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(5698), 1, + aux_sym_number_token1, + ACTIONS(5700), 1, + aux_sym_number_token2, + ACTIONS(5702), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(5704), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5706), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(5714), 1, + sym__brace_start, + ACTIONS(12263), 1, + sym_word, + ACTIONS(12269), 1, sym__comment_word, - ACTIONS(11380), 1, + ACTIONS(12577), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(5710), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(12265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12267), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(5769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262803,46 +289662,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225086] = 18, + [250950] = 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(5686), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9836), 1, + ACTIONS(5688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9840), 1, + ACTIONS(5694), 1, anon_sym_DQUOTE, - ACTIONS(9844), 1, + ACTIONS(5698), 1, + aux_sym_number_token1, + ACTIONS(5700), 1, + aux_sym_number_token2, + ACTIONS(5702), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(5704), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5706), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(5714), 1, + sym__brace_start, + ACTIONS(12263), 1, sym_word, - ACTIONS(11160), 1, + ACTIONS(12269), 1, sym__comment_word, - ACTIONS(9850), 2, + ACTIONS(12579), 1, + anon_sym_DOLLAR, + ACTIONS(5710), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11156), 2, + ACTIONS(12265), 2, sym_test_operator, sym__special_character, - ACTIONS(11158), 3, + ACTIONS(12267), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1740), 9, + STATE(5769), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262852,46 +289711,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225153] = 18, + [251017] = 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(4911), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(4913), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(4919), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(4923), 1, + aux_sym_number_token1, + ACTIONS(4925), 1, + aux_sym_number_token2, + ACTIONS(4927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(4929), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4931), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(4939), 1, + sym__brace_start, + ACTIONS(12271), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(12277), 1, sym__comment_word, - ACTIONS(11382), 1, + ACTIONS(12581), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(4935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(12273), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(12275), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(2792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262901,46 +289760,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225220] = 18, + [251084] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12583), 1, + aux_sym_concatenation_token1, + ACTIONS(12586), 1, + sym__concat, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [251127] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8114), 1, + ACTIONS(4911), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8116), 1, + ACTIONS(4913), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8122), 1, + ACTIONS(4919), 1, anon_sym_DQUOTE, - ACTIONS(8126), 1, + ACTIONS(4923), 1, aux_sym_number_token1, - ACTIONS(8128), 1, + ACTIONS(4925), 1, aux_sym_number_token2, - ACTIONS(8130), 1, + ACTIONS(4927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8132), 1, + ACTIONS(4929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8134), 1, + ACTIONS(4931), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8146), 1, + ACTIONS(4939), 1, sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(12271), 1, sym_word, - ACTIONS(10100), 1, + ACTIONS(12277), 1, sym__comment_word, - ACTIONS(11384), 1, + ACTIONS(12589), 1, anon_sym_DOLLAR, - ACTIONS(8138), 2, + ACTIONS(4935), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10096), 2, + ACTIONS(12273), 2, sym_test_operator, sym__special_character, - ACTIONS(10098), 3, + ACTIONS(12275), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1172), 9, + STATE(2792), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262950,46 +289846,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225287] = 18, + [251194] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(2318), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2320), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2324), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2338), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(9027), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9029), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9033), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9039), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9041), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(11547), 1, + sym_word, + ACTIONS(11553), 1, sym__comment_word, - ACTIONS(11386), 1, + ACTIONS(12591), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(9043), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(11549), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11551), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1808), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262999,46 +289895,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225354] = 18, + [251261] = 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(5292), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(5300), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(5304), 1, + aux_sym_number_token1, + ACTIONS(5306), 1, + aux_sym_number_token2, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(5310), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5312), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(5320), 1, + sym__brace_start, + ACTIONS(12279), 1, + sym_word, + ACTIONS(12285), 1, sym__comment_word, - ACTIONS(11388), 1, + ACTIONS(12593), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(5316), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(12281), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12283), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(5718), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263048,46 +289944,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225421] = 18, + [251328] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(5294), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(5300), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(5304), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(5306), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(5310), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(5312), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(5320), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(12279), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(12285), 1, sym__comment_word, - ACTIONS(11390), 1, + ACTIONS(12595), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(5316), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(12281), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(12283), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(5718), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263097,46 +289993,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225488] = 18, + [251395] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3508), 1, - anon_sym_DOLLAR, - ACTIONS(3514), 1, + ACTIONS(2318), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(2320), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(2324), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(2338), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(9027), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(9029), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(9033), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(9037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(9039), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(9041), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(11547), 1, + sym_word, + ACTIONS(11553), 1, sym__comment_word, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(12597), 1, + anon_sym_DOLLAR, + ACTIONS(9043), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(11549), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11551), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(1808), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263146,46 +290042,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225555] = 18, + [251462] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(8779), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(8781), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(8799), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(11147), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(11155), 1, sym__comment_word, - ACTIONS(11392), 1, + ACTIONS(12599), 1, anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(11151), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263195,46 +290091,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225622] = 18, + [251529] = 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(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10510), 1, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(11147), 1, + sym_word, + ACTIONS(11155), 1, sym__comment_word, - ACTIONS(11394), 1, + ACTIONS(12601), 1, anon_sym_DOLLAR, - ACTIONS(10496), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10508), 2, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10500), 3, + ACTIONS(11151), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4352), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263244,46 +290140,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225689] = 18, + [251596] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - aux_sym_number_token1, - ACTIONS(1891), 1, - aux_sym_number_token2, - ACTIONS(1895), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, - sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(8779), 1, + aux_sym_number_token1, + ACTIONS(8781), 1, + aux_sym_number_token2, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(8785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(8799), 1, + sym__brace_start, + ACTIONS(11147), 1, sym_word, - ACTIONS(10354), 1, + ACTIONS(11155), 1, sym__comment_word, - ACTIONS(11396), 1, + ACTIONS(12603), 1, anon_sym_DOLLAR, - ACTIONS(8280), 2, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10350), 2, + ACTIONS(11151), 2, sym_test_operator, sym__special_character, - ACTIONS(10352), 3, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263293,46 +290189,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225756] = 18, + [251663] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(8767), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8639), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8641), 1, - anon_sym_DOLLAR, - ACTIONS(8645), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(8649), 1, + ACTIONS(8779), 1, aux_sym_number_token1, - ACTIONS(8651), 1, + ACTIONS(8781), 1, aux_sym_number_token2, - ACTIONS(8653), 1, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8655), 1, + ACTIONS(8785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8657), 1, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(8789), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8665), 1, + ACTIONS(8799), 1, sym__brace_start, - ACTIONS(11272), 1, + ACTIONS(11147), 1, sym_word, - ACTIONS(11280), 1, + ACTIONS(11155), 1, sym__comment_word, - ACTIONS(8661), 2, + ACTIONS(12605), 1, + anon_sym_DOLLAR, + ACTIONS(8791), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11276), 2, + ACTIONS(11151), 2, sym_test_operator, sym__special_character, - ACTIONS(11278), 3, + ACTIONS(11153), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5127), 9, + STATE(4600), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263342,48 +290238,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225823] = 20, - ACTIONS(71), 1, + [251730] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(2568), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(2570), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(2586), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(12161), 1, + sym_word, + ACTIONS(12163), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(12165), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(12171), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(12175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(12177), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(12179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11398), 1, - sym_word, - ACTIONS(11400), 1, - sym__special_character, - ACTIONS(11404), 1, + ACTIONS(12183), 1, + sym__comment_word, + ACTIONS(12607), 1, + anon_sym_DOLLAR, + ACTIONS(12169), 2, sym_test_operator, - STATE(4353), 1, - aux_sym__literal_repeat1, - STATE(4901), 1, - sym_concatenation, - ACTIONS(10508), 2, + sym__special_character, + ACTIONS(12181), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11402), 2, + ACTIONS(12173), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4535), 9, + STATE(1615), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263393,46 +290287,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225894] = 18, + [251797] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10316), 1, - sym_word, - ACTIONS(10318), 1, + ACTIONS(8867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(8869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(8875), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(8879), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(8881), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(8885), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(8887), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(8889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10344), 1, - sym__comment_word, - ACTIONS(10346), 1, + ACTIONS(8899), 1, sym__brace_start, - ACTIONS(11406), 1, + ACTIONS(12287), 1, + sym_word, + ACTIONS(12293), 1, + sym__comment_word, + ACTIONS(12609), 1, anon_sym_DOLLAR, - ACTIONS(10324), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10342), 2, + ACTIONS(8891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10328), 3, + ACTIONS(12289), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12291), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6138), 9, + STATE(5902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263442,46 +290336,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225961] = 18, + [251864] = 18, ACTIONS(3), 1, sym_comment, - 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(9686), 1, + ACTIONS(8867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(8869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(8875), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(8879), 1, + aux_sym_number_token1, + ACTIONS(8881), 1, + aux_sym_number_token2, + ACTIONS(8883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(8885), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8887), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(8889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(8899), 1, + sym__brace_start, + ACTIONS(12287), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(12293), 1, sym__comment_word, - ACTIONS(11408), 1, + ACTIONS(12611), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(8891), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(12289), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(12291), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(5902), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263491,46 +290385,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226028] = 18, + [251931] = 18, ACTIONS(3), 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(9786), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9788), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9792), 1, + ACTIONS(312), 1, + anon_sym_DOLLAR, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(9796), 1, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10132), 1, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(11251), 1, sym_word, - ACTIONS(10140), 1, + ACTIONS(11259), 1, sym__comment_word, - ACTIONS(9802), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10136), 2, + ACTIONS(11255), 2, sym_test_operator, sym__special_character, - ACTIONS(10138), 3, + ACTIONS(11257), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4898), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263540,46 +290434,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226095] = 18, + [251998] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - aux_sym_number_token1, - ACTIONS(1891), 1, - aux_sym_number_token2, - ACTIONS(1895), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1909), 1, - sym__brace_start, - ACTIONS(8264), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8266), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(8274), 1, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(8278), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(11251), 1, sym_word, - ACTIONS(10354), 1, + ACTIONS(11259), 1, sym__comment_word, - ACTIONS(11410), 1, + ACTIONS(12613), 1, anon_sym_DOLLAR, - ACTIONS(8280), 2, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10350), 2, + ACTIONS(11255), 2, sym_test_operator, sym__special_character, - ACTIONS(10352), 3, + ACTIONS(11257), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1309), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263589,46 +290483,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226162] = 18, + [252065] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 1, + ACTIONS(6272), 1, aux_sym_number_token1, - ACTIONS(3018), 1, + ACTIONS(6274), 1, aux_sym_number_token2, - ACTIONS(3022), 1, + ACTIONS(6278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3032), 1, + ACTIONS(6288), 1, sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(10869), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(10871), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(10875), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(10879), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(10881), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(10883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(12295), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(12301), 1, sym__comment_word, - ACTIONS(11412), 1, + ACTIONS(12615), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(10885), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(12297), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(12299), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(3692), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263638,46 +290532,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226229] = 18, + [252132] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(6272), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(6274), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(6278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(6288), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(10869), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(10871), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10875), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(10879), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10881), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10883), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, + ACTIONS(12295), 1, + sym_word, + ACTIONS(12301), 1, sym__comment_word, - ACTIONS(11414), 1, + ACTIONS(12617), 1, anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, + ACTIONS(10885), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10526), 3, + ACTIONS(12297), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12299), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4229), 9, + STATE(3692), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263687,46 +290581,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226296] = 18, + [252199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, - anon_sym_DOLLAR, - ACTIONS(3644), 1, + ACTIONS(6440), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(6442), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(6446), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(6456), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(11831), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(11833), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(11837), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(11841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(11843), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(11845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(12305), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(12311), 1, sym__comment_word, - ACTIONS(9820), 2, + ACTIONS(12619), 1, + anon_sym_DOLLAR, + ACTIONS(11847), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(12307), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(12309), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(6051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263736,46 +290630,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226363] = 18, + [252266] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3474), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(3476), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(3480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(3492), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(11585), 1, + sym_word, + ACTIONS(11587), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(11589), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(11593), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, - sym_word, - ACTIONS(10576), 1, + ACTIONS(11605), 1, sym__comment_word, - ACTIONS(11416), 1, + ACTIONS(12621), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(11591), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(11603), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11595), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(2040), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263785,46 +290679,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226430] = 18, + [252333] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(6440), 1, aux_sym_number_token1, - ACTIONS(3646), 1, + ACTIONS(6442), 1, aux_sym_number_token2, - ACTIONS(3650), 1, + ACTIONS(6446), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3660), 1, + ACTIONS(6456), 1, sym__brace_start, - ACTIONS(9804), 1, + ACTIONS(11831), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9806), 1, + ACTIONS(11833), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9810), 1, + ACTIONS(11837), 1, anon_sym_DQUOTE, - ACTIONS(9814), 1, + ACTIONS(11841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(11843), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(11845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10568), 1, + ACTIONS(12305), 1, sym_word, - ACTIONS(10576), 1, + ACTIONS(12311), 1, sym__comment_word, - ACTIONS(11418), 1, + ACTIONS(12623), 1, anon_sym_DOLLAR, - ACTIONS(9820), 2, + ACTIONS(11847), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, + ACTIONS(12307), 2, sym_test_operator, sym__special_character, - ACTIONS(10574), 3, + ACTIONS(12309), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1924), 9, + STATE(6051), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263834,48 +290728,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226497] = 20, - ACTIONS(71), 1, + [252400] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DOLLAR, - ACTIONS(3952), 1, + ACTIONS(3474), 1, aux_sym_number_token1, - ACTIONS(3954), 1, + ACTIONS(3476), 1, aux_sym_number_token2, - ACTIONS(3958), 1, + ACTIONS(3480), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3968), 1, + ACTIONS(3492), 1, sym__brace_start, - ACTIONS(10490), 1, + ACTIONS(11585), 1, + sym_word, + ACTIONS(11587), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10492), 1, + ACTIONS(11589), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10498), 1, + ACTIONS(11593), 1, anon_sym_DQUOTE, - ACTIONS(10502), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11400), 1, - sym__special_character, - ACTIONS(11420), 1, - sym_word, - ACTIONS(11424), 1, + ACTIONS(11605), 1, + sym__comment_word, + ACTIONS(12625), 1, + anon_sym_DOLLAR, + ACTIONS(11591), 2, sym_test_operator, - STATE(4371), 1, - aux_sym__literal_repeat1, - STATE(4761), 1, - sym_concatenation, - ACTIONS(10508), 2, + sym__special_character, + ACTIONS(11603), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11422), 2, + ACTIONS(11595), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4646), 9, + STATE(2040), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263885,46 +290777,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226568] = 18, + [252467] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(400), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5321), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5327), 1, + ACTIONS(408), 1, anon_sym_DQUOTE, - ACTIONS(5331), 1, + ACTIONS(412), 1, aux_sym_number_token1, - ACTIONS(5333), 1, + ACTIONS(414), 1, aux_sym_number_token2, - ACTIONS(5335), 1, + ACTIONS(416), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5337), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5339), 1, + ACTIONS(420), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(422), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5347), 1, + ACTIONS(432), 1, sym__brace_start, - ACTIONS(11250), 1, + ACTIONS(12627), 1, sym_word, - ACTIONS(11258), 1, - sym__comment_word, - ACTIONS(11426), 1, + ACTIONS(12629), 1, anon_sym_DOLLAR, - ACTIONS(5343), 2, + ACTIONS(12635), 1, + sym__comment_word, + ACTIONS(424), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11254), 2, + ACTIONS(12631), 2, sym_test_operator, sym__special_character, - ACTIONS(11256), 3, + ACTIONS(12633), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5420), 9, + STATE(890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263934,95 +290826,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226635] = 18, + [252534] = 18, ACTIONS(3), 1, sym_comment, - 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(3032), 1, - sym__brace_start, - ACTIONS(9686), 1, + ACTIONS(400), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(408), 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(11134), 1, - sym_word, - ACTIONS(11142), 1, - sym__comment_word, - ACTIONS(9702), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11138), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11140), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1783), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226702] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, + ACTIONS(412), 1, aux_sym_number_token1, - ACTIONS(2809), 1, + ACTIONS(414), 1, aux_sym_number_token2, - ACTIONS(2813), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, - sym__brace_start, - ACTIONS(9930), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, - anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(416), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(418), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(420), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(422), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, + ACTIONS(432), 1, + sym__brace_start, + ACTIONS(12627), 1, sym_word, - ACTIONS(10190), 1, + ACTIONS(12635), 1, sym__comment_word, - ACTIONS(11428), 1, + ACTIONS(12637), 1, anon_sym_DOLLAR, - ACTIONS(9946), 2, + ACTIONS(424), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10186), 2, + ACTIONS(12631), 2, sym_test_operator, sym__special_character, - ACTIONS(10188), 3, + ACTIONS(12633), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264032,46 +290875,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226769] = 18, + [252601] = 18, ACTIONS(3), 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(6414), 1, - sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(316), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(320), 1, + aux_sym_number_token1, + ACTIONS(322), 1, + aux_sym_number_token2, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(340), 1, + sym__brace_start, + ACTIONS(11251), 1, sym_word, - ACTIONS(11436), 1, + ACTIONS(11259), 1, sym__comment_word, - ACTIONS(7524), 2, + ACTIONS(12639), 1, + anon_sym_DOLLAR, + ACTIONS(332), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(11255), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(11257), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(1161), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264081,95 +290924,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226836] = 18, + [252668] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(262), 1, aux_sym_number_token1, - ACTIONS(3516), 1, + ACTIONS(264), 1, aux_sym_number_token2, - ACTIONS(3520), 1, + ACTIONS(268), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3530), 1, + ACTIONS(282), 1, sym__brace_start, - ACTIONS(10514), 1, - sym_word, - ACTIONS(10516), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10518), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10524), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(10528), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, - anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11438), 1, - anon_sym_DOLLAR, - ACTIONS(10522), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10526), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4229), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226903] = 18, - ACTIONS(3), 1, - sym_comment, - 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(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, + ACTIONS(6538), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(11263), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(11271), 1, sym__comment_word, - ACTIONS(11440), 1, + ACTIONS(12641), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(11267), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(11269), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264179,46 +290973,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [226970] = 18, + [252735] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(367), 1, + ACTIONS(5776), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(369), 1, + ACTIONS(5778), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(377), 1, + ACTIONS(5784), 1, anon_sym_DQUOTE, - ACTIONS(381), 1, + ACTIONS(5788), 1, aux_sym_number_token1, - ACTIONS(383), 1, + ACTIONS(5790), 1, aux_sym_number_token2, - ACTIONS(385), 1, + ACTIONS(5792), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(387), 1, + ACTIONS(5794), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(391), 1, + ACTIONS(5796), 1, + anon_sym_BQUOTE, + ACTIONS(5798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(397), 1, + ACTIONS(5804), 1, sym__brace_start, - ACTIONS(5375), 1, - anon_sym_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(12317), 1, sym_word, - ACTIONS(9680), 1, + ACTIONS(12323), 1, sym__comment_word, - ACTIONS(11442), 1, + ACTIONS(12643), 1, anon_sym_DOLLAR, - ACTIONS(393), 2, + ACTIONS(5800), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 2, + ACTIONS(12319), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(12321), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2517), 9, + STATE(3306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264228,46 +291022,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227037] = 18, + [252802] = 18, ACTIONS(3), 1, sym_comment, - 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(9686), 1, + ACTIONS(5776), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9688), 1, + ACTIONS(5778), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9692), 1, + ACTIONS(5784), 1, anon_sym_DQUOTE, - ACTIONS(9696), 1, + ACTIONS(5788), 1, + aux_sym_number_token1, + ACTIONS(5790), 1, + aux_sym_number_token2, + ACTIONS(5792), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(5794), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5796), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(5804), 1, + sym__brace_start, + ACTIONS(12317), 1, sym_word, - ACTIONS(11142), 1, + ACTIONS(12323), 1, sym__comment_word, - ACTIONS(11444), 1, + ACTIONS(12645), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(5800), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11138), 2, + ACTIONS(12319), 2, sym_test_operator, sym__special_character, - ACTIONS(11140), 3, + ACTIONS(12321), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1783), 9, + STATE(3306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264277,48 +291071,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227104] = 20, + [252869] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(11203), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(11211), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(11215), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(11217), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(11221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, + ACTIONS(11231), 1, sym__brace_start, - ACTIONS(10962), 1, + ACTIONS(11249), 1, anon_sym_DOLLAR, - ACTIONS(10968), 1, + ACTIONS(12383), 1, sym__special_character, - ACTIONS(11446), 1, + ACTIONS(12647), 1, sym_word, - ACTIONS(11450), 1, + ACTIONS(12651), 1, sym_test_operator, - STATE(6112), 1, + STATE(6689), 1, aux_sym__literal_repeat1, - STATE(6331), 1, + STATE(6863), 1, sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(11227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11448), 2, + ACTIONS(12649), 2, sym_raw_string, sym_ansi_c_string, - STATE(6103), 9, + STATE(6647), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264328,52 +291122,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227175] = 22, + [252940] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, + ACTIONS(12455), 1, anon_sym_LPAREN, - ACTIONS(10642), 1, + ACTIONS(12457), 1, aux_sym__c_word_token1, - ACTIONS(10644), 1, + ACTIONS(12459), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, + ACTIONS(12463), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(12465), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(12467), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(12469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(12471), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(12473), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(12475), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(4149), 1, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(4613), 1, sym__c_terminator, - STATE(6267), 1, + STATE(6780), 1, sym__c_expression, - STATE(6395), 1, + STATE(7000), 1, sym__c_variable_assignment, - STATE(7360), 1, + STATE(7605), 1, sym__for_body, - ACTIONS(10636), 2, + ACTIONS(12451), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(10638), 2, + ACTIONS(12453), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2902), 7, + STATE(3182), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -264381,95 +291175,46 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227250] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7828), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7832), 1, - anon_sym_DOLLAR, - 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(7860), 1, - sym__brace_start, - ACTIONS(11452), 1, - sym_word, - ACTIONS(11458), 1, - sym__comment_word, - ACTIONS(7852), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11454), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11456), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2468), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [227317] = 18, + [253015] = 18, ACTIONS(3), 1, sym_comment, - 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(1155), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, + ACTIONS(1163), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, - anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(1169), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(11263), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(11271), 1, sym__comment_word, - ACTIONS(11460), 1, + ACTIONS(12653), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(1171), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(11267), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(11269), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(2562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264479,95 +291224,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227384] = 18, + [253082] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, - aux_sym_number_token1, - ACTIONS(2297), 1, - aux_sym_number_token2, - ACTIONS(2301), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2313), 1, - sym__brace_start, - ACTIONS(10142), 1, - sym_word, - ACTIONS(10144), 1, + ACTIONS(6072), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10146), 1, + ACTIONS(6074), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10150), 1, + ACTIONS(6080), 1, anon_sym_DQUOTE, - ACTIONS(10154), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, - anon_sym_BQUOTE, - ACTIONS(10158), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10162), 1, - sym__comment_word, - ACTIONS(11462), 1, - anon_sym_DOLLAR, - ACTIONS(10148), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10160), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10152), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1304), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [227451] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, + ACTIONS(6084), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(6086), 1, aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, - anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(6088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6092), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(6094), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(6100), 1, + sym__brace_start, + ACTIONS(12327), 1, sym_word, - ACTIONS(11056), 1, + ACTIONS(12333), 1, sym__comment_word, - ACTIONS(11464), 1, + ACTIONS(12655), 1, anon_sym_DOLLAR, - ACTIONS(9990), 2, + ACTIONS(6096), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11052), 2, + ACTIONS(12329), 2, sym_test_operator, sym__special_character, - ACTIONS(11054), 3, + ACTIONS(12331), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1154), 9, + STATE(5940), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264577,46 +291273,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227518] = 18, + [253149] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, - aux_sym_number_token1, - ACTIONS(2809), 1, - aux_sym_number_token2, - ACTIONS(2813), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2823), 1, - sym__brace_start, - ACTIONS(9930), 1, + ACTIONS(6072), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9932), 1, + ACTIONS(6074), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9936), 1, + ACTIONS(6080), 1, anon_sym_DQUOTE, - ACTIONS(9940), 1, + ACTIONS(6084), 1, + aux_sym_number_token1, + ACTIONS(6086), 1, + aux_sym_number_token2, + ACTIONS(6088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(6090), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6092), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(6094), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10184), 1, + ACTIONS(6100), 1, + sym__brace_start, + ACTIONS(12327), 1, sym_word, - ACTIONS(10190), 1, + ACTIONS(12333), 1, sym__comment_word, - ACTIONS(11466), 1, + ACTIONS(12657), 1, anon_sym_DOLLAR, - ACTIONS(9946), 2, + ACTIONS(6096), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10186), 2, + ACTIONS(12329), 2, sym_test_operator, sym__special_character, - ACTIONS(10188), 3, + ACTIONS(12331), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1467), 9, + STATE(5940), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264626,46 +291322,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227585] = 18, + [253216] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 1, - aux_sym_number_token1, - ACTIONS(6398), 1, - aux_sym_number_token2, - ACTIONS(6402), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, - sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(5386), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(5388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(5394), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(5398), 1, + aux_sym_number_token1, + ACTIONS(5400), 1, + aux_sym_number_token2, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(5404), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5406), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(5414), 1, + sym__brace_start, + ACTIONS(12335), 1, sym_word, - ACTIONS(11436), 1, + ACTIONS(12341), 1, sym__comment_word, - ACTIONS(11468), 1, + ACTIONS(12659), 1, anon_sym_DOLLAR, - ACTIONS(7524), 2, + ACTIONS(5410), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(12337), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(12339), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(2918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264675,46 +291371,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227652] = 18, + [253283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, + ACTIONS(5386), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7868), 1, + ACTIONS(5388), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7874), 1, + ACTIONS(5394), 1, anon_sym_DQUOTE, - ACTIONS(7878), 1, + ACTIONS(5398), 1, aux_sym_number_token1, - ACTIONS(7880), 1, + ACTIONS(5400), 1, aux_sym_number_token2, - ACTIONS(7882), 1, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7884), 1, + ACTIONS(5404), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7886), 1, + ACTIONS(5406), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7898), 1, + ACTIONS(5414), 1, sym__brace_start, - ACTIONS(10846), 1, + ACTIONS(12335), 1, sym_word, - ACTIONS(10852), 1, + ACTIONS(12341), 1, sym__comment_word, - ACTIONS(11470), 1, + ACTIONS(12661), 1, anon_sym_DOLLAR, - ACTIONS(7890), 2, + ACTIONS(5410), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10848), 2, + ACTIONS(12337), 2, sym_test_operator, sym__special_character, - ACTIONS(10850), 3, + ACTIONS(12339), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1527), 9, + STATE(2918), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264724,46 +291420,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227719] = 18, + [253350] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6396), 1, + ACTIONS(1510), 1, aux_sym_number_token1, - ACTIONS(6398), 1, + ACTIONS(1512), 1, aux_sym_number_token2, - ACTIONS(6402), 1, + ACTIONS(1516), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6414), 1, + ACTIONS(1528), 1, sym__brace_start, - ACTIONS(7508), 1, + ACTIONS(10993), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7510), 1, + ACTIONS(10995), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7514), 1, + ACTIONS(10999), 1, anon_sym_DQUOTE, - ACTIONS(7518), 1, + ACTIONS(11003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(11005), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(11007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11430), 1, + ACTIONS(11621), 1, sym_word, - ACTIONS(11436), 1, + ACTIONS(11627), 1, sym__comment_word, - ACTIONS(11472), 1, + ACTIONS(12663), 1, anon_sym_DOLLAR, - ACTIONS(7524), 2, + ACTIONS(11009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11432), 2, + ACTIONS(11623), 2, sym_test_operator, sym__special_character, - ACTIONS(11434), 3, + ACTIONS(11625), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6447), 9, + STATE(1323), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264773,46 +291469,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227786] = 18, + [253417] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(1510), 1, + aux_sym_number_token1, + ACTIONS(1512), 1, + aux_sym_number_token2, + ACTIONS(1516), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1528), 1, + sym__brace_start, + ACTIONS(10993), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, + ACTIONS(10995), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5019), 1, + ACTIONS(10999), 1, anon_sym_DQUOTE, - ACTIONS(5023), 1, - aux_sym_number_token1, - ACTIONS(5025), 1, - aux_sym_number_token2, - ACTIONS(5027), 1, + ACTIONS(11003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(11005), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(11007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, - sym__brace_start, - ACTIONS(10356), 1, + ACTIONS(11621), 1, sym_word, - ACTIONS(10364), 1, + ACTIONS(11627), 1, sym__comment_word, - ACTIONS(11474), 1, + ACTIONS(12665), 1, anon_sym_DOLLAR, - ACTIONS(5035), 2, + ACTIONS(11009), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(11623), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(11625), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2834), 9, + STATE(1323), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264822,46 +291518,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227853] = 18, + [253484] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(5856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(5858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4807), 1, - anon_sym_DOLLAR, - ACTIONS(4811), 1, + ACTIONS(5864), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(5868), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(5870), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(5872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(5874), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(5876), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(5878), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, + ACTIONS(5884), 1, sym__brace_start, - ACTIONS(11476), 1, + ACTIONS(12343), 1, sym_word, - ACTIONS(11482), 1, + ACTIONS(12349), 1, sym__comment_word, - ACTIONS(4827), 2, + ACTIONS(12667), 1, + anon_sym_DOLLAR, + ACTIONS(5880), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11478), 2, + ACTIONS(12345), 2, sym_test_operator, sym__special_character, - ACTIONS(11480), 3, + ACTIONS(12347), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2780), 9, + STATE(5766), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264871,46 +291567,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227920] = 18, + [253551] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(5856), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(5858), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7836), 1, + ACTIONS(5864), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(5868), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(5870), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(5872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(5874), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, + ACTIONS(5876), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(5878), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(5884), 1, sym__brace_start, - ACTIONS(11452), 1, + ACTIONS(12343), 1, sym_word, - ACTIONS(11458), 1, + ACTIONS(12349), 1, sym__comment_word, - ACTIONS(11484), 1, + ACTIONS(12669), 1, anon_sym_DOLLAR, - ACTIONS(7852), 2, + ACTIONS(5880), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11454), 2, + ACTIONS(12345), 2, sym_test_operator, sym__special_character, - ACTIONS(11456), 3, + ACTIONS(12347), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(5766), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264920,46 +291616,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227987] = 18, + [253618] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7828), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7830), 1, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7836), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(7840), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(7842), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(7844), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7848), 1, - anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(543), 1, sym__brace_start, - ACTIONS(11452), 1, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, sym_word, - ACTIONS(11458), 1, + ACTIONS(10569), 1, sym__comment_word, - ACTIONS(11486), 1, + ACTIONS(12671), 1, anon_sym_DOLLAR, - ACTIONS(7852), 2, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11454), 2, + ACTIONS(10573), 2, sym_test_operator, sym__special_character, - ACTIONS(11456), 3, + ACTIONS(10571), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2468), 9, + STATE(2884), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264969,46 +291665,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228054] = 18, - ACTIONS(3), 1, + [253685] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(445), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8811), 1, + sym__special_character, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(459), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(11488), 1, + ACTIONS(12673), 1, sym_word, - ACTIONS(11490), 1, - anon_sym_DOLLAR, - ACTIONS(11496), 1, - sym__comment_word, - ACTIONS(469), 2, + ACTIONS(12677), 1, + sym_test_operator, + STATE(1947), 1, + aux_sym__literal_repeat1, + STATE(2259), 1, + sym_concatenation, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11492), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11494), 3, - sym__bare_dollar, + ACTIONS(12675), 2, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(1864), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265018,46 +291716,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228121] = 18, + [253756] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8068), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8070), 1, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8076), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(8084), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, - anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, + ACTIONS(543), 1, sym__brace_start, - ACTIONS(10122), 1, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, sym_word, - ACTIONS(10130), 1, + ACTIONS(10569), 1, sym__comment_word, - ACTIONS(11498), 1, + ACTIONS(12679), 1, anon_sym_DOLLAR, - ACTIONS(8092), 2, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10126), 2, + ACTIONS(10573), 2, sym_test_operator, sym__special_character, - ACTIONS(10128), 3, + ACTIONS(10571), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5281), 9, + STATE(2884), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265067,46 +291765,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228188] = 18, - ACTIONS(3), 1, + [253823] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5220), 1, + ACTIONS(8809), 1, anon_sym_DOLLAR, - ACTIONS(5224), 1, + ACTIONS(8811), 1, + sym__special_character, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(12681), 1, sym_word, - ACTIONS(11506), 1, - sym__comment_word, - ACTIONS(5240), 2, + ACTIONS(12685), 1, + sym_test_operator, + STATE(2017), 1, + aux_sym__literal_repeat1, + STATE(2214), 1, + sym_concatenation, + ACTIONS(8829), 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(12683), 2, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(1874), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265116,46 +291816,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228255] = 18, + [253894] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(308), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(310), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(320), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(322), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(324), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(326), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(328), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(10920), 1, + ACTIONS(11169), 1, sym_word, - ACTIONS(10926), 1, + ACTIONS(11177), 1, sym__comment_word, - ACTIONS(11508), 1, + ACTIONS(12687), 1, anon_sym_DOLLAR, - ACTIONS(332), 2, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10922), 2, + ACTIONS(11173), 2, sym_test_operator, sym__special_character, - ACTIONS(10924), 3, + ACTIONS(11175), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(997), 9, + STATE(1803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265165,46 +291865,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228322] = 18, - ACTIONS(3), 1, + [253961] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(445), 1, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1651), 1, + aux_sym_number_token1, + ACTIONS(1653), 1, + aux_sym_number_token2, + ACTIONS(1657), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(457), 1, - aux_sym_number_token1, - ACTIONS(459), 1, - aux_sym_number_token2, - ACTIONS(461), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(463), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(465), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(467), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, - sym__brace_start, - ACTIONS(11488), 1, + ACTIONS(11031), 1, + sym__special_character, + ACTIONS(12689), 1, sym_word, - ACTIONS(11496), 1, - sym__comment_word, - ACTIONS(11510), 1, - anon_sym_DOLLAR, - ACTIONS(469), 2, + ACTIONS(12693), 1, + sym_test_operator, + STATE(1475), 1, + aux_sym__literal_repeat1, + STATE(1758), 1, + sym_concatenation, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11492), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11494), 3, - sym__bare_dollar, + ACTIONS(12691), 2, sym_raw_string, sym_ansi_c_string, - STATE(853), 9, + STATE(1430), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265214,46 +291916,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228389] = 18, - ACTIONS(3), 1, + [254032] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(1645), 1, + anon_sym_DOLLAR, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(9648), 1, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, + ACTIONS(11031), 1, + sym__special_character, + ACTIONS(12695), 1, sym_word, - ACTIONS(10942), 1, - sym__comment_word, - ACTIONS(11512), 1, - anon_sym_DOLLAR, - ACTIONS(9664), 2, + ACTIONS(12699), 1, + sym_test_operator, + STATE(1479), 1, + aux_sym__literal_repeat1, + STATE(1816), 1, + sym_concatenation, + ACTIONS(10547), 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(12697), 2, sym_raw_string, sym_ansi_c_string, - STATE(1249), 9, + STATE(1432), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265263,46 +291967,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228456] = 18, - ACTIONS(3), 1, + [254103] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(11203), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4811), 1, + ACTIONS(11211), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(11215), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(11217), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(11221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, + ACTIONS(11231), 1, sym__brace_start, - ACTIONS(11476), 1, - sym_word, - ACTIONS(11482), 1, - sym__comment_word, - ACTIONS(11514), 1, + ACTIONS(11249), 1, anon_sym_DOLLAR, - ACTIONS(4827), 2, + ACTIONS(12383), 1, + sym__special_character, + ACTIONS(12701), 1, + sym_word, + ACTIONS(12705), 1, + sym_test_operator, + STATE(6694), 1, + aux_sym__literal_repeat1, + STATE(6935), 1, + sym_concatenation, + ACTIONS(11227), 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(12703), 2, sym_raw_string, sym_ansi_c_string, - STATE(2780), 9, + STATE(6645), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265312,97 +292018,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228523] = 18, + [254174] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4805), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4811), 1, + ACTIONS(12455), 1, + anon_sym_LPAREN, + ACTIONS(12457), 1, + aux_sym__c_word_token1, + ACTIONS(12459), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12461), 1, + anon_sym_DOLLAR, + ACTIONS(12463), 1, anon_sym_DQUOTE, - ACTIONS(4815), 1, + ACTIONS(12465), 1, aux_sym_number_token1, - ACTIONS(4817), 1, + ACTIONS(12467), 1, aux_sym_number_token2, - ACTIONS(4819), 1, + ACTIONS(12469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4821), 1, + ACTIONS(12471), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4823), 1, + ACTIONS(12473), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(12475), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, - sym__brace_start, - ACTIONS(11476), 1, - sym_word, - ACTIONS(11482), 1, - sym__comment_word, - ACTIONS(11516), 1, - anon_sym_DOLLAR, - ACTIONS(4827), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11478), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11480), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2780), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(4613), 1, + sym__c_terminator, + STATE(6780), 1, + sym__c_expression, + STATE(7000), 1, + sym__c_variable_assignment, + STATE(7779), 1, + sym__for_body, + ACTIONS(12451), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(12453), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3182), 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, - [228590] = 20, - ACTIONS(71), 1, + [254249] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(11518), 1, + ACTIONS(11169), 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(11177), 1, + sym__comment_word, + ACTIONS(12707), 1, + anon_sym_DOLLAR, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11520), 2, + ACTIONS(11173), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11175), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1669), 9, + STATE(1803), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265412,46 +292120,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228661] = 18, + [254316] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(8603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(8605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4327), 1, - anon_sym_DOLLAR, - ACTIONS(4331), 1, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(8615), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(8617), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(8619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(8623), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, + ACTIONS(8635), 1, sym__brace_start, - ACTIONS(11524), 1, + ACTIONS(12351), 1, sym_word, - ACTIONS(11530), 1, + ACTIONS(12357), 1, sym__comment_word, - ACTIONS(4347), 2, + ACTIONS(12709), 1, + anon_sym_DOLLAR, + ACTIONS(8627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11526), 2, + ACTIONS(12353), 2, sym_test_operator, sym__special_character, - ACTIONS(11528), 3, + ACTIONS(12355), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(1340), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265461,48 +292169,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228728] = 20, - ACTIONS(71), 1, + [254383] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(45), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - sym__special_character, - ACTIONS(8308), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(11532), 1, + ACTIONS(11987), 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(11995), 1, + sym__comment_word, + ACTIONS(12711), 1, + anon_sym_DOLLAR, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11534), 2, + ACTIONS(11991), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11993), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1676), 9, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265512,46 +292218,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228799] = 18, + [254450] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(8603), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, + ACTIONS(8605), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4839), 1, - anon_sym_DOLLAR, - ACTIONS(4843), 1, + ACTIONS(8611), 1, anon_sym_DQUOTE, - ACTIONS(4847), 1, + ACTIONS(8615), 1, aux_sym_number_token1, - ACTIONS(4849), 1, + ACTIONS(8617), 1, aux_sym_number_token2, - ACTIONS(4851), 1, + ACTIONS(8619), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4853), 1, + ACTIONS(8621), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4855), 1, + ACTIONS(8623), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, + ACTIONS(8635), 1, sym__brace_start, - ACTIONS(11538), 1, + ACTIONS(12351), 1, sym_word, - ACTIONS(11544), 1, + ACTIONS(12357), 1, sym__comment_word, - ACTIONS(4859), 2, + ACTIONS(12713), 1, + anon_sym_DOLLAR, + ACTIONS(8627), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11540), 2, + ACTIONS(12353), 2, sym_test_operator, sym__special_character, - ACTIONS(11542), 3, + ACTIONS(12355), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5179), 9, + STATE(1340), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265561,48 +292267,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228866] = 20, - ACTIONS(71), 1, + [254517] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1695), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1697), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1701), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1715), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, - sym__special_character, - ACTIONS(9980), 1, + ACTIONS(9203), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9209), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11546), 1, + ACTIONS(12359), 1, sym_word, - ACTIONS(11550), 1, - sym_test_operator, - STATE(1463), 1, - aux_sym__literal_repeat1, - STATE(1628), 1, - sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(12365), 1, + sym__comment_word, + ACTIONS(12715), 1, + anon_sym_DOLLAR, + ACTIONS(9213), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11548), 2, + ACTIONS(12361), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12363), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1280), 9, + STATE(1371), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265612,48 +292316,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228937] = 20, - ACTIONS(71), 1, + [254584] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(1695), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1697), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1701), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1715), 1, sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9197), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, + ACTIONS(9199), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9978), 1, - sym__special_character, - ACTIONS(9980), 1, + ACTIONS(9203), 1, anon_sym_DQUOTE, - ACTIONS(9984), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(9209), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(9211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11552), 1, + ACTIONS(12359), 1, sym_word, - ACTIONS(11556), 1, - sym_test_operator, - STATE(1387), 1, - aux_sym__literal_repeat1, - STATE(1635), 1, - sym_concatenation, - ACTIONS(9990), 2, + ACTIONS(12365), 1, + sym__comment_word, + ACTIONS(12717), 1, + anon_sym_DOLLAR, + ACTIONS(9213), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11554), 2, + ACTIONS(12361), 2, + sym_test_operator, + sym__special_character, + ACTIONS(12363), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1282), 9, + STATE(1371), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265663,46 +292365,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229008] = 18, + [254651] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7940), 1, - anon_sym_DOLLAR, - ACTIONS(7944), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, - anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(543), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(10569), 1, sym__comment_word, - ACTIONS(7960), 2, + ACTIONS(12719), 1, + anon_sym_DOLLAR, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(10573), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(10571), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(2884), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265712,46 +292414,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229075] = 18, + [254718] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(2360), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(2374), 1, sym__brace_start, - ACTIONS(10202), 1, - sym_word, - ACTIONS(10204), 1, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, + ACTIONS(11279), 1, + sym_word, + ACTIONS(11287), 1, sym__comment_word, - ACTIONS(11558), 1, + ACTIONS(12721), 1, anon_sym_DOLLAR, - ACTIONS(10208), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10220), 2, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, + ACTIONS(11283), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11285), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(1879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265761,48 +292463,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229142] = 20, + [254785] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(10332), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(10334), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10968), 1, + ACTIONS(9179), 1, sym__special_character, - ACTIONS(11560), 1, + ACTIONS(12723), 1, sym_word, - ACTIONS(11564), 1, + ACTIONS(12727), 1, sym_test_operator, - STATE(6117), 1, + STATE(1947), 1, aux_sym__literal_repeat1, - STATE(6359), 1, + STATE(2259), 1, sym_concatenation, - ACTIONS(10342), 2, + ACTIONS(8829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11562), 2, + ACTIONS(12725), 2, sym_raw_string, sym_ansi_c_string, - STATE(6093), 9, + STATE(2631), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265812,99 +292514,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229213] = 22, + [254856] = 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, - anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(2354), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(2356), 1, aux_sym_number_token2, - ACTIONS(10654), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(2360), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5216), 1, + ACTIONS(2374), 1, + sym__brace_start, + ACTIONS(8701), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(8703), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5224), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, - aux_sym_number_token1, - ACTIONS(5230), 1, - aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, - sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(11279), 1, sym_word, - ACTIONS(11506), 1, + ACTIONS(11287), 1, sym__comment_word, - ACTIONS(11566), 1, + ACTIONS(12729), 1, anon_sym_DOLLAR, - ACTIONS(5240), 2, + ACTIONS(8717), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11502), 2, + ACTIONS(11283), 2, sym_test_operator, sym__special_character, - ACTIONS(11504), 3, + ACTIONS(11285), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(1879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265914,46 +292563,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229355] = 18, - ACTIONS(3), 1, + [254923] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(8805), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5218), 1, + ACTIONS(8807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5224), 1, + ACTIONS(8809), 1, + anon_sym_DOLLAR, + ACTIONS(8813), 1, anon_sym_DQUOTE, - ACTIONS(5228), 1, + ACTIONS(8817), 1, aux_sym_number_token1, - ACTIONS(5230), 1, + ACTIONS(8819), 1, aux_sym_number_token2, - ACTIONS(5232), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5234), 1, + ACTIONS(8823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5236), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5244), 1, + ACTIONS(8837), 1, sym__brace_start, - ACTIONS(11500), 1, + ACTIONS(9179), 1, + sym__special_character, + ACTIONS(12731), 1, sym_word, - ACTIONS(11506), 1, - sym__comment_word, - ACTIONS(11568), 1, - anon_sym_DOLLAR, - ACTIONS(5240), 2, + ACTIONS(12735), 1, + sym_test_operator, + STATE(2017), 1, + aux_sym__literal_repeat1, + STATE(2214), 1, + sym_concatenation, + ACTIONS(8829), 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(12733), 2, sym_raw_string, sym_ansi_c_string, - STATE(5328), 9, + STATE(2635), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265963,46 +292614,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229422] = 18, + [254994] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3641), 1, aux_sym_number_token1, - ACTIONS(3131), 1, + ACTIONS(3643), 1, aux_sym_number_token2, - ACTIONS(3135), 1, + ACTIONS(3647), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(3659), 1, sym__brace_start, - ACTIONS(10202), 1, + ACTIONS(11291), 1, sym_word, - ACTIONS(10204), 1, + ACTIONS(11293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10206), 1, + ACTIONS(11295), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10210), 1, + ACTIONS(11301), 1, anon_sym_DQUOTE, - ACTIONS(10214), 1, + ACTIONS(11305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(11307), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(11309), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, + ACTIONS(11313), 1, sym__comment_word, - ACTIONS(11570), 1, + ACTIONS(12737), 1, anon_sym_DOLLAR, - ACTIONS(10208), 2, + ACTIONS(11299), 2, sym_test_operator, sym__special_character, - ACTIONS(10220), 2, + ACTIONS(11311), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10212), 3, + ACTIONS(11303), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4466), 9, + STATE(2095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266012,95 +292663,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229489] = 18, - ACTIONS(3), 1, + [255061] = 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(1645), 1, anon_sym_DOLLAR, - ACTIONS(8076), 1, - anon_sym_DQUOTE, - ACTIONS(8080), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(8082), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(8084), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8086), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8088), 1, - anon_sym_BQUOTE, - ACTIONS(8090), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8100), 1, + ACTIONS(1669), 1, sym__brace_start, - ACTIONS(10122), 1, - sym_word, - ACTIONS(10130), 1, - sym__comment_word, - ACTIONS(8092), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10126), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10128), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5281), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [229556] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 1, + ACTIONS(10531), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(10533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4331), 1, + ACTIONS(10537), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, - aux_sym_number_token1, - ACTIONS(4337), 1, - aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, - sym__brace_start, - ACTIONS(11524), 1, + ACTIONS(11045), 1, + sym__special_character, + ACTIONS(12739), 1, sym_word, - ACTIONS(11530), 1, - sym__comment_word, - ACTIONS(11572), 1, - anon_sym_DOLLAR, - ACTIONS(4347), 2, + ACTIONS(12743), 1, + sym_test_operator, + STATE(1475), 1, + aux_sym__literal_repeat1, + STATE(1758), 1, + sym_concatenation, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11526), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11528), 3, - sym__bare_dollar, + ACTIONS(12741), 2, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(2192), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266110,48 +292714,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229623] = 20, + [255132] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(1645), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, - anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(1653), 1, aux_sym_number_token2, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(1669), 1, + sym__brace_start, + ACTIONS(10531), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10533), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10537), 1, + anon_sym_DQUOTE, + ACTIONS(10541), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8344), 1, + ACTIONS(11045), 1, sym__special_character, - ACTIONS(11574), 1, + ACTIONS(12745), 1, sym_word, - ACTIONS(11578), 1, + ACTIONS(12749), 1, sym_test_operator, - STATE(1834), 1, + STATE(1479), 1, aux_sym__literal_repeat1, - STATE(2055), 1, + STATE(1816), 1, sym_concatenation, - ACTIONS(8324), 2, + ACTIONS(10547), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11576), 2, + ACTIONS(12747), 2, sym_raw_string, sym_ansi_c_string, - STATE(1374), 9, + STATE(2194), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266161,46 +292765,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229694] = 18, + [255203] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4325), 1, + ACTIONS(515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4331), 1, + ACTIONS(523), 1, anon_sym_DQUOTE, - ACTIONS(4335), 1, + ACTIONS(527), 1, aux_sym_number_token1, - ACTIONS(4337), 1, + ACTIONS(529), 1, aux_sym_number_token2, - ACTIONS(4339), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4341), 1, + ACTIONS(533), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4343), 1, - anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4351), 1, + ACTIONS(543), 1, sym__brace_start, - ACTIONS(11524), 1, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(10565), 1, sym_word, - ACTIONS(11530), 1, + ACTIONS(10569), 1, sym__comment_word, - ACTIONS(11580), 1, + ACTIONS(12751), 1, anon_sym_DOLLAR, - ACTIONS(4347), 2, + ACTIONS(539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11526), 2, + ACTIONS(10573), 2, sym_test_operator, sym__special_character, - ACTIONS(11528), 3, + ACTIONS(10571), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2521), 9, + STATE(2884), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266210,46 +292814,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229761] = 18, - ACTIONS(3), 1, + [255270] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(11203), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5099), 1, + ACTIONS(11211), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(11215), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(11217), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(11221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, + ACTIONS(11231), 1, sym__brace_start, - ACTIONS(10086), 1, - sym_word, - ACTIONS(10092), 1, - sym__comment_word, - ACTIONS(11582), 1, + ACTIONS(11249), 1, anon_sym_DOLLAR, - ACTIONS(5115), 2, + ACTIONS(12383), 1, + sym__special_character, + ACTIONS(12753), 1, + sym_word, + ACTIONS(12757), 1, + sym_test_operator, + STATE(6685), 1, + aux_sym__literal_repeat1, + STATE(6923), 1, + sym_concatenation, + ACTIONS(11227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10088), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10090), 3, - sym__bare_dollar, + ACTIONS(12755), 2, sym_raw_string, sym_ansi_c_string, - STATE(5342), 9, + STATE(6655), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266259,46 +292865,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229828] = 18, + [255341] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(12455), 1, + anon_sym_LPAREN, + ACTIONS(12457), 1, + aux_sym__c_word_token1, + ACTIONS(12459), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12461), 1, + anon_sym_DOLLAR, + ACTIONS(12463), 1, + anon_sym_DQUOTE, + ACTIONS(12465), 1, aux_sym_number_token1, - ACTIONS(264), 1, + ACTIONS(12467), 1, aux_sym_number_token2, - ACTIONS(268), 1, + ACTIONS(12469), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12471), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(12473), 1, + anon_sym_BQUOTE, + ACTIONS(12475), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(4613), 1, + sym__c_terminator, + STATE(6780), 1, + sym__c_expression, + STATE(7000), 1, + sym__c_variable_assignment, + STATE(7925), 1, + sym__for_body, + ACTIONS(12451), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(12453), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3182), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [255416] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3641), 1, + aux_sym_number_token1, + ACTIONS(3643), 1, + aux_sym_number_token2, + ACTIONS(3647), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3659), 1, sym__brace_start, - ACTIONS(1109), 1, + ACTIONS(11291), 1, + sym_word, + ACTIONS(11293), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1111), 1, + ACTIONS(11295), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1117), 1, + ACTIONS(11301), 1, anon_sym_DQUOTE, - ACTIONS(1121), 1, + ACTIONS(11305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(11307), 1, anon_sym_BQUOTE, - ACTIONS(10480), 1, - sym_word, - ACTIONS(10486), 1, + ACTIONS(11309), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11313), 1, sym__comment_word, - ACTIONS(11584), 1, + ACTIONS(12759), 1, anon_sym_DOLLAR, - ACTIONS(1125), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(11299), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(11311), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11303), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2224), 9, + STATE(2095), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266308,46 +292967,46 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229895] = 18, + [255483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 1, + ACTIONS(400), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7938), 1, + ACTIONS(402), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7944), 1, + ACTIONS(404), 1, + anon_sym_DOLLAR, + ACTIONS(408), 1, anon_sym_DQUOTE, - ACTIONS(7948), 1, + ACTIONS(412), 1, aux_sym_number_token1, - ACTIONS(7950), 1, + ACTIONS(414), 1, aux_sym_number_token2, - ACTIONS(7952), 1, + ACTIONS(416), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7954), 1, + ACTIONS(418), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7956), 1, + ACTIONS(420), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(422), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7968), 1, + ACTIONS(432), 1, sym__brace_start, - ACTIONS(10076), 1, + ACTIONS(12627), 1, sym_word, - ACTIONS(10084), 1, + ACTIONS(12635), 1, sym__comment_word, - ACTIONS(11586), 1, - anon_sym_DOLLAR, - ACTIONS(7960), 2, + ACTIONS(424), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10080), 2, + ACTIONS(12631), 2, sym_test_operator, sym__special_character, - ACTIONS(10082), 3, + ACTIONS(12633), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4271), 9, + STATE(890), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266357,897 +293016,1501 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229962] = 18, + [255550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255730] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4945), 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_LT_LT_LT, + [255772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [255844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [255880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [255952] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 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_LT_LT_LT, + [255994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12761), 1, + aux_sym_concatenation_token1, + ACTIONS(12763), 1, + sym__concat, + STATE(4751), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [256036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [256072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [256108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [256144] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12773), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12775), 1, + anon_sym_LT_LT_LT, + ACTIONS(12778), 1, + sym_file_descriptor, + ACTIONS(12770), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4563), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12767), 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(12765), 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, + [256190] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12781), 1, + aux_sym_concatenation_token1, + ACTIONS(12783), 1, + sym__concat, + STATE(4767), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [256232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [256268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [256304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [256340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [256376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [256412] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11565), 1, + aux_sym_concatenation_token1, + ACTIONS(12785), 1, + sym__concat, + STATE(4585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [256454] = 3, ACTIONS(3), 1, sym_comment, - 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(5647), 1, - sym__brace_start, - ACTIONS(9874), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9876), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9880), 1, - anon_sym_DQUOTE, - ACTIONS(9884), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(1340), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, - ACTIONS(9888), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10470), 1, - sym_word, - ACTIONS(10478), 1, - sym__comment_word, - ACTIONS(9890), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10474), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10476), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3342), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230029] = 20, - ACTIONS(71), 1, + [256490] = 7, + ACTIONS(3), 1, sym_comment, - 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(8332), 1, - sym__brace_start, - ACTIONS(8344), 1, - sym__special_character, - ACTIONS(11588), 1, - sym_word, - ACTIONS(11592), 1, - sym_test_operator, - STATE(1905), 1, - aux_sym__literal_repeat1, - STATE(2210), 1, - sym_concatenation, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11590), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230100] = 18, + ACTIONS(12787), 1, + anon_sym_LT_LT_LT, + STATE(5452), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, + [256534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, - anon_sym_DOLLAR_LBRACK, - 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, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - ACTIONS(4857), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11538), 1, - sym_word, - ACTIONS(11544), 1, - sym__comment_word, - ACTIONS(11594), 1, - anon_sym_DOLLAR, - ACTIONS(4859), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11540), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11542), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5179), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230167] = 18, + [256570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4837), 1, - anon_sym_DOLLAR_LBRACK, - 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, + ACTIONS(1364), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, - ACTIONS(4857), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4863), 1, - sym__brace_start, - ACTIONS(11538), 1, - sym_word, - ACTIONS(11544), 1, - sym__comment_word, - ACTIONS(11596), 1, - anon_sym_DOLLAR, - ACTIONS(4859), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11540), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11542), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5179), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230234] = 18, + [256606] = 3, ACTIONS(3), 1, sym_comment, - 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(9648), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, - anon_sym_DQUOTE, - ACTIONS(9658), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(1352), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - ACTIONS(9662), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10936), 1, - sym_word, - ACTIONS(10942), 1, - sym__comment_word, - ACTIONS(11598), 1, - anon_sym_DOLLAR, - ACTIONS(9664), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10940), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1249), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230301] = 18, + [256642] = 3, 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10604), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10610), 1, - anon_sym_DQUOTE, - ACTIONS(10614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - ACTIONS(10618), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10622), 1, - sym__comment_word, - ACTIONS(10608), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10620), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10612), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5559), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230368] = 18, + [256678] = 3, 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, - anon_sym_DQUOTE, - ACTIONS(10378), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(1312), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - ACTIONS(10382), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, - sym__comment_word, - ACTIONS(11600), 1, - anon_sym_DOLLAR, - ACTIONS(10372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10384), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10376), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230435] = 18, + [256714] = 3, ACTIONS(3), 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, + ACTIONS(1348), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, - ACTIONS(467), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, - sym__brace_start, - ACTIONS(11488), 1, - sym_word, - ACTIONS(11496), 1, - sym__comment_word, - ACTIONS(469), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11492), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11494), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230502] = 18, + [256750] = 3, 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, + ACTIONS(1352), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, - 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(11602), 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, - [230569] = 20, - ACTIONS(71), 1, + [256786] = 3, + ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1348), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, - ACTIONS(8322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(11604), 1, - sym_word, - ACTIONS(11608), 1, - sym_test_operator, - STATE(1834), 1, - aux_sym__literal_repeat1, - STATE(2055), 1, - sym_concatenation, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11606), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2292), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230640] = 18, + [256822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5013), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, - anon_sym_DOLLAR, - ACTIONS(5019), 1, - anon_sym_DQUOTE, - ACTIONS(5023), 1, - aux_sym_number_token1, - ACTIONS(5025), 1, - aux_sym_number_token2, - ACTIONS(5027), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5029), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5031), 1, + ACTIONS(12789), 1, + aux_sym_concatenation_token1, + ACTIONS(12792), 1, + sym__concat, + STATE(4581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, - ACTIONS(5033), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5039), 1, - sym__brace_start, - ACTIONS(10356), 1, - sym_word, - ACTIONS(10364), 1, - sym__comment_word, - ACTIONS(5035), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10360), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10362), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2834), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230707] = 20, - ACTIONS(71), 1, + [256864] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8300), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8302), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8304), 1, + ACTIONS(12455), 1, + anon_sym_LPAREN, + ACTIONS(12457), 1, + aux_sym__c_word_token1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(8308), 1, + ACTIONS(12463), 1, anon_sym_DQUOTE, - ACTIONS(8312), 1, + ACTIONS(12465), 1, aux_sym_number_token1, - ACTIONS(8314), 1, + ACTIONS(12467), 1, aux_sym_number_token2, - ACTIONS(8316), 1, + ACTIONS(12469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8318), 1, + ACTIONS(12471), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8320), 1, + ACTIONS(12473), 1, anon_sym_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(12475), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8332), 1, - sym__brace_start, - ACTIONS(8352), 1, - sym__special_character, - ACTIONS(11610), 1, - sym_word, - ACTIONS(11614), 1, - sym_test_operator, - STATE(1905), 1, - aux_sym__literal_repeat1, - STATE(2210), 1, - sym_concatenation, - ACTIONS(8324), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11612), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2295), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(12797), 1, + aux_sym_heredoc_redirect_token1, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(4984), 1, + sym__c_terminator, + STATE(6805), 1, + sym__c_expression, + STATE(7000), 1, + sym__c_variable_assignment, + ACTIONS(12453), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(12795), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3182), 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, - [230778] = 18, + [256936] = 6, 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, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10370), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10374), 1, - anon_sym_DQUOTE, - ACTIONS(10378), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, - anon_sym_BQUOTE, - ACTIONS(10382), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10386), 1, - sym__comment_word, - ACTIONS(11616), 1, - anon_sym_DOLLAR, - ACTIONS(10372), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10384), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10376), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230845] = 18, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2180), 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_LT_LT_LT, + [256978] = 6, ACTIONS(3), 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(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(11250), 1, - sym_word, - ACTIONS(11258), 1, - sym__comment_word, - ACTIONS(5343), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11254), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11256), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5420), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230912] = 20, - ACTIONS(71), 1, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5052), 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_LT_LT_LT, + [257020] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, - anon_sym_DQUOTE, - ACTIONS(9984), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, - anon_sym_BQUOTE, - ACTIONS(9988), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, - sym__special_character, - ACTIONS(11618), 1, - sym_word, - ACTIONS(11622), 1, - sym_test_operator, - STATE(1463), 1, - aux_sym__literal_repeat1, - STATE(1628), 1, - sym_concatenation, - ACTIONS(9990), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11620), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1899), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230983] = 20, - ACTIONS(71), 1, + ACTIONS(12799), 1, + aux_sym_concatenation_token1, + ACTIONS(12802), 1, + sym__concat, + STATE(4585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, + [257062] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9974), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9976), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9980), 1, - anon_sym_DQUOTE, - ACTIONS(9984), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, - anon_sym_BQUOTE, - ACTIONS(9988), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, - sym__special_character, - ACTIONS(11624), 1, - sym_word, - ACTIONS(11628), 1, - sym_test_operator, - STATE(1387), 1, - aux_sym__literal_repeat1, - STATE(1635), 1, - sym_concatenation, - ACTIONS(9990), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11626), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1901), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231054] = 20, - ACTIONS(71), 1, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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_LT_LT_LT, + [257104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11565), 1, + aux_sym_concatenation_token1, + ACTIONS(11567), 1, + sym__concat, + STATE(4570), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5722), 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, + [257146] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10320), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10326), 1, + ACTIONS(1251), 1, + sym_file_descriptor, + ACTIONS(6438), 1, anon_sym_DQUOTE, - ACTIONS(10330), 1, - aux_sym_number_token1, - ACTIONS(10332), 1, - aux_sym_number_token2, - ACTIONS(10334), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10338), 1, - anon_sym_BQUOTE, - ACTIONS(10340), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10346), 1, - sym__brace_start, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(10968), 1, - sym__special_character, - ACTIONS(11630), 1, - sym_word, - ACTIONS(11634), 1, - sym_test_operator, - STATE(6133), 1, - aux_sym__literal_repeat1, - STATE(6373), 1, - sym_concatenation, - ACTIONS(10342), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11632), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6106), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(12809), 1, + sym_variable_name, + STATE(6055), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231125] = 22, + ACTIONS(12807), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12805), 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(1249), 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [257192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, + ACTIONS(12455), 1, anon_sym_LPAREN, - ACTIONS(10642), 1, + ACTIONS(12457), 1, aux_sym__c_word_token1, - ACTIONS(10644), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(10646), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(10648), 1, + ACTIONS(12463), 1, anon_sym_DQUOTE, - ACTIONS(10650), 1, + ACTIONS(12465), 1, aux_sym_number_token1, - ACTIONS(10652), 1, + ACTIONS(12467), 1, aux_sym_number_token2, - ACTIONS(10654), 1, + ACTIONS(12469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10656), 1, + ACTIONS(12471), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10658), 1, + ACTIONS(12473), 1, anon_sym_BQUOTE, - ACTIONS(10660), 1, + ACTIONS(12475), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + ACTIONS(12813), 1, + aux_sym_heredoc_redirect_token1, + STATE(3183), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(4149), 1, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(5132), 1, sym__c_terminator, - STATE(6267), 1, + STATE(6750), 1, sym__c_expression, - STATE(6395), 1, + STATE(7000), 1, sym__c_variable_assignment, - STATE(6861), 1, - sym__for_body, - ACTIONS(10636), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(10638), 2, + ACTIONS(12453), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2902), 7, + ACTIONS(12811), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3182), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -267255,266 +294518,1064 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231200] = 18, + [257264] = 6, 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, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12817), 1, + sym__concat, + STATE(4735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + anon_sym_LT_LT_LT, 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, + [257306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4540), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4542), 1, - anon_sym_DOLLAR, - ACTIONS(4546), 1, + ACTIONS(12823), 1, + sym_variable_name, + STATE(7214), 1, + sym_subscript, + ACTIONS(12821), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4594), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 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, + [257348] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11565), 1, + aux_sym_concatenation_token1, + ACTIONS(12825), 1, + sym__concat, + STATE(4585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [257390] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + sym_file_descriptor, + ACTIONS(6438), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, - aux_sym_number_token1, - ACTIONS(4552), 1, - aux_sym_number_token2, - ACTIONS(4554), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4556), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4558), 1, - anon_sym_BQUOTE, - ACTIONS(4560), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4566), 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, - 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, + ACTIONS(12809), 1, + sym_variable_name, + STATE(6055), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231334] = 18, + ACTIONS(12807), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(12805), 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(1237), 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, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [257436] = 6, 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, + ACTIONS(12831), 1, + sym_variable_name, + STATE(7214), 1, + sym_subscript, + ACTIONS(12829), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4594), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12827), 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, + [257478] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(12834), 1, + sym__concat, + STATE(4605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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_LT_LT_LT, + [257520] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11565), 1, + aux_sym_concatenation_token1, + ACTIONS(11567), 1, + sym__concat, + STATE(4592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5726), 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, + [257562] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12787), 1, + anon_sym_LT_LT_LT, + STATE(5452), 1, + sym_herestring_redirect, + ACTIONS(4820), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 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, + [257604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1368), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1366), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, - ACTIONS(10480), 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, - 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, + [257640] = 3, 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, + ACTIONS(1316), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, - 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, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10178), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10180), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2446), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231468] = 20, - ACTIONS(71), 1, + [257676] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5093), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [257712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [257748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [257784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [257820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [257856] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12836), 1, + aux_sym_concatenation_token1, + ACTIONS(12839), 1, + sym__concat, + STATE(4605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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_LT_LT_LT, + [257898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [257934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(12842), 1, + sym__concat, + STATE(4605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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_LT_LT_LT, + [257976] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12787), 1, + anon_sym_LT_LT_LT, + ACTIONS(12848), 1, + sym_file_descriptor, + STATE(5452), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5068), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5072), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2641), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12844), 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, + [258032] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 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_LT_LT_LT, + [258074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12858), 1, + anon_sym_LT_LT_LT, + ACTIONS(12860), 1, + sym_file_descriptor, + ACTIONS(12854), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4563), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12852), 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(12850), 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, + [258120] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6248), 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_LT_LT_LT, + [258162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [258198] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12455), 1, + anon_sym_LPAREN, + ACTIONS(12457), 1, + aux_sym__c_word_token1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(5097), 1, - sym__special_character, - ACTIONS(5099), 1, + ACTIONS(12463), 1, anon_sym_DQUOTE, - ACTIONS(5103), 1, + ACTIONS(12465), 1, aux_sym_number_token1, - ACTIONS(5105), 1, + ACTIONS(12467), 1, aux_sym_number_token2, - ACTIONS(5107), 1, + ACTIONS(12469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5109), 1, + ACTIONS(12471), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5111), 1, + ACTIONS(12473), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(12475), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5119), 1, - sym__brace_start, - ACTIONS(11642), 1, - sym_word, - ACTIONS(11646), 1, - sym_test_operator, - STATE(5299), 1, - aux_sym__literal_repeat1, - STATE(5521), 1, - sym_concatenation, - ACTIONS(5115), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11644), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5197), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(12864), 1, + aux_sym_heredoc_redirect_token1, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(5013), 1, + sym__c_terminator, + STATE(6742), 1, + sym__c_expression, + STATE(7000), 1, + sym__c_variable_assignment, + ACTIONS(12453), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(12862), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3182), 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, - [231539] = 6, + [258270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 5, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [258306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11493), 1, + aux_sym_concatenation_token1, + ACTIONS(11495), 1, + sym__concat, + STATE(4595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6244), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6242), 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_LT_LT_LT, + [258348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(1336), 4, + sym_file_descriptor, sym__concat, - STATE(4142), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1334), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [258384] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5084), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12787), 1, + anon_sym_LT_LT_LT, + ACTIONS(12848), 1, + sym_file_descriptor, + STATE(5452), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5072), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5082), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4816), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12844), 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, + [258440] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2639), 1, + ts_builtin_sym_end, + ACTIONS(5211), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12870), 1, + anon_sym_LT_LT_LT, + ACTIONS(12872), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5209), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12866), 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, + [258495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 23, + ACTIONS(1310), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267538,19 +295599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [231581] = 6, + aux_sym_concatenation_token1, + [258530] = 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(1225), 2, + ACTIONS(1328), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(1326), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267560,6 +295617,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, @@ -267573,20 +295631,15 @@ 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, - [231623] = 6, + aux_sym_concatenation_token1, + [258565] = 3, 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(4309), 2, + ACTIONS(1344), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 23, + ACTIONS(1342), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267610,20 +295663,50 @@ 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, + aux_sym_concatenation_token1, + [258600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, - aux_sym_concatenation_token1, - ACTIONS(11652), 1, - sym__concat, - STATE(4143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(12870), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4820), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 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, + [258641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 3, + sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 22, + ACTIONS(1334), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267646,20 +295729,16 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [258676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, - aux_sym_concatenation_token1, - ACTIONS(11654), 1, - sym__concat, - STATE(4143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1320), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(1318), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267682,19 +295761,16 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [258711] = 3, 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(4313), 2, + ACTIONS(1340), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 23, + ACTIONS(1338), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267718,20 +295794,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [231791] = 6, + aux_sym_concatenation_token1, + [258746] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12885), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12887), 1, + sym_file_descriptor, + ACTIONS(12879), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12882), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4626), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12876), 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(12874), 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, + [258791] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5193), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [258846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11660), 1, + ACTIONS(12898), 1, sym_variable_name, - STATE(6669), 1, + STATE(7217), 1, sym_subscript, - ACTIONS(11658), 2, + ACTIONS(12829), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4139), 2, + STATE(4628), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 22, + ACTIONS(12827), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267741,7 +295897,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, @@ -267754,41 +295909,171 @@ 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, + [258887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(1364), 3, + sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11667), 1, + ACTIONS(1362), 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, - ACTIONS(11669), 1, - sym_file_descriptor, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, + aux_sym_concatenation_token1, + [258922] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4290), 2, + ACTIONS(4828), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 20, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4292), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4294), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11665), 2, + 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, - ACTIONS(2503), 3, + anon_sym_LT_LT_DASH, + [258961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1306), 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, - STATE(4358), 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [258996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12901), 1, + sym__concat, + ACTIONS(7460), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7458), 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, + [259033] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5201), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -267797,57 +296082,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [231889] = 8, + [259088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, + ACTIONS(12903), 1, + sym__concat, + ACTIONS(7466), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7464), 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, + [259125] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11681), 1, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, anon_sym_LT_LT_LT, - ACTIONS(11684), 1, + ACTIONS(12896), 1, sym_file_descriptor, - ACTIONS(11676), 2, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4141), 3, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [259180] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12905), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11673), 8, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, - ACTIONS(11671), 12, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [259223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1330), 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, - [231935] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [259258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11687), 1, - sym__concat, - STATE(4166), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1368), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 23, + ACTIONS(1366), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267857,10 +296243,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -267870,21 +296255,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, - [231977] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [259293] = 3, 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, + ACTIONS(1368), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1366), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267907,20 +296288,18 @@ 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, + aux_sym_concatenation_token1, + [259328] = 4, 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(1225), 3, + ACTIONS(4828), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267930,6 +296309,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, @@ -267942,21 +296322,47 @@ 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, - [232061] = 6, + [259365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11699), 1, - aux_sym_concatenation_token1, - ACTIONS(11702), 1, + ACTIONS(1316), 4, + sym_file_descriptor, sym__concat, - STATE(4145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [259400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1261), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267968,6 +296374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -267977,37 +296384,66 @@ static const uint16_t 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, - [232103] = 7, + [259435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, + ACTIONS(12905), 1, anon_sym_LT_LT_LT, - STATE(4950), 1, + STATE(5104), 1, sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(4820), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, + STATE(5045), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, + ACTIONS(4726), 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, + [259476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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, @@ -268016,19 +296452,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232147] = 6, + aux_sym_concatenation_token1, + [259511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(1344), 4, + sym_file_descriptor, sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1342), 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_concatenation_token1, + [259546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 23, + ACTIONS(1314), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268052,20 +296516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [232189] = 6, + aux_sym_concatenation_token1, + [259581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, - aux_sym_concatenation_token1, - ACTIONS(11268), 1, - sym__concat, - STATE(4137), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(1336), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 22, + ACTIONS(1334), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268088,204 +296548,349 @@ 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, + aux_sym_concatenation_token1, + [259616] = 3, 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(11707), 1, + ACTIONS(1304), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, 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, + ACTIONS(1302), 23, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + [259651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11667), 1, - anon_sym_LT_LT_LT, - ACTIONS(11669), 1, + ACTIONS(1304), 3, sym_file_descriptor, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4292), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1302), 24, + anon_sym_SEMI, 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_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(4513), 2, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [259686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 23, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11665), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_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(4255), 3, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [259721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1338), 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, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11663), 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, + aux_sym_concatenation_token1, + [259756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, - [232359] = 21, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [259791] = 6, 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(11711), 1, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, + sym__concat, + STATE(4861), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 3, + sym_file_descriptor, + sym_variable_name, 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, + ACTIONS(1271), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, 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, + 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, + sym__special_character, + anon_sym_BQUOTE, + [259832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11721), 1, - anon_sym_LT_LT_LT, - ACTIONS(11723), 1, + ACTIONS(1352), 3, sym_file_descriptor, - ACTIONS(11717), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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, - STATE(4141), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11715), 8, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [259867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, - ACTIONS(11713), 12, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [259902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 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, - [232477] = 6, + aux_sym_concatenation_token1, + [259937] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, + ACTIONS(2641), 1, + anon_sym_RPAREN, + ACTIONS(5074), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12915), 1, anon_sym_LT_LT_LT, - STATE(4950), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(12917), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4358), 3, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5126), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5068), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5155), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 21, + ACTIONS(12911), 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, + [259992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1310), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268295,9 +296900,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268307,70 +296912,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232519] = 21, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [260027] = 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, - anon_sym_BQUOTE, - ACTIONS(10660), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11727), 1, + ACTIONS(5151), 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, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, 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, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [260082] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11143), 1, + anon_sym_LT_LT_LT, + ACTIONS(12921), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12923), 1, + sym_file_descriptor, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5397), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11139), 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(12919), 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, + [260127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12925), 1, + sym__concat, + ACTIONS(7430), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7428), 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, + [260164] = 3, 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, + ACTIONS(1308), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(1306), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268380,10 +297044,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268393,56 +297056,92 @@ 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, - [232633] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [260199] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 1, - aux_sym_concatenation_token1, - ACTIONS(11736), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, - anon_sym_SEMI, + ACTIONS(5203), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [232675] = 6, + [260254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, - aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(12927), 1, sym__concat, - STATE(4162), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(7439), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7437), 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, + [260291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 23, + ACTIONS(1346), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268465,20 +297164,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, - [232717] = 6, + aux_sym_concatenation_token1, + [260326] = 3, 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(4439), 2, + ACTIONS(1352), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 23, + ACTIONS(1350), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268501,21 +297196,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, - [232759] = 6, + aux_sym_concatenation_token1, + [260361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11743), 1, - sym_variable_name, - STATE(6669), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(1348), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4139), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 22, + ACTIONS(1346), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268538,32 +297228,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [232801] = 8, + aux_sym_concatenation_token1, + [260396] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5205), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 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, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -268572,23 +297271,20 @@ 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, + [260451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(12761), 1, aux_sym_concatenation_token1, - ACTIONS(11340), 1, + ACTIONS(12763), 1, sym__concat, - STATE(4162), 1, + STATE(4751), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(5724), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 23, + ACTIONS(5722), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268598,7 +297294,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, @@ -268611,20 +297306,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, - [232889] = 6, + [260492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11338), 1, + ACTIONS(12761), 1, aux_sym_concatenation_token1, - ACTIONS(11751), 1, + ACTIONS(12763), 1, sym__concat, - STATE(4166), 1, + STATE(4754), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(5728), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 23, + ACTIONS(5726), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268634,7 +297329,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, @@ -268647,21 +297341,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, - [232931] = 6, + [260533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11266), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11268), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4136), 1, + STATE(4797), 1, aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, + ACTIONS(1273), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 22, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268671,10 +297364,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, @@ -268684,57 +297374,17 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1191), 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(1183), 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, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [233019] = 6, + sym__special_character, + [260574] = 3, 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(1320), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 23, + ACTIONS(1318), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268744,10 +297394,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268757,20 +297406,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, - [233061] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [260609] = 3, 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(1328), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(1326), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268780,10 +297426,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268793,16 +297438,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, - [233103] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [260644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1330), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268812,10 +297458,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268826,55 +297471,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233138] = 6, + anon_sym_BQUOTE, + [260679] = 8, 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(2162), 2, - sym_file_descriptor, + ACTIONS(12773), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(12939), 1, + anon_sym_LT_LT_LT, + ACTIONS(12942), 1, + sym_file_descriptor, + ACTIONS(12936), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4675), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12933), 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(12765), 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, - [233179] = 6, + [260724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(12945), 1, + sym__special_character, + STATE(4676), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1370), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268884,6 +297530,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 +297541,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, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [233220] = 3, + [260763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1304), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + ACTIONS(1302), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268926,17 +297574,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, - [233255] = 3, + [260798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1336), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(1334), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268946,10 +297593,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -268960,21 +297606,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233290] = 6, + anon_sym_BQUOTE, + [260833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4867), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 20, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -268995,52 +297640,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233331] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [260874] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, - anon_sym_SEMI, + ACTIONS(5207), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [233366] = 6, + [260929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11765), 1, - sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(1364), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4205), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 21, + ACTIONS(1362), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269050,9 +297702,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269062,17 +297714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [233407] = 5, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [260964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(1360), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 23, + ACTIONS(1358), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269082,10 +297734,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269095,16 +297746,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, - [233446] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [260999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1356), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(1354), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269116,6 +297768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269125,18 +297778,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, - [233481] = 3, + [261034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1344), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1342), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269148,6 +297800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269157,18 +297810,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, - [233516] = 3, + [261069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1322), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269192,19 +297844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [233551] = 6, + [261104] = 5, 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(12948), 1, + sym__special_character, + STATE(4732), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(5722), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269214,10 +297866,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, @@ -269227,58 +297877,16 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 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, - 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, - [233643] = 5, + anon_sym_BQUOTE, + [261143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 1, - sym__special_character, - STATE(4181), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(1340), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1338), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269288,10 +297896,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269301,24 +297908,42 @@ 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, + anon_sym_BQUOTE, + [261178] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11775), 1, - sym_file_descriptor, - ACTIONS(11782), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4173), 2, + ACTIONS(5213), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(10932), 2, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4269), 3, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(10930), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -269327,26 +297952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11780), 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, - [233727] = 3, + [261233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(12950), 1, + sym__special_character, + STATE(4772), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(4941), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269356,8 +297972,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, @@ -269368,154 +297986,59 @@ 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, - [233762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11784), 1, - sym__concat, - 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, - [233799] = 6, + [261272] = 13, 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, - sym_file_descriptor, + ACTIONS(5151), 1, 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, - 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, - [233840] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10102), 1, + ACTIONS(5215), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, anon_sym_LT_LT_LT, - ACTIONS(11792), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11794), 1, + ACTIONS(12896), 1, sym_file_descriptor, - ACTIONS(10932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4908), 2, - sym_file_redirect, + STATE(5104), 1, 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, + ACTIONS(4726), 2, 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, + ACTIONS(5128), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - [233885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, - anon_sym_SEMI, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [233920] = 3, + [261327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(12950), 1, + sym__special_character, + STATE(4772), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(6242), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269525,8 +298048,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, @@ -269537,49 +298062,57 @@ 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, - [233955] = 3, + [261366] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 24, - anon_sym_SEMI, + ACTIONS(5217), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [233990] = 3, + [261421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1346), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269591,6 +298124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269600,18 +298134,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, - [234025] = 3, + [261456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1352), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1350), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269623,6 +298156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269632,18 +298166,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, - [234060] = 3, + [261491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1346), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269655,6 +298188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -269664,57 +298198,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, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [234095] = 6, + [261526] = 13, 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, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, - anon_sym_SEMI, + ACTIONS(5500), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [234136] = 6, + [261581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - aux_sym_concatenation_token1, - ACTIONS(11796), 1, - sym__concat, - STATE(4179), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(12950), 1, + sym__special_character, + STATE(4772), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 22, + ACTIONS(5052), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269737,46 +298275,62 @@ 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, + anon_sym_LT_LT_LT, + [261620] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, - anon_sym_SEMI, + ACTIONS(5219), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [234212] = 3, + [261675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, + STATE(4789), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 24, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269786,10 +298340,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, @@ -269800,82 +298351,105 @@ 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, - [234247] = 3, + sym__special_character, + anon_sym_BQUOTE, + [261716] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, - anon_sym_SEMI, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [234282] = 5, + [261771] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 23, - anon_sym_SEMI, + ACTIONS(5225), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [234321] = 3, + [261826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(12952), 1, + aux_sym_concatenation_token1, + ACTIONS(12955), 1, sym__concat, - sym_variable_name, + STATE(4702), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(1261), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269898,49 +298472,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, - [234356] = 3, + [261867] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(4816), 1, + anon_sym_RPAREN, + ACTIONS(5084), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, - anon_sym_SEMI, + ACTIONS(12915), 1, + anon_sym_LT_LT_LT, + ACTIONS(12917), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5126), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5082), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12911), 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, - [234391] = 3, + [261922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(12958), 1, + sym__special_character, + STATE(4676), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(6242), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -269961,42 +298546,42 @@ 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, - [234426] = 13, + [261961] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(5149), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11763), 1, + ACTIONS(12894), 1, anon_sym_LT_LT_LT, - ACTIONS(11802), 1, + ACTIONS(12896), 1, sym_file_descriptor, - STATE(4937), 1, + STATE(5104), 1, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, + ACTIONS(5145), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4669), 3, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -270005,15 +298590,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [234481] = 3, + [262016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(12958), 1, + sym__special_character, + STATE(4676), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(6248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270023,10 +298611,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, @@ -270036,20 +298622,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, - [234516] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [262055] = 5, 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(12950), 1, + sym__special_character, + STATE(4772), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(6248), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270072,20 +298657,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, + anon_sym_LT_LT_LT, + [262094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11806), 1, - sym_variable_name, - STATE(6702), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4952), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4205), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 21, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270096,8 +298681,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -270107,14 +298691,20 @@ 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, + anon_sym_LT_LT_LT, + sym__special_character, + [262135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(12960), 1, + sym__special_character, + STATE(4709), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 24, + ACTIONS(1370), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270137,17 +298727,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, - [234633] = 3, + [262174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1322), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270157,8 +298744,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, @@ -270170,16 +298759,18 @@ 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, - [234668] = 3, + [262209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(12958), 1, + sym__special_character, + STATE(4676), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(4941), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270201,21 +298792,70 @@ 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, - [234703] = 3, + [262248] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5158), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [262303] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(12915), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -270223,7 +298863,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, @@ -270232,22 +298871,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, - [234738] = 6, + [262346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(12815), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(12817), 1, sym__concat, - STATE(4239), 1, + STATE(4735), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(6242), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270270,21 +298906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [234779] = 6, + [262387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(1263), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4612), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 20, + ACTIONS(1261), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270294,7 +298923,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 +298936,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, - [234820] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [262422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, + ACTIONS(12815), 1, aux_sym_concatenation_token1, - ACTIONS(11811), 1, + ACTIONS(12817), 1, sym__concat, - STATE(4244), 1, + STATE(4740), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(2178), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(2176), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270340,18 +298972,19 @@ 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, + [262463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, + ACTIONS(12958), 1, sym__special_character, - STATE(4318), 1, + STATE(4676), 1, aux_sym__literal_repeat1, - ACTIONS(4309), 3, + ACTIONS(5054), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(5052), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270374,20 +299007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [234900] = 6, + [262502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11815), 1, + ACTIONS(12781), 1, aux_sym_concatenation_token1, - ACTIONS(11818), 1, + ACTIONS(12783), 1, sym__concat, - STATE(4214), 1, + STATE(4767), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(4943), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(4941), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270397,8 +299029,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, @@ -270408,48 +299042,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_BQUOTE, - [234941] = 4, + [262543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11821), 1, + ACTIONS(12781), 1, + aux_sym_concatenation_token1, + ACTIONS(12783), 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, + STATE(4769), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4945), 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, + [262584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, + ACTIONS(1320), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 24, + ACTIONS(1318), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270472,54 +299108,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, aux_sym_concatenation_token1, - [235013] = 8, + [262619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11827), 1, + ACTIONS(12915), 1, anon_sym_LT_LT_LT, - ACTIONS(11829), 1, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4820), 2, sym_file_descriptor, - ACTIONS(11825), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4246), 3, + aux_sym_heredoc_redirect_token1, + STATE(5155), 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, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 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_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, + [262660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, - sym_file_descriptor, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12817), 1, sym__concat, - ts_builtin_sym_end, + STATE(4735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(6248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270529,8 +299166,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, @@ -270541,18 +299179,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, - anon_sym_BQUOTE, - [235093] = 3, + [262701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12817), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4740), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(2180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270562,8 +299201,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,53 +299213,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, - anon_sym_BQUOTE, - [235128] = 3, + anon_sym_LT_LT_LT, + [262742] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(4818), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, - anon_sym_SEMI, + ACTIONS(12963), 1, + sym_file_descriptor, + ACTIONS(4724), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4726), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4728), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4814), 2, + anon_sym_SEMI, anon_sym_AMP, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4816), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11139), 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, - [235163] = 6, + [262793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(12781), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(12783), 1, sym__concat, - STATE(4194), 1, + STATE(4767), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(6242), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270642,20 +299289,19 @@ 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, + [262834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, + ACTIONS(12781), 1, aux_sym_concatenation_token1, - ACTIONS(11831), 1, + ACTIONS(12783), 1, sym__concat, - STATE(4244), 1, + STATE(4769), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(2178), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(2176), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270665,6 +299311,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, @@ -270677,19 +299324,15 @@ 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, + [262875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11833), 1, - sym__special_character, - STATE(4294), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 4, + ACTIONS(1332), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(1330), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270699,8 +299342,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, @@ -270710,16 +299355,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, - [235284] = 3, + aux_sym_concatenation_token1, + [262910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1312), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1310), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270743,40 +299388,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [235319] = 13, + [262945] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, + ACTIONS(2641), 1, + anon_sym_BQUOTE, + ACTIONS(5674), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 1, + ACTIONS(12905), 1, anon_sym_LT_LT_LT, - ACTIONS(11841), 1, + ACTIONS(12969), 1, sym_file_descriptor, - STATE(4937), 1, + STATE(5104), 1, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4527), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, + ACTIONS(5637), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12967), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, + ACTIONS(5672), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4645), 3, + STATE(5045), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, + ACTIONS(12965), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -270785,14 +299430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [235374] = 3, + [263000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, sym__concat, + STATE(4838), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 24, + ACTIONS(1271), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270802,10 +299454,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, @@ -270815,17 +299464,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, - [235409] = 3, + sym__special_character, + [263041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(12781), 1, + aux_sym_concatenation_token1, + ACTIONS(12783), 1, sym__concat, - ts_builtin_sym_end, + STATE(4767), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(6248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270835,8 +299487,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, @@ -270846,19 +299500,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, - [235444] = 3, + [263082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(12971), 1, + sym__special_character, + STATE(4732), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 4, sym_file_descriptor, - sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270879,29 +299533,35 @@ 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, - [235479] = 3, + [263121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(12870), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, @@ -270910,22 +299570,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, - [235514] = 6, + [263164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, + ACTIONS(12781), 1, aux_sym_concatenation_token1, - ACTIONS(11845), 1, + ACTIONS(12783), 1, sym__concat, - STATE(4326), 1, + STATE(4769), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(2180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270935,6 +299592,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,17 +299605,19 @@ 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, + [263205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 5, - sym_file_descriptor, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12974), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4746), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(1281), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270967,8 +299627,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, @@ -270978,16 +299639,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, - anon_sym_BQUOTE, - [235590] = 3, + anon_sym_LT_LT_LT, + [263246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 24, + ACTIONS(1358), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271012,17 +299672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [235625] = 4, + [263281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(1356), 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), 22, + ACTIONS(1354), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271045,19 +299702,22 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [263316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(12907), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(12909), 1, sym__concat, - STATE(4262), 1, + STATE(4856), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1273), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271068,8 +299728,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271079,20 +299738,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, - [235703] = 6, + sym__special_character, + [263357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(12781), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(12783), 1, sym__concat, - STATE(4204), 1, + STATE(4767), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(5052), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271115,18 +299774,19 @@ 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, + [263398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 3, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12976), 1, + sym__concat, + STATE(4746), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(1275), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271136,8 +299796,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, @@ -271148,21 +299809,61 @@ 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, - [235783] = 6, + [263439] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11695), 1, + ACTIONS(5162), 1, + ts_builtin_sym_end, + ACTIONS(5168), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12870), 1, + anon_sym_LT_LT_LT, + ACTIONS(12872), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5164), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12866), 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, + [263494] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12781), 1, aux_sym_concatenation_token1, - ACTIONS(11697), 1, + ACTIONS(12783), 1, sym__concat, - STATE(4222), 1, + STATE(4769), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(5058), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(5056), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271172,6 +299873,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,32 +299886,101 @@ 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, + [263535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, + ACTIONS(1316), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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, - ACTIONS(4159), 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, + aux_sym_concatenation_token1, + [263570] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12963), 1, sym_file_descriptor, + ACTIONS(12980), 1, aux_sym_heredoc_redirect_token1, - STATE(4182), 3, + ACTIONS(4728), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4626), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 20, + ACTIONS(11139), 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(12978), 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, + [263615] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12817), 1, + sym__concat, + STATE(4735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 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, @@ -271218,19 +299989,20 @@ 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, + [263656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(12982), 1, aux_sym_concatenation_token1, - ACTIONS(11847), 1, + ACTIONS(12985), 1, sym__concat, - STATE(4292), 1, + STATE(4746), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1263), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 22, + ACTIONS(1261), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271253,14 +300025,18 @@ 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, + [263697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(12988), 1, + sym__special_character, + STATE(4709), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 24, + ACTIONS(5722), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271283,17 +300059,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, - [235939] = 3, + [263736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1308), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1306), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271317,15 +300091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [235974] = 3, + [263771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1261), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271349,16 +300123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [236009] = 3, + [263806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12817), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4740), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(4945), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271368,8 +300145,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, @@ -271379,22 +300157,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, - [236044] = 6, + anon_sym_LT_LT_LT, + [263847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11849), 1, + ACTIONS(12761), 1, aux_sym_concatenation_token1, - ACTIONS(11852), 1, + ACTIONS(12990), 1, sym__concat, - STATE(4244), 1, + STATE(4757), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 3, + ACTIONS(1283), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(1281), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271416,17 +300193,20 @@ 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, + [263888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(12992), 1, + sym_variable_name, + STATE(7217), 1, + sym_subscript, + ACTIONS(12821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 23, + STATE(4628), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271436,7 +300216,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, @@ -271449,24 +300228,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [236124] = 8, + [263929] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, + ACTIONS(4730), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11861), 1, - anon_sym_LT_LT_LT, - ACTIONS(11864), 1, + ACTIONS(12963), 1, sym_file_descriptor, - ACTIONS(11858), 2, + ACTIONS(4722), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4724), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4728), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11141), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4246), 3, + STATE(4744), 3, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11855), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2641), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11139), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -271475,31 +300268,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [263980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(12761), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(12994), 1, sym__concat, - STATE(4239), 1, + STATE(4757), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(1277), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271521,49 +300303,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, - [236210] = 3, + [264021] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(11143), 1, + anon_sym_LT_LT_LT, + ACTIONS(12923), 1, sym_file_descriptor, - sym__concat, + ACTIONS(12998), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 24, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5403), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11139), 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(12996), 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, - aux_sym_concatenation_token1, - [236245] = 3, + [264066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, sym__concat, + STATE(4899), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271584,17 +300374,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, - [236280] = 3, + sym__special_character, + [264107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, - sym_file_descriptor, + ACTIONS(13000), 1, + aux_sym_concatenation_token1, + ACTIONS(13003), 1, sym__concat, + STATE(4757), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(1261), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271604,7 +300398,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, @@ -271617,50 +300410,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_concatenation_token1, - [236315] = 6, + [264148] = 13, 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, - sym_file_descriptor, + ACTIONS(4816), 1, + anon_sym_BQUOTE, + ACTIONS(5639), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, - anon_sym_SEMI, + ACTIONS(12905), 1, + anon_sym_LT_LT_LT, + ACTIONS(12969), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5637), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12967), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5635), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12965), 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, - [236356] = 3, + [264203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, - sym_file_descriptor, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12817), 1, sym__concat, + STATE(4735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 24, + ACTIONS(5052), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271670,7 +300474,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, @@ -271684,18 +300487,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, - [236391] = 5, + [264244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11867), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(12815), 1, + aux_sym_concatenation_token1, + ACTIONS(12817), 1, + sym__concat, + STATE(4740), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(5056), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271705,7 +300509,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, @@ -271719,50 +300522,57 @@ 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, + [264285] = 13, 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, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, - anon_sym_SEMI, + ACTIONS(5184), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [236471] = 3, + [264340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1360), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1358), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271772,8 +300582,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, @@ -271783,22 +300595,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, - [236506] = 6, + [264375] = 3, 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(4282), 2, + ACTIONS(1356), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1354), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271821,65 +300627,77 @@ 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, + aux_sym_concatenation_token1, + [264410] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 24, - anon_sym_SEMI, + ACTIONS(5189), 1, + anon_sym_RBRACE, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12896), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [236582] = 6, + [264465] = 7, 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(12894), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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_RBRACE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -271888,15 +300706,14 @@ 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, + [264508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, + ACTIONS(1368), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1366), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271919,19 +300736,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, - [236658] = 5, + [264543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 3, + ACTIONS(12781), 1, + aux_sym_concatenation_token1, + ACTIONS(13006), 1, + sym__concat, + STATE(4702), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1281), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271941,8 +300760,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, @@ -271952,18 +300773,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, - [236697] = 3, + [264584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 5, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4820), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -271973,8 +300797,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -271984,21 +300808,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, - anon_sym_BQUOTE, - [236732] = 6, + [264625] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(12781), 1, aux_sym_concatenation_token1, - ACTIONS(11870), 1, + ACTIONS(13008), 1, sym__concat, - STATE(4292), 1, + STATE(4702), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1277), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 22, + ACTIONS(1275), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272008,6 +300830,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, @@ -272020,16 +300843,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, - [236773] = 3, + [264666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(13010), 1, + aux_sym_concatenation_token1, + ACTIONS(13012), 1, sym__concat, - ts_builtin_sym_end, + STATE(4803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272039,8 +300865,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,53 +300877,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, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [236808] = 3, + sym__special_character, + [264707] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(11143), 1, + anon_sym_LT_LT_LT, + ACTIONS(12923), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(13016), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5292), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11139), 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(13014), 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, - aux_sym_concatenation_token1, - [236843] = 5, + [264752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, + ACTIONS(13018), 1, sym__special_character, - STATE(4318), 1, + STATE(4772), 1, aux_sym__literal_repeat1, - ACTIONS(5563), 3, + ACTIONS(1372), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(1370), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272106,8 +300935,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, @@ -272118,17 +300949,56 @@ 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, - [236882] = 3, + [264791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(12856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13025), 1, + anon_sym_LT_LT_LT, + ACTIONS(13027), 1, sym_file_descriptor, + ACTIONS(13023), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4675), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13021), 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(12850), 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, + [264836] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4790), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(2176), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272138,7 +301008,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, @@ -272149,18 +301018,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, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [236917] = 3, + [264876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 5, + ACTIONS(13029), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(13031), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272172,6 +301039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272181,21 +301049,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_LT_LT_LT, anon_sym_BQUOTE, - [236952] = 6, + [264910] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(13010), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(13012), 1, sym__concat, - STATE(4204), 1, + STATE(4803), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(5052), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272205,7 +301073,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, @@ -272218,24 +301085,54 @@ 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, + [264950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(7430), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7428), 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, + [264984] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11885), 1, + ACTIONS(13037), 1, + anon_sym_LT_LT_LT, + ACTIONS(13039), 1, sym_file_descriptor, - ACTIONS(11877), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11880), 2, + ACTIONS(13035), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4269), 3, + STATE(4869), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11874), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13033), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -272244,27 +301141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11872), 10, + ACTIONS(12850), 10, 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, - [237038] = 3, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [265028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 5, + ACTIONS(13041), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(13043), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272276,6 +301171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272285,18 +301181,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_LT_LT_LT, anon_sym_BQUOTE, - [237073] = 3, + [265062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 5, - sym_file_descriptor, + ACTIONS(13010), 1, + aux_sym_concatenation_token1, + ACTIONS(13012), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(5056), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272306,8 +301205,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, @@ -272317,36 +301217,30 @@ 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, - [237108] = 7, + [265102] = 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(13045), 1, + sym__special_character, + STATE(4852), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 18, + ACTIONS(6242), 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, @@ -272355,15 +301249,21 @@ 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, + [265140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, - sym_variable_name, + STATE(5019), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1271), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272373,10 +301273,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, @@ -272386,81 +301283,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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11890), 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, + sym__special_character, + [265180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1344), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 24, + ACTIONS(1342), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272470,7 +301302,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, @@ -272483,18 +301314,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, - [237295] = 3, + [265214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(13051), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(13053), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272506,6 +301334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -272515,17 +301344,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, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [237330] = 3, + [265248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, sym__concat, + STATE(4861), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(5722), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272535,10 +301369,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, @@ -272548,59 +301379,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, - [237365] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11802), 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(4797), 2, - 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_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_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [237420] = 3, + anon_sym_BQUOTE, + [265288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, sym__concat, + STATE(4863), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(5726), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272610,7 +301403,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, @@ -272621,22 +301413,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, anon_sym_BQUOTE, - [237455] = 6, + [265328] = 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(1336), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(1334), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272658,16 +301444,20 @@ 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, + [265362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(5211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272677,7 +301467,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, @@ -272688,18 +301477,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, + sym__special_character, anon_sym_BQUOTE, - [237531] = 3, + [265402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 5, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13055), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(1281), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272709,7 +301501,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, @@ -272720,17 +301511,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_LT_LT_LT, anon_sym_BQUOTE, - [237566] = 3, + [265442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13057), 1, sym__concat, - ts_builtin_sym_end, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(1275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272740,7 +301535,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, @@ -272752,24 +301546,47 @@ 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, - [237601] = 6, + [265482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 3, + ACTIONS(7439), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7437), 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, + [265516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 19, + ACTIONS(1338), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272780,6 +301597,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, @@ -272789,137 +301608,77 @@ 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, + aux_sym_concatenation_token1, + [265550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(11794), 1, + ACTIONS(1364), 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(1362), 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_LT_LT_DASH, - [237687] = 13, - 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, - 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, - 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, - [237742] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [265584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, - anon_sym_LT_LT_LT, - ACTIONS(11794), 1, + ACTIONS(1348), 3, sym_file_descriptor, - ACTIONS(11904), 1, + sym__concat, 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(1346), 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_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, + aux_sym_concatenation_token1, + [265618] = 3, 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, + ACTIONS(1352), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(1350), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272930,6 +301689,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 +301700,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, - [237828] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [265652] = 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(1225), 2, + ACTIONS(1348), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(1346), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272963,6 +301720,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, @@ -272973,19 +301732,21 @@ 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, + aux_sym_concatenation_token1, + [265686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11767), 1, - sym__special_character, - STATE(4253), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13059), 1, + sym__concat, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 23, + ACTIONS(1281), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -272995,10 +301756,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, @@ -273009,19 +301767,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [237908] = 6, + [265726] = 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(1332), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1330), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273044,59 +301797,47 @@ 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, + [265760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(1348), 4, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4171), 2, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, - [238000] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [265794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11912), 1, - sym__special_character, - STATE(4294), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 4, + ACTIONS(1352), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(1350), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273106,8 +301847,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, @@ -273117,15 +301859,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, - [238039] = 3, + aux_sym_concatenation_token1, + [265828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1348), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + ACTIONS(1346), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273135,7 +301878,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, @@ -273148,17 +301890,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, - [238074] = 3, + [265862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(13061), 1, + sym__special_character, + STATE(4802), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1370), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273181,20 +301924,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, - [238109] = 6, + [265900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11648), 1, + ACTIONS(13010), 1, aux_sym_concatenation_token1, - ACTIONS(11650), 1, + ACTIONS(13064), 1, sym__concat, - STATE(4239), 1, + STATE(4842), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(1283), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1281), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273216,15 +301958,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, - [238150] = 3, + [265940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13066), 1, sym__concat, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 24, + ACTIONS(1275), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273234,10 +301981,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, @@ -273248,16 +301992,18 @@ 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, - [238185] = 3, + [265980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(13068), 1, + sym__special_character, + STATE(4805), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273278,22 +302024,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, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [238220] = 6, + [266018] = 8, 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(12856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13075), 1, + anon_sym_LT_LT_LT, + ACTIONS(13077), 1, + sym_file_descriptor, + ACTIONS(13073), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4825), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13071), 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(12850), 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, + [266062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(1358), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273303,6 +302078,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, @@ -273315,15 +302091,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, - [238261] = 3, + aux_sym_concatenation_token1, + [266096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, + ACTIONS(1356), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 24, + ACTIONS(1354), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273346,22 +302122,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, - [238296] = 6, + [266130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(13010), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(13079), 1, sym__concat, - STATE(4370), 1, + STATE(4842), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1277), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273372,6 +302146,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, @@ -273381,22 +302157,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, - [238337] = 6, + [266170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4344), 1, + STATE(4797), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(6244), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(6242), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273406,7 +302180,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, @@ -273417,15 +302190,21 @@ 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, + anon_sym_LT_LT_LT, + [266210] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, + STATE(4804), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 24, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273435,10 +302214,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, @@ -273449,34 +302225,27 @@ 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, - [238413] = 7, + [266250] = 3, 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, + ACTIONS(2178), 3, sym_file_descriptor, + 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(2176), 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_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -273485,15 +302254,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, - [238456] = 3, + [266284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(13081), 1, + sym__special_character, + STATE(4813), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 24, + ACTIONS(1370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273503,7 +302277,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, @@ -273516,42 +302289,38 @@ static const uint16_t 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, - [238491] = 13, + [266322] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, + ACTIONS(5748), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11809), 1, + ACTIONS(13088), 1, anon_sym_LT_LT_LT, - ACTIONS(11900), 1, + ACTIONS(13090), 1, sym_file_descriptor, - STATE(4937), 1, + STATE(5104), 1, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, + ACTIONS(13086), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, + ACTIONS(5746), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4612), 3, + STATE(5376), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + ACTIONS(13084), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -273560,15 +302329,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [238546] = 3, + [266374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(13092), 1, + sym__special_character, + STATE(4802), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(6242), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273591,17 +302362,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, - [238581] = 3, + [266412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 5, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, - sym_variable_name, + STATE(4797), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(6248), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273611,7 +302385,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, @@ -273622,63 +302395,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_concatenation_token1, - anon_sym_BQUOTE, - [238616] = 13, + anon_sym_LT_LT_LT, + [266452] = 6, 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(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4527), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 21, + 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(4790), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [238671] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [266492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4194), 1, + STATE(4804), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(2182), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273688,10 +302453,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, @@ -273701,15 +302463,15 @@ 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, + [266532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(2182), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(2180), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273719,10 +302481,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273732,35 +302493,30 @@ 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, - [238747] = 7, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [266566] = 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(1320), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4645), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 17, + 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_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, @@ -273769,14 +302525,20 @@ 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, + [266600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, - sym_file_descriptor, + ACTIONS(13010), 1, + aux_sym_concatenation_token1, + ACTIONS(13012), 1, sym__concat, + STATE(4803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 24, + ACTIONS(6248), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273786,7 +302548,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, @@ -273799,21 +302560,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, - [238825] = 6, + [266640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, + ACTIONS(13010), 1, aux_sym_concatenation_token1, - ACTIONS(11731), 1, + ACTIONS(13012), 1, sym__concat, - STATE(4194), 1, + STATE(4809), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273823,7 +302582,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 +302594,15 @@ 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, + [266680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 5, + ACTIONS(1332), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(1330), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273855,8 +302612,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, @@ -273867,19 +302625,18 @@ 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, - [238901] = 5, + [266714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11915), 1, + ACTIONS(13094), 1, sym__special_character, - STATE(4181), 1, + STATE(4813), 1, aux_sym__literal_repeat1, - ACTIONS(5266), 3, + ACTIONS(5724), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 22, + ACTIONS(5722), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273889,7 +302646,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 +302658,50 @@ 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, + [266752] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11917), 1, - sym__special_character, - STATE(4318), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(12773), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13102), 1, + anon_sym_LT_LT_LT, + ACTIONS(13105), 1, + sym_file_descriptor, + ACTIONS(13099), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4825), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13096), 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(12765), 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, + [266796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13108), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(13110), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273925,6 +302713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273936,15 +302725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [238979] = 3, + [266830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(6380), 4, sym_file_descriptor, - sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(6378), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273954,10 +302743,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -273967,15 +302755,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, - [239014] = 3, + anon_sym_BQUOTE, + [266864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 24, + ACTIONS(1346), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -273998,57 +302786,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, - [239049] = 8, + [266898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11924), 1, - anon_sym_LT_LT_LT, - ACTIONS(11926), 1, + ACTIONS(6384), 4, sym_file_descriptor, - ACTIONS(11922), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4504), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11920), 8, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6382), 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_RBRACE, + anon_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), 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [266932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, - [239093] = 6, + sym__special_character, + [266966] = 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(1352), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(1350), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274058,7 +302866,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, @@ -274068,21 +302879,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, - [239133] = 6, + aux_sym_concatenation_token1, + [267000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11930), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4145), 1, + STATE(4797), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(4943), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(4941), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274103,20 +302914,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, - [239173] = 6, + [267040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11845), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4326), 1, + STATE(4804), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(4947), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(4945), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274127,8 +302938,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, @@ -274138,19 +302947,18 @@ 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, + [267080] = 4, 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(4828), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274172,19 +302980,14 @@ 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, + [267116] = 3, 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(4947), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(4945), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274194,9 +302997,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274206,14 +303009,20 @@ 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, + anon_sym_BQUOTE, + [267150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(13112), 1, + sym__special_character, + STATE(4805), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(6242), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274223,10 +303032,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 +303043,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, - [239327] = 3, + anon_sym_BQUOTE, + [267188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(13092), 1, + sym__special_character, + STATE(4802), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(6248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274267,21 +303077,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, - [239361] = 6, + [267226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12907), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(13114), 1, sym__concat, - STATE(4370), 1, + STATE(4481), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 3, + ACTIONS(1283), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(1281), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274301,56 +303111,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, - [239401] = 8, + [267266] = 5, 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(13112), 1, + sym__special_character, + STATE(4805), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 3, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 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, + 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, + anon_sym_BQUOTE, + [267304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, + ACTIONS(12907), 1, aux_sym_concatenation_token1, - ACTIONS(11936), 1, + ACTIONS(13116), 1, sym__concat, - STATE(4354), 1, + STATE(4481), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1277), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(1275), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274361,8 +303169,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, @@ -274372,14 +303178,14 @@ 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, + [267344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1358), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274389,7 +303195,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, @@ -274402,58 +303207,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, - [239519] = 8, + [267378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11942), 1, - anon_sym_LT_LT_LT, - ACTIONS(11944), 1, + ACTIONS(13118), 1, + aux_sym_concatenation_token1, + ACTIONS(13121), 1, + sym__concat, + STATE(4842), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 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, - 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, + ACTIONS(1261), 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, - [239563] = 6, + [267418] = 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(1356), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11656), 19, + ACTIONS(1354), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274464,6 +303261,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, @@ -274473,38 +303272,40 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [267452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, + ACTIONS(5587), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, + ACTIONS(13088), 1, anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(13090), 1, sym_file_descriptor, - STATE(4937), 1, + STATE(5104), 1, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(13086), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5206), 3, + ACTIONS(5583), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4731), 3, + STATE(5376), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(13084), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -274513,17 +303314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239655] = 5, + [267504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4797), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(5052), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274534,8 +303338,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, @@ -274546,38 +303348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [239693] = 12, + [267544] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, + ACTIONS(13128), 1, anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(13130), 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(12856), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(13126), 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, + STATE(4871), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13124), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -274586,45 +303374,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(12850), 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_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_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, - [239779] = 3, + [267588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, + STATE(4804), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + ACTIONS(5056), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274635,8 +303408,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, @@ -274647,20 +303418,14 @@ 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, - [239813] = 6, + [267628] = 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(5563), 2, + ACTIONS(5058), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(5056), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274670,9 +303435,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274682,21 +303447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239853] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [267662] = 5, 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(13045), 1, + sym__special_character, + STATE(4852), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11739), 19, + ACTIONS(4941), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274707,6 +303470,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,88 +303481,52 @@ 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, + [267700] = 8, 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, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(12787), 1, + anon_sym_LT_LT_LT, + ACTIONS(12921), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13132), 1, + sym_file_descriptor, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5460), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12844), 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [239933] = 6, - 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, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(12919), 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, - [239973] = 6, + [267744] = 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(1312), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1310), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274807,8 +303536,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 +303548,18 @@ 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, + aux_sym_concatenation_token1, + [267778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11963), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(13134), 1, + sym__special_character, + STATE(4852), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(1370), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274841,8 +303569,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, @@ -274852,17 +303581,21 @@ 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, + anon_sym_LT_LT_LT, + [267816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11965), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, + sym__concat, + STATE(4899), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(5722), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274872,10 +303605,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, @@ -274885,17 +303616,20 @@ 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, + [267856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, + sym__concat, + STATE(4901), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(5726), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274905,9 +303639,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, @@ -274917,23 +303650,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, - [240129] = 5, + [267896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 3, + STATE(5976), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13141), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13137), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(13139), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -274941,7 +303673,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_RBRACE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -274951,15 +303683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [240167] = 3, + [267934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(13144), 1, sym__concat, - ts_builtin_sym_end, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1281), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274969,8 +303706,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -274980,19 +303717,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, - [240201] = 5, + [267974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, + ACTIONS(13045), 1, sym__special_character, - STATE(4420), 1, + STATE(4852), 1, aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(6248), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275015,15 +303750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240239] = 3, + [268012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1346), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275033,8 +303767,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, @@ -275045,16 +303781,17 @@ 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, - [240273] = 3, + [268046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(13045), 1, + sym__special_character, + STATE(4852), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(5052), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275064,8 +303801,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, @@ -275075,20 +303813,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, - anon_sym_BQUOTE, - [240307] = 5, + anon_sym_LT_LT_LT, + [268084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 3, + ACTIONS(1273), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(1271), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275109,20 +303842,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, + sym__special_character, anon_sym_BQUOTE, - [240345] = 6, + [268118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11970), 1, + ACTIONS(12907), 1, aux_sym_concatenation_token1, - ACTIONS(11973), 1, + ACTIONS(13146), 1, sym__concat, - STATE(4354), 1, + STATE(4481), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(1283), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 21, + ACTIONS(1281), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275133,8 +303869,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, @@ -275144,14 +303878,21 @@ 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, + anon_sym_BQUOTE, + [268158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(13148), 1, sym__concat, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1275), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275162,8 +303903,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275173,19 +303913,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, + [268198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(13150), 1, + sym__concat, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 22, + ACTIONS(1275), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275195,10 +303936,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, @@ -275208,15 +303946,53 @@ 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, + anon_sym_BQUOTE, + [268238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(7683), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7681), 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, + [268272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13152), 1, + sym_variable_name, + STATE(7198), 1, + sym_subscript, + STATE(4924), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12821), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(12819), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275226,7 +304002,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, @@ -275237,53 +304012,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, - anon_sym_BQUOTE, - [240491] = 8, + [268312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, - sym_file_descriptor, - 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, - STATE(4388), 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, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, - ts_builtin_sym_end, + STATE(5066), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275304,17 +304045,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, - [240569] = 3, + sym__special_character, + [268352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13154), 1, sym__concat, - sym_variable_name, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1281), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275324,9 +304068,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, @@ -275336,55 +304079,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, - [240603] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, - sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - 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, - [240653] = 3, + anon_sym_LT_LT_LT, + [268392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13156), 1, sym__concat, - sym_variable_name, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275394,9 +304102,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, @@ -275406,24 +304113,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, - [240687] = 8, + anon_sym_LT_LT_LT, + [268432] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(12773), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11984), 1, + ACTIONS(13164), 1, anon_sym_LT_LT_LT, - ACTIONS(11986), 1, + ACTIONS(13167), 1, sym_file_descriptor, - ACTIONS(11982), 2, + ACTIONS(13161), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4409), 3, + STATE(4869), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11980), 8, + ACTIONS(13158), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -275432,7 +304139,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(12765), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275443,27 +304150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [240731] = 3, + [268476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, + ACTIONS(13088), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, @@ -275472,26 +304185,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, - anon_sym_BQUOTE, - [240765] = 8, + [268518] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11994), 1, + ACTIONS(13176), 1, anon_sym_LT_LT_LT, - ACTIONS(11997), 1, + ACTIONS(13179), 1, sym_file_descriptor, - ACTIONS(11679), 2, + ACTIONS(12773), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11991), 2, + ACTIONS(13173), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4365), 3, + STATE(4871), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11988), 8, + ACTIONS(13170), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -275500,7 +304211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11671), 9, + ACTIONS(12765), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275510,14 +304221,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [240809] = 3, + [268562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(13088), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4820), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275528,8 +304246,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, @@ -275539,51 +304255,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_LT_LT_LT, - aux_sym_concatenation_token1, - [240843] = 3, + [268602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 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, - [240877] = 5, + ACTIONS(7687), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7685), 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, + [268636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 3, + ACTIONS(1273), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275604,21 +304315,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, anon_sym_BQUOTE, - [240915] = 6, + [268670] = 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(1225), 3, + ACTIONS(1304), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(1302), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275628,7 +304334,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, @@ -275638,21 +304347,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, - [240955] = 6, + aux_sym_concatenation_token1, + [268704] = 3, 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(1360), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1358), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275663,6 +304367,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, @@ -275672,19 +304378,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, - [240995] = 5, + aux_sym_concatenation_token1, + [268738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - sym__special_character, - STATE(4376), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 3, + ACTIONS(1356), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1354), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275694,8 +304397,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, @@ -275705,15 +304409,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, - [241033] = 3, + aux_sym_concatenation_token1, + [268772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1314), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275737,21 +304441,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [241067] = 6, + [268806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(13092), 1, + sym__special_character, + STATE(4802), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5052), 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, + [268844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 3, + sym_file_descriptor, sym__concat, - STATE(4477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 4, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [268878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13112), 1, + sym__special_character, + STATE(4805), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 19, + ACTIONS(6248), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275761,6 +304526,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, @@ -275771,20 +304537,51 @@ 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, + anon_sym_BQUOTE, + [268916] = 8, 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(12980), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13182), 1, + sym_file_descriptor, + ACTIONS(5072), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4935), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12844), 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(12978), 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, + [268960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13184), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(13186), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275794,7 +304591,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275805,21 +304604,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [241147] = 6, + anon_sym_BQUOTE, + [268994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(12907), 1, aux_sym_concatenation_token1, - ACTIONS(11761), 1, + ACTIONS(12909), 1, sym__concat, - STATE(4479), 1, + STATE(4856), 1, aux_sym_concatenation_repeat1, - ACTIONS(5270), 4, + ACTIONS(1273), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 19, + ACTIONS(1271), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275839,18 +304638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241187] = 5, + sym__special_character, + [269034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12008), 1, + ACTIONS(13112), 1, sym__special_character, - STATE(4376), 1, + STATE(4805), 1, aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(5054), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(5052), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275872,14 +304672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [241225] = 3, + [269072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(13188), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(13190), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275889,9 +304689,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275902,21 +304702,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, - [241259] = 6, + anon_sym_BQUOTE, + [269106] = 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(1225), 3, + ACTIONS(5728), 4, sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(5726), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275926,7 +304721,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -275936,56 +304733,49 @@ 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, + [269140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, + sym__concat, + STATE(4838), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 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_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5722), 19, + 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(5180), 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, - [241351] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [269180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, + ACTIONS(1320), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1318), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275995,6 +304785,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, @@ -276008,14 +304799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [241385] = 3, + [269214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(1308), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(1306), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276025,7 +304817,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, @@ -276039,20 +304830,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [241419] = 6, + [269248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12907), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12909), 1, sym__concat, - STATE(4374), 1, + STATE(4840), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 3, + ACTIONS(5728), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(5726), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276072,15 +304864,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, - [241459] = 3, + [269288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(13192), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(13194), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276090,10 +304881,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276103,15 +304893,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, - [241493] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [269322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1320), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(1318), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276135,14 +304926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [241527] = 3, + [269356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, - sym_file_descriptor, + ACTIONS(13010), 1, + aux_sym_concatenation_token1, + ACTIONS(13012), 1, sym__concat, + STATE(4803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6244), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(6242), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276164,16 +304960,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, - [241561] = 3, + [269396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(1368), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(1366), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276183,7 +304977,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, @@ -276196,32 +304989,33 @@ static const uint16_t 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, - [241595] = 5, + [269430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(13092), 1, + sym__special_character, + STATE(4802), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 19, + ACTIONS(4941), 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, @@ -276230,24 +305024,37 @@ 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, + [269468] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(5074), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12020), 1, + ACTIONS(13182), 1, sym_file_descriptor, - ACTIONS(12014), 2, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5068), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5072), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(12017), 2, + ACTIONS(12846), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4388), 3, + ACTIONS(2641), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4882), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12011), 8, + ACTIONS(12844), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -276256,24 +305063,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11872), 9, + [269518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 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, - [241677] = 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, + aux_sym_concatenation_token1, + [269552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(13196), 1, sym__concat, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1281), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276283,10 +305117,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, @@ -276296,18 +305128,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, - [241711] = 4, + [269592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(13198), 1, + sym_variable_name, + STATE(7202), 1, + sym_subscript, + ACTIONS(12821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4358), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 21, + STATE(4902), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276317,9 +305151,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, @@ -276329,15 +305162,20 @@ 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, + [269632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(13200), 1, sym__concat, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1275), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276347,9 +305185,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, @@ -276359,16 +305196,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, - [241781] = 3, + [269672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(13202), 1, + sym_variable_name, + STATE(7202), 1, + sym_subscript, + ACTIONS(12829), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + STATE(4902), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12827), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276389,17 +305230,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, - anon_sym_BQUOTE, - [241815] = 3, + [269712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(1261), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276422,15 +305261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [241849] = 3, + [269746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, - sym_file_descriptor, + ACTIONS(13010), 1, + aux_sym_concatenation_token1, + ACTIONS(13012), 1, sym__concat, - ts_builtin_sym_end, + STATE(4809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(2176), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276440,8 +305283,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, @@ -276451,17 +305295,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, - [241883] = 3, + [269786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(13205), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(13207), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276473,6 +305314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276482,16 +305324,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, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [241917] = 3, + [269820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(1328), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(1326), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276501,8 +305343,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, @@ -276513,16 +305356,15 @@ 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, - [241951] = 3, + aux_sym_concatenation_token1, + [269854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 23, + ACTIONS(1330), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276546,15 +305388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [241985] = 3, + [269888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(13209), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(13211), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276566,6 +305407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276575,16 +305417,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, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [242019] = 3, + [269922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(1302), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276594,7 +305436,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, @@ -276607,18 +305448,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, - [242053] = 5, + [269956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(13213), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(13215), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276628,9 +305467,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276641,46 +305480,60 @@ 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, + anon_sym_BQUOTE, + [269990] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(5084), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, - anon_sym_SEMI, + ACTIONS(13182), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5072), 2, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + ACTIONS(5082), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4816), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12844), 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, - aux_sym_concatenation_token1, - [242125] = 3, + [270040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, sym__concat, - ts_builtin_sym_end, + STATE(4856), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(5722), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276690,8 +305543,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276701,16 +305554,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, - [242159] = 3, + [270080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(12856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13221), 1, + anon_sym_LT_LT_LT, + ACTIONS(13223), 1, + sym_file_descriptor, + ACTIONS(13219), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4931), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13217), 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(12850), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [270124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1322), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276734,19 +305621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [242193] = 6, + [270158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11843), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11845), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4326), 1, + STATE(4867), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(6242), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276756,9 +305643,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 +305654,20 @@ 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_LT_LT_LT, + [270198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4868), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 22, + ACTIONS(2176), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276788,10 +305677,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, @@ -276801,15 +305688,20 @@ 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, + anon_sym_LT_LT_LT, + [270238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, - ts_builtin_sym_end, + STATE(4867), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(6248), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276830,20 +305722,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, - [242305] = 5, + anon_sym_LT_LT_LT, + [270278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12023), 1, - sym__special_character, - STATE(4442), 1, - aux_sym__literal_repeat1, - ACTIONS(5266), 3, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4868), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 21, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276853,9 +305745,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 +305756,20 @@ 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, + anon_sym_LT_LT_LT, + [270318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, - ts_builtin_sym_end, + STATE(4867), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(4941), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276894,52 +305790,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, - [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, + [270358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, + STATE(4868), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(4945), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276949,10 +305813,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 +305824,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, - [242455] = 3, + anon_sym_LT_LT_LT, + [270398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, - ts_builtin_sym_end, + STATE(4867), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(5052), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276992,56 +305858,49 @@ 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, + anon_sym_LT_LT_LT, + [270438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4868), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4292), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 21, + 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_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, - [242539] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [270478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(13225), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(13227), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277051,9 +305910,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277063,20 +305922,23 @@ 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, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [270512] = 6, 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(2158), 2, + ACTIONS(13229), 1, + sym_variable_name, + STATE(7198), 1, + sym_subscript, + STATE(4924), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12829), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(12827), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277087,8 +305949,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, @@ -277098,15 +305958,20 @@ 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, + [270552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, sym__concat, - ts_builtin_sym_end, + STATE(4862), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(5726), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277116,8 +305981,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277127,16 +305992,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, - [242647] = 3, + [270592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, + ACTIONS(1344), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 23, + ACTIONS(1342), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277146,7 +306009,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,46 +306021,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, aux_sym_concatenation_token1, - [242681] = 3, + [270626] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, - anon_sym_SEMI, + ACTIONS(13088), 1, + anon_sym_LT_LT_LT, + ACTIONS(13090), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, - [242715] = 3, + [270678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1312), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 23, + ACTIONS(1310), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277208,6 +306080,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, @@ -277220,19 +306093,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, - [242749] = 5, + [270712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(13010), 1, + aux_sym_concatenation_token1, + ACTIONS(13012), 1, + sym__concat, + STATE(4803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 22, + ACTIONS(4941), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277242,7 +306116,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, @@ -277255,17 +306128,19 @@ 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, + [270752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12037), 1, - sym__special_character, - STATE(4420), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(13010), 1, + aux_sym_concatenation_token1, + ACTIONS(13012), 1, + sym__concat, + STATE(4809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(4945), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277287,20 +306162,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [270792] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12773), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13238), 1, anon_sym_LT_LT_LT, - [242825] = 6, + ACTIONS(13241), 1, + sym_file_descriptor, + ACTIONS(13235), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4931), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13232), 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(12765), 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_RBRACE, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [270836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4672), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(13244), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(13246), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277310,7 +306215,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277320,22 +306227,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, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [242865] = 6, + [270870] = 3, 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(13248), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 20, + ACTIONS(13250), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277347,6 +306248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277356,77 +306258,125 @@ 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_LT_LT_LT, + anon_sym_BQUOTE, + [270904] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(12787), 1, + anon_sym_LT_LT_LT, + ACTIONS(12998), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(13132), 1, + sym_file_descriptor, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5502), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12844), 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(12996), 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_LT_LT_DASH, + [270948] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12885), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13261), 1, + sym_file_descriptor, + ACTIONS(13255), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(13258), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4935), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13252), 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, - aux_sym_concatenation_token1, - [242939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(12874), 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, + [270992] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12787), 1, + anon_sym_LT_LT_LT, + ACTIONS(13016), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13132), 1, + sym_file_descriptor, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5444), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12844), 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(13014), 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, - anon_sym_BQUOTE, - [242973] = 3, + [271036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1368), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1366), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277436,8 +306386,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,46 +306399,54 @@ 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, + [271070] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(5652), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, - anon_sym_SEMI, + ACTIONS(13088), 1, + anon_sym_LT_LT_LT, + ACTIONS(13090), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5650), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, - [243041] = 3, + [271122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(1328), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 23, + ACTIONS(1326), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277511,15 +306470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243075] = 3, + [271156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 4, + ACTIONS(13264), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(13266), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277529,9 +306487,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277541,18 +306499,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, - [243109] = 5, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [271190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11976), 1, - sym__special_character, - STATE(4346), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(1308), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 22, + ACTIONS(1306), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277575,19 +306531,15 @@ 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, + aux_sym_concatenation_token1, + [271224] = 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(1225), 2, + ACTIONS(1344), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(1342), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277597,8 +306549,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, @@ -277608,20 +306562,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, - [243187] = 6, + aux_sym_concatenation_token1, + [271258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(12040), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4145), 1, + STATE(4952), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 21, + ACTIONS(6242), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277631,8 +306585,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277643,19 +306597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [243227] = 6, + [271298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(12042), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4145), 1, + STATE(4953), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 21, + ACTIONS(2176), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277665,8 +306619,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277677,14 +306631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [243267] = 3, + [271338] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, + STATE(4952), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 23, + ACTIONS(6248), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277694,10 +306653,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277707,16 +306664,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, - [243301] = 3, + anon_sym_LT_LT_LT, + [271378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, - sym_variable_name, + STATE(4953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277727,8 +306688,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277738,16 +306698,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, + anon_sym_LT_LT_LT, + [271418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 4, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, - sym_variable_name, + STATE(4952), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(4941), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277758,8 +306722,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277769,21 +306732,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, - [243369] = 6, + anon_sym_LT_LT_LT, + [271458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12044), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4438), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 20, + ACTIONS(4945), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277793,8 +306755,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277804,33 +306766,32 @@ 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, + [271498] = 6, 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(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4952), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 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, + ACTIONS(5052), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -277839,20 +306800,20 @@ 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, + anon_sym_LT_LT_LT, + [271538] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12046), 1, - sym_variable_name, - STATE(6703), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(4953), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4438), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 20, + ACTIONS(5056), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277862,8 +306823,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277873,21 +306834,15 @@ 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, + anon_sym_LT_LT_LT, + [271578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(1336), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 19, + ACTIONS(1334), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277898,6 +306853,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, @@ -277907,20 +306864,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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [271612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(13268), 1, sym__concat, - STATE(4370), 1, + STATE(4427), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 3, + ACTIONS(1283), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(1281), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277931,6 +306889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277941,20 +306900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [243571] = 6, + [271652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(13270), 1, sym__concat, - STATE(4374), 1, + STATE(4427), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 3, + ACTIONS(1277), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(1275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277965,6 +306923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277975,18 +306934,14 @@ 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, + [271692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12049), 1, - sym__special_character, - STATE(4442), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 3, + ACTIONS(1312), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, + ACTIONS(1310), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278008,14 +306963,16 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [271726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(1336), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 23, + ACTIONS(1334), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278025,6 +306982,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, @@ -278037,16 +306995,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, - [243683] = 3, + [271760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1273), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1271), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278056,6 +307012,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, @@ -278069,15 +307026,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, - [243717] = 3, + sym__special_character, + [271794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 23, + ACTIONS(1338), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278087,6 +307044,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, @@ -278099,16 +307057,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, - [243751] = 3, + [271828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, + STATE(4952), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278119,8 +307081,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, @@ -278131,15 +307091,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, - [243785] = 3, + sym__special_character, + [271868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1304), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 23, + ACTIONS(1302), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278161,17 +307122,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, - [243819] = 3, + [271902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1308), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(1306), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278193,16 +307152,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, - [243853] = 3, + [271936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1364), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1362), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278212,6 +307171,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, @@ -278225,15 +307185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243887] = 3, + [271970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 4, + ACTIONS(1324), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(1322), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278256,15 +307216,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, + [272004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1338), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278286,56 +307245,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, - [243955] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11667), 1, anon_sym_LT_LT_LT, - ACTIONS(11894), 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(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, + aux_sym_concatenation_token1, + [272038] = 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, + ACTIONS(13272), 1, + sym_variable_name, + STATE(7206), 1, + sym_subscript, + ACTIONS(12821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + STATE(4966), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278345,8 +307270,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278356,20 +307281,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, - [244039] = 6, + [272078] = 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(2158), 2, + ACTIONS(1364), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(1362), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278379,8 +307298,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, @@ -278391,19 +307311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244079] = 6, + aux_sym_concatenation_token1, + [272112] = 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(5563), 2, + ACTIONS(13274), 1, + sym_variable_name, + STATE(7206), 1, + sym_subscript, + ACTIONS(12829), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + STATE(4966), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12827), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278413,8 +307335,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278424,20 +307346,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, - [244119] = 6, + [272152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4432), 1, + STATE(4789), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(6242), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278447,7 +307368,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, @@ -278459,15 +307379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244159] = 3, + anon_sym_BQUOTE, + [272192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1368), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1366), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278477,6 +307397,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, @@ -278490,19 +307411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244193] = 6, + [272226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4431), 1, + STATE(4789), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(6248), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278512,7 +307433,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, @@ -278524,19 +307444,20 @@ 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, + anon_sym_BQUOTE, + [272266] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4432), 1, + STATE(4790), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278546,7 +307467,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, @@ -278558,19 +307478,20 @@ 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, + anon_sym_BQUOTE, + [272306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4431), 1, + STATE(4789), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(4941), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278580,7 +307501,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, @@ -278592,19 +307512,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244313] = 6, + anon_sym_BQUOTE, + [272346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4432), 1, + STATE(4790), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(4945), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278614,7 +307535,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, @@ -278626,45 +307546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244353] = 3, + anon_sym_BQUOTE, + [272386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 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, - anon_sym_LT_LT_LT, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - [244387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 3, - sym_file_descriptor, + ACTIONS(12931), 1, sym__concat, + STATE(4789), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(5052), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278675,8 +307570,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, @@ -278687,15 +307580,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, - [244421] = 3, + anon_sym_BQUOTE, + [272426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, sym__concat, + STATE(4790), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(5056), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278706,8 +307604,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, @@ -278718,14 +307614,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, - [244455] = 3, + anon_sym_BQUOTE, + [272466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(13277), 1, + sym_variable_name, + STATE(7210), 1, + sym_subscript, + ACTIONS(12821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 24, + STATE(4976), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278735,10 +307638,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, @@ -278748,16 +307648,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, - sym__special_character, - [244489] = 3, + anon_sym_BQUOTE, + [272506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, + ACTIONS(13279), 1, + sym_variable_name, + STATE(7210), 1, + sym_subscript, + ACTIONS(12829), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 23, + STATE(4976), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12827), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278767,10 +307672,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, @@ -278780,15 +307682,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, - [244523] = 3, + anon_sym_BQUOTE, + [272546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1314), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278812,14 +307714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244557] = 3, + [272580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1261), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278843,28 +307745,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244591] = 3, + [272614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, @@ -278873,16 +307778,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, - [244625] = 3, + [272652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1328), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1326), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278905,15 +307809,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, + [272686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1322), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278923,6 +307826,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 +307840,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, + [272720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(5728), 3, sym_file_descriptor, - sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(5726), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278954,6 +307857,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 +307870,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, - [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, + [272753] = 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(5563), 3, + ACTIONS(13282), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(13284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279052,7 +307887,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279062,21 +307899,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, - [244835] = 6, + anon_sym_BQUOTE, + [272786] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13286), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7139), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [272851] = 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(2162), 3, + ACTIONS(13310), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(13312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279086,7 +307963,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279096,22 +307975,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, - [244875] = 6, + anon_sym_BQUOTE, + [272884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12052), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 4, + ACTIONS(4828), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279131,22 +308007,33 @@ 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, + [272919] = 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, + ACTIONS(13323), 1, sym_file_descriptor, - ACTIONS(11665), 2, + ACTIONS(12885), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(13317), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(13320), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4975), 2, + STATE(4987), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11663), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12874), 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(13314), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -279155,33 +308042,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11902), 11, + [272962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13326), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(13328), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244959] = 6, + anon_sym_BQUOTE, + [272995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12054), 1, - sym__concat, - STATE(4156), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 4, + ACTIONS(2178), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(2176), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279191,7 +308088,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, @@ -279201,81 +308101,18 @@ 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, + [273028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, + ACTIONS(13330), 1, + sym__special_character, + STATE(5004), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 21, + ACTIONS(4941), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279286,6 +308123,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, @@ -279295,16 +308134,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, - sym__special_character, - [245107] = 3, + [273065] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13332), 1, + anon_sym_RPAREN_RPAREN, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7187), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [273130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(13334), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(13336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279314,10 +308197,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279327,15 +308209,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, - [245141] = 3, + anon_sym_BQUOTE, + [273163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(13338), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 23, + ACTIONS(13340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279345,10 +308227,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279358,39 +308239,36 @@ 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_BQUOTE, + [273196] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, + ACTIONS(4730), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - anon_sym_LT_LT_LT, - ACTIONS(11955), 1, + ACTIONS(12963), 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(4722), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4724), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(4728), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11141), 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, + STATE(4744), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(2641), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11139), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -279399,14 +308277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [245227] = 3, + [273243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(13330), 1, + sym__special_character, + STATE(5004), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(5052), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279416,7 +308297,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, @@ -279429,33 +308309,30 @@ 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, + [273280] = 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(4282), 2, + STATE(5976), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(13141), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 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, @@ -279464,88 +308341,90 @@ 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, + [273317] = 11, 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, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2641), 1, + anon_sym_BQUOTE, + ACTIONS(5674), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, - anon_sym_SEMI, + ACTIONS(13342), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5637), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12967), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5672), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12965), 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, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [245341] = 6, + [273366] = 11, 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, - sym_file_descriptor, + ACTIONS(4816), 1, + anon_sym_BQUOTE, + ACTIONS(5639), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, - anon_sym_SEMI, + ACTIONS(13342), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5637), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12967), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5635), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12965), 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, - [245381] = 6, + [273415] = 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(13344), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(13346), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279555,7 +308434,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279566,20 +308447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [245421] = 6, + [273448] = 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(2182), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(2180), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279589,7 +308463,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, @@ -279600,20 +308477,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [245461] = 6, + [273481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12060), 1, - sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(13330), 1, + sym__special_character, + STATE(5004), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4493), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 20, + ACTIONS(6242), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279624,6 +308498,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, @@ -279633,54 +308509,90 @@ static 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, - [245501] = 6, + [273518] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12062), 1, - sym_variable_name, - STATE(6672), 1, - sym_subscript, - ACTIONS(11658), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - STATE(4493), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 20, - anon_sym_SEMI, + ACTIONS(5184), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [273567] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12980), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [245541] = 6, + STATE(5012), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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(12978), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + [273610] = 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(5689), 2, + ACTIONS(13350), 1, + sym__special_character, + STATE(5004), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + ACTIONS(1370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279691,6 +308603,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, @@ -279700,21 +308614,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_BQUOTE, - [245581] = 6, + [273647] = 5, 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, + ACTIONS(13330), 1, + sym__special_character, + STATE(5004), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(6248), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279725,6 +308635,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, @@ -279734,55 +308646,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_BQUOTE, - [245621] = 6, + [273684] = 8, 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, - sym_file_descriptor, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12998), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13353), 1, + sym_file_descriptor, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5059), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12890), 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(12996), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245661] = 6, + [273727] = 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(2162), 2, + ACTIONS(13108), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(13110), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279792,7 +308698,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279802,55 +308710,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, - [245701] = 6, + [273760] = 11, 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, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, - anon_sym_SEMI, + ACTIONS(5189), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245741] = 6, + [273809] = 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(13029), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(13031), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279860,7 +308765,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, @@ -279871,31 +308779,30 @@ 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, + [273842] = 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(4309), 2, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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_PIPE_AMP, + anon_sym_RBRACE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -279904,21 +308811,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_BQUOTE, - [245821] = 6, + [273879] = 4, 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(4828), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279929,6 +308832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279938,56 +308842,95 @@ static const uint16_t ts_small_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, + [273914] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5266), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(12885), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 20, + ACTIONS(13361), 1, + sym_file_descriptor, + ACTIONS(13317), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(13358), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5012), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12874), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, + ACTIONS(13355), 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, - anon_sym_LT_LT_DASH, + [273957] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, anon_sym_BQUOTE, - [245901] = 6, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13364), 1, + anon_sym_RPAREN_RPAREN, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7090), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [274022] = 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(13366), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 20, + ACTIONS(13368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279997,7 +308940,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280008,23 +308953,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [245941] = 8, + [274055] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12071), 1, + ACTIONS(12894), 1, anon_sym_LT_LT_LT, - ACTIONS(12074), 1, + ACTIONS(13016), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13353), 1, sym_file_descriptor, - ACTIONS(12068), 2, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4504), 3, + STATE(4983), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12065), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -280033,62 +308977,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11671), 10, + ACTIONS(13014), 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [245985] = 3, + [274098] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, - anon_sym_SEMI, + ACTIONS(5201), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [274147] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12894), 1, + anon_sym_LT_LT_LT, + ACTIONS(12921), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13353), 1, + sym_file_descriptor, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + STATE(4988), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12890), 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(12919), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [246019] = 6, + [274190] = 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(5266), 3, + ACTIONS(13192), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 20, + ACTIONS(13194), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280098,8 +309077,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, @@ -280109,19 +309090,21 @@ 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, + anon_sym_LT_LT_LT, + [274223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13370), 1, sym__concat, - STATE(4672), 1, + STATE(4581), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(1283), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(1281), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280141,61 +309124,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, - [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, + [274262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 3, + ACTIONS(1320), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(1318), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280205,8 +309141,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, @@ -280216,16 +309153,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, + aux_sym_concatenation_token1, + [274295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1332), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 22, + ACTIONS(1330), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280248,14 +309184,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [246229] = 3, + [274328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 3, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13372), 1, sym__concat, + STATE(4581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 22, + ACTIONS(1275), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280266,8 +309208,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 +309217,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, - [246262] = 3, + [274367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 3, + ACTIONS(13374), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 22, + ACTIONS(13376), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280295,9 +309234,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280307,15 +309246,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, - [246295] = 3, + anon_sym_BQUOTE, + [274400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(13244), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(13246), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280327,6 +309266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280336,15 +309276,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, anon_sym_BQUOTE, - [246328] = 3, + [274433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(13209), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 23, + ACTIONS(13211), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280368,15 +309307,14 @@ 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, + [274466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 4, + ACTIONS(6392), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 21, + ACTIONS(6390), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280388,6 +309326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280398,85 +309337,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [246394] = 11, + [274499] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, + ACTIONS(2641), 1, anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(5074), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(13378), 1, sym_file_descriptor, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + ACTIONS(5126), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12913), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, + ACTIONS(5068), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4669), 3, + STATE(5155), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 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, - [246443] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(12111), 1, - 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), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12911), 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, - anon_sym_LT_LT_DASH, - [246482] = 3, + [274548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 3, + ACTIONS(1273), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(1271), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280486,8 +309391,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, @@ -280498,15 +309404,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, - [246515] = 3, + sym__special_character, + [274581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 3, + ACTIONS(1316), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, + ACTIONS(1314), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280516,8 +309422,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, @@ -280527,67 +309434,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, - [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, + aux_sym_concatenation_token1, + [274614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12119), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1263), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(1261), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280597,8 +309452,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, @@ -280608,14 +309464,18 @@ 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, + aux_sym_concatenation_token1, + [274647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 3, + ACTIONS(13380), 1, + sym__special_character, + STATE(5116), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(5052), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280625,8 +309485,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280637,20 +309497,14 @@ 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, - [246685] = 6, + [274684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12125), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(6392), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(6390), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280662,6 +309516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280671,14 +309526,15 @@ 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_BQUOTE, + [274717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 3, + ACTIONS(13051), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 22, + ACTIONS(13053), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280690,6 +309546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280699,23 +309556,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, anon_sym_BQUOTE, - [246757] = 5, + [274750] = 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(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 20, + ACTIONS(4945), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -280725,69 +309577,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [246794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 2, - sym_file_descriptor, - 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, - anon_sym_PIPE_PIPE, - anon_sym_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, - [246829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12138), 1, - sym__concat, - STATE(4214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 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, @@ -280797,14 +309586,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, + anon_sym_LT_LT_LT, + [274783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 3, + ACTIONS(13382), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(13384), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280816,6 +309606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280825,57 +309616,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_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, + [274816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13264), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13266), 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, - [246944] = 6, + anon_sym_LT_LT_LT, + [274849] = 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(4282), 3, + ACTIONS(1273), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 19, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280885,6 +309664,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, @@ -280895,23 +309675,38 @@ 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, + sym__special_character, + anon_sym_BQUOTE, + [274882] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12158), 1, - anon_sym_LT_LT_LT, - ACTIONS(12161), 1, + ACTIONS(5193), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(12155), 2, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4531), 3, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12152), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -280920,24 +309715,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11671), 9, + [274931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13386), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(13388), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_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, + anon_sym_BQUOTE, + [274964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(1273), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 22, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280947,7 +309762,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 +309774,84 @@ 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, + sym__special_character, + [274997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12173), 1, + ACTIONS(13390), 3, 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, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(13392), 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_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [275030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5019), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6244), 3, 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, + ACTIONS(6242), 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, - [247145] = 6, + [275069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4527), 1, + STATE(5022), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 3, + ACTIONS(2178), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 19, + ACTIONS(2176), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281063,13 +309871,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, + [275108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(2178), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 23, + ACTIONS(2176), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281079,10 +309888,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281092,23 +309900,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, - [247217] = 8, + anon_sym_BQUOTE, + [275141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11904), 1, + ACTIONS(12980), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, + ACTIONS(13342), 1, sym_file_descriptor, - ACTIONS(11800), 2, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12967), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4678), 2, + STATE(5064), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11798), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12965), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281117,25 +309927,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11902), 10, + ACTIONS(12978), 8, 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, - [247260] = 3, + anon_sym_BQUOTE, + [275184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, + STATE(5019), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 22, + ACTIONS(4941), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281146,8 +309960,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, @@ -281157,15 +309969,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, - [247293] = 3, + [275223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, + STATE(5022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(4945), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281176,8 +309993,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 +310002,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, - [247326] = 3, + [275262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 3, + ACTIONS(4947), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 22, + ACTIONS(4945), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281205,9 +310019,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281217,14 +310031,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, - [247359] = 3, + anon_sym_BQUOTE, + [275295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 23, + ACTIONS(5056), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281248,14 +310062,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, + [275328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(13386), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(13388), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281265,9 +310079,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281277,18 +310091,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, - [247425] = 3, + anon_sym_BQUOTE, + [275361] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 2, + STATE(5091), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13396), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13398), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 23, + ACTIONS(13394), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -281298,7 +310116,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, @@ -281307,15 +310124,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, - [247458] = 3, + [275398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 3, + ACTIONS(13400), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 22, + ACTIONS(13402), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281327,6 +310143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281336,16 +310153,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, - [247491] = 3, + [275431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 3, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 22, + ACTIONS(1358), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281368,30 +310184,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247524] = 5, + [275464] = 3, ACTIONS(3), 1, sym_comment, - STATE(4546), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(1356), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12188), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 20, + ACTIONS(1354), 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, @@ -281400,14 +310213,15 @@ 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, + aux_sym_concatenation_token1, + [275497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(13404), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(13406), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281417,9 +310231,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281429,36 +310243,72 @@ 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_BQUOTE, + [275530] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, + ACTIONS(12905), 1, + anon_sym_LT_LT_LT, + ACTIONS(12998), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(13408), 1, sym_file_descriptor, - ACTIONS(4169), 2, + ACTIONS(12967), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5059), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12965), 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(12996), 10, 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_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [275573] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(10932), 2, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4182), 3, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 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, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281467,14 +310317,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247641] = 3, + [275622] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13410), 1, + aux_sym_concatenation_token1, + ACTIONS(13412), 1, + sym__concat, + STATE(5063), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [275661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(13414), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(13416), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281486,6 +310369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281495,59 +310379,163 @@ static const uint16_t ts_small_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, + [275694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11792), 1, + ACTIONS(13410), 1, + aux_sym_concatenation_token1, + ACTIONS(13418), 1, + sym__concat, + STATE(5063), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(12191), 1, + ACTIONS(1275), 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, + [275733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, - ACTIONS(11898), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, + aux_sym_heredoc_redirect_token1, + STATE(5045), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11896), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, - ACTIONS(11790), 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [275770] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, - [247717] = 8, + [275805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, + ACTIONS(13420), 1, + aux_sym_concatenation_token1, + ACTIONS(13423), 1, + sym__concat, + STATE(5063), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 1, + ACTIONS(1261), 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, + [275844] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12885), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13432), 1, sym_file_descriptor, - ACTIONS(11898), 2, + ACTIONS(13317), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(13429), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4709), 2, + STATE(5064), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11896), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12874), 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(13426), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281556,24 +310544,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11892), 10, + [275887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13248), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(13250), 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_RBRACE, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_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, + [275920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13435), 1, + sym__concat, + STATE(4581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 23, + ACTIONS(1281), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281583,10 +310596,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, @@ -281596,59 +310607,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [247793] = 8, + [275959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 1, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13437), 1, + sym__concat, + STATE(4581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, sym_file_descriptor, - ACTIONS(11883), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 2, + ACTIONS(1275), 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_LT_LT_DASH, - ACTIONS(12196), 2, + 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, - STATE(4553), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11872), 7, + anon_sym_LT_LT_DASH, + [275998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13184), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13186), 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, - ACTIONS(12193), 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, - [247836] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [276031] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, + ACTIONS(12856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13443), 1, anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + ACTIONS(13445), 1, sym_file_descriptor, - ACTIONS(11837), 2, + ACTIONS(13441), 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, + STATE(5070), 3, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11835), 8, + aux_sym_redirected_statement_repeat2, + ACTIONS(13439), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281657,7 +310695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11902), 9, + ACTIONS(12850), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281667,36 +310705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [247879] = 11, + [276074] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, + ACTIONS(12773), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, + ACTIONS(13453), 1, + anon_sym_LT_LT_LT, + ACTIONS(13456), 1, sym_file_descriptor, - 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(13450), 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(5070), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13447), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281705,22 +310730,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247928] = 8, + ACTIONS(12765), 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, + [276117] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, + ACTIONS(12905), 1, anon_sym_LT_LT_LT, - ACTIONS(11792), 1, + ACTIONS(13016), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, + ACTIONS(13408), 1, sym_file_descriptor, - ACTIONS(11800), 2, + ACTIONS(12967), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4817), 2, + STATE(4983), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11798), 8, + ACTIONS(12965), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281729,25 +310764,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11790), 10, + ACTIONS(13014), 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, - [247971] = 3, + anon_sym_BQUOTE, + [276160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5019), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(6248), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281757,7 +310798,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, @@ -281768,46 +310808,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, - anon_sym_BQUOTE, - [248004] = 3, + [276199] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(12905), 1, + anon_sym_LT_LT_LT, + ACTIONS(12921), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13408), 1, + sym_file_descriptor, + ACTIONS(12967), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4988), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12965), 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(12919), 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, - [248037] = 3, + anon_sym_BQUOTE, + [276242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, + STATE(5022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(2180), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281818,8 +310867,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, @@ -281829,15 +310876,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, - [248070] = 3, + [276281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(2182), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(2180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281847,9 +310893,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281859,65 +310905,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, - [248103] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11809), 1, - anon_sym_LT_LT_LT, - ACTIONS(11904), 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(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, - 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, - [248146] = 5, + [276314] = 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), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5019), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 19, + ACTIONS(5052), 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, @@ -281926,60 +310939,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, - [248183] = 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(12204), 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(6482), 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, - [248248] = 3, + [276353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 23, + ACTIONS(5056), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281989,10 +310962,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, @@ -282002,15 +310972,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, - [248281] = 3, + [276392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(5058), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(5056), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282020,9 +310989,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282032,15 +311001,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_BQUOTE, + [276425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1368), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 22, + ACTIONS(1366), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282063,19 +311032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248347] = 6, + [276458] = 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(13213), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(13215), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282085,8 +311048,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, @@ -282096,19 +311061,47 @@ 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, + anon_sym_LT_LT_LT, + [276491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13410), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13459), 1, sym__concat, - STATE(4523), 1, + STATE(5058), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(1273), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [276530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13225), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(13227), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282118,8 +311111,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, @@ -282129,19 +311124,14 @@ 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, + anon_sym_LT_LT_LT, + [276563] = 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(13188), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(13190), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282151,8 +311141,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, @@ -282162,19 +311154,15 @@ 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, + [276596] = 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(13264), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(13266), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282186,6 +311174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282195,52 +311184,58 @@ 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_BQUOTE, + [276629] = 11, 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, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, - anon_sym_SEMI, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [248542] = 6, + [276678] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13461), 1, sym__concat, - STATE(4523), 1, + STATE(4581), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(1283), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(1281), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282250,8 +311245,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282261,19 +311256,19 @@ 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, + [276717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13463), 1, sym__concat, - STATE(4521), 1, + STATE(4581), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(1277), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(1275), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282283,8 +311278,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282294,19 +311289,19 @@ 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, + [276756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4523), 1, + STATE(5086), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(1271), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282316,7 +311311,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, @@ -282327,13 +311321,15 @@ 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, + sym__special_character, + [276795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(1328), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 23, + ACTIONS(1326), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282343,7 +311339,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, @@ -282356,91 +311351,66 @@ static const uint16_t 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, + aux_sym_concatenation_token1, + [276828] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 3, + ACTIONS(12870), 1, + anon_sym_LT_LT_LT, + ACTIONS(13465), 1, sym_file_descriptor, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12998), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5059), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12866), 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, - [248725] = 6, - 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, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(12996), 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_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, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [276871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 3, + STATE(5091), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 22, + ACTIONS(13467), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 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, @@ -282449,14 +311419,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, - [248797] = 3, + [276908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(1344), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 23, + ACTIONS(1342), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282466,7 +311436,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, @@ -282479,61 +311448,66 @@ static const uint16_t 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, + aux_sym_concatenation_token1, + [276941] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 23, - anon_sym_SEMI, + ACTIONS(5500), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [248863] = 5, + [276990] = 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(1336), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12218), 20, + ACTIONS(1334), 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, @@ -282542,47 +311516,15 @@ 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, + [277023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1338), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282605,36 +311547,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248972] = 11, + [277056] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(5203), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, + ACTIONS(5145), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4612), 3, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282643,14 +311585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249021] = 3, + [277105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 3, + ACTIONS(1364), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(1362), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282660,8 +311602,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 +311614,66 @@ static const uint16_t 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, + [277138] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, anon_sym_BQUOTE, - [249054] = 3, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13470), 1, + anon_sym_RPAREN_RPAREN, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7063), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13472), 1, + sym__concat, + STATE(4581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 22, + ACTIONS(1275), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282690,7 +311683,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, @@ -282701,32 +311693,28 @@ static const uint16_t ts_small_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, + [277242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 3, + ACTIONS(13474), 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), 17, + ACTIONS(13476), 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_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282735,102 +311723,28 @@ 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_BQUOTE, + [277275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11839), 1, - anon_sym_LT_LT_LT, - ACTIONS(12176), 1, + ACTIONS(13478), 3, sym_file_descriptor, - ACTIONS(11837), 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, - 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(11892), 9, + ACTIONS(13480), 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, - [249167] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4792), 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, - 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, - [249216] = 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(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_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282840,69 +311754,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [249253] = 6, - 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, - 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, - [249292] = 11, + [277308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_BQUOTE, - ACTIONS(5212), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(13482), 1, sym_file_descriptor, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 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(12868), 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, + ACTIONS(12980), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4987), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + ACTIONS(12978), 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(12866), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282911,14 +311789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [249341] = 3, + [277351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 3, + ACTIONS(1304), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(1302), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282928,8 +311806,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, @@ -282939,19 +311818,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, - [249374] = 4, + aux_sym_concatenation_token1, + [277384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(13484), 3, sym_file_descriptor, + 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(13486), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282961,7 +311836,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282972,14 +311849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [249409] = 3, + [277417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 22, + ACTIONS(1346), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283002,50 +311879,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [249442] = 5, + [277450] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12246), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, - anon_sym_SEMI, + ACTIONS(5205), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [249479] = 4, + [277499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 3, + ACTIONS(13108), 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), 19, + ACTIONS(13110), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283055,7 +311933,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, @@ -283065,17 +311946,15 @@ 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, + anon_sym_LT_LT_LT, + [277532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(1352), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 21, + ACTIONS(1350), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283097,136 +311976,45 @@ 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, + aux_sym_concatenation_token1, + [277565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11763), 1, - anon_sym_LT_LT_LT, - ACTIONS(11894), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12182), 1, + ACTIONS(1348), 3, sym_file_descriptor, - ACTIONS(11800), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4709), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11798), 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), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11883), 1, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(12259), 1, - sym_file_descriptor, - ACTIONS(12167), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12256), 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(11872), 8, + ACTIONS(1346), 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(12253), 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, - [249702] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [277598] = 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(1324), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5264), 19, + ACTIONS(1322), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283237,6 +312025,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 +312036,14 @@ 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, + [277631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(4517), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5270), 3, + ACTIONS(13244), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 19, + ACTIONS(13246), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283269,7 +312053,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, @@ -283279,14 +312066,14 @@ 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, + anon_sym_LT_LT_LT, + [277664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 3, + ACTIONS(13248), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 22, + ACTIONS(13250), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283309,20 +312096,52 @@ 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, + anon_sym_LT_LT_LT, + [277697] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5207), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [277746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12262), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(13051), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4606), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 19, + ACTIONS(13053), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283332,7 +312151,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, @@ -283342,20 +312164,14 @@ 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, + anon_sym_LT_LT_LT, + [277779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12264), 1, - sym_variable_name, - STATE(6701), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4606), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 19, + ACTIONS(1271), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283365,7 +312181,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, @@ -283375,17 +312194,18 @@ 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, + sym__special_character, + [277812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, + ACTIONS(13488), 1, sym__special_character, - STATE(4596), 1, + STATE(5116), 1, aux_sym__literal_repeat1, - ACTIONS(5563), 2, + ACTIONS(1372), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 21, + ACTIONS(1370), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283396,8 +312216,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283407,15 +312226,15 @@ 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, + anon_sym_LT_LT_LT, + [277849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 4, + ACTIONS(13491), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 21, + ACTIONS(13493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283427,6 +312246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283437,14 +312257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [249961] = 3, + [277882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 3, + ACTIONS(13029), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(13031), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283456,6 +312276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283465,70 +312286,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_LT_LT_LT, - anon_sym_BQUOTE, - [249994] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - 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, - 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, - [250033] = 10, + [277915] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11775), 1, + ACTIONS(12870), 1, + anon_sym_LT_LT_LT, + ACTIONS(13465), 1, sym_file_descriptor, - 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, + ACTIONS(12868), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4182), 3, + ACTIONS(13016), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4983), 2, 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, + sym_herestring_redirect, + ACTIONS(12866), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -283537,33 +312312,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250080] = 8, + ACTIONS(13014), 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, + [277958] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(5213), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11898), 2, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 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, + ACTIONS(5145), 3, 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, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -283572,14 +312360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250123] = 3, + [278007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 3, + ACTIONS(13495), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 22, + ACTIONS(13497), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283591,6 +312379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283600,48 +312389,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, - [250156] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(4582), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5136), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5134), 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, - [250195] = 3, + [278040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(1312), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(1310), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283651,7 +312407,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, @@ -283664,14 +312419,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, + aux_sym_concatenation_token1, + [278073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(13225), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 23, + ACTIONS(13227), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283681,10 +312437,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283694,37 +312449,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250261] = 11, + anon_sym_BQUOTE, + [278106] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(5215), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4513), 3, + ACTIONS(5145), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4669), 3, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -283733,19 +312488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250310] = 6, + [278155] = 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(13499), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 20, + ACTIONS(13501), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283755,7 +312505,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283765,20 +312517,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, + anon_sym_BQUOTE, + [278188] = 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(13503), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(13505), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283788,7 +312535,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283798,20 +312547,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, - [250388] = 6, + anon_sym_BQUOTE, + [278221] = 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(13503), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(13505), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283821,7 +312565,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283831,44 +312577,122 @@ static const uint16_t 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, + anon_sym_BQUOTE, + [278254] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4816), 1, + anon_sym_RPAREN, + ACTIONS(5084), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 22, - anon_sym_SEMI, + ACTIONS(13378), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5126), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5082), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12911), 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, - [250460] = 3, + [278303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13410), 1, + aux_sym_concatenation_token1, + ACTIONS(13459), 1, + sym__concat, + STATE(5058), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5904), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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, + [278342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13410), 1, + aux_sym_concatenation_token1, + ACTIONS(13459), 1, + sym__concat, + STATE(5060), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5908), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5906), 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, + [278381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(13380), 1, + sym__special_character, + STATE(5116), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 23, + ACTIONS(6242), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283878,10 +312702,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283892,45 +312714,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250493] = 19, + [278418] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12083), 1, + ACTIONS(13292), 1, aux_sym__c_word_token1, - ACTIONS(12085), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12273), 1, + ACTIONS(13507), 1, anon_sym_RPAREN_RPAREN, - STATE(3196), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3630), 1, sym__c_postfix_expression, - STATE(6565), 1, + STATE(7080), 1, sym__c_expression, - STATE(6686), 1, + STATE(7241), 1, sym__c_variable_assignment, - ACTIONS(12079), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3195), 7, + STATE(3627), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -283938,19 +312760,14 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [250558] = 6, + [278483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(13509), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 20, + ACTIONS(13511), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283960,7 +312777,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283970,53 +312789,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, - [250597] = 6, + anon_sym_BQUOTE, + [278516] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4620), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, - sym_file_descriptor, + ACTIONS(2639), 1, + ts_builtin_sym_end, + ACTIONS(5211), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, - anon_sym_SEMI, + ACTIONS(13482), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5209), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12866), 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250636] = 6, + [278565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(13513), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(13515), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284026,7 +312845,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284036,47 +312857,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, - [250675] = 6, + anon_sym_BQUOTE, + [278598] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4620), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, - anon_sym_SEMI, + ACTIONS(5217), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250714] = 3, + [278647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(13495), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 23, + ACTIONS(13497), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284086,10 +312913,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284099,20 +312925,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, + anon_sym_BQUOTE, + [278680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(13517), 1, + sym__special_character, + STATE(5138), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(1370), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284123,6 +312948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284132,20 +312958,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, - [250786] = 6, + [278717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4620), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(13380), 1, + sym__special_character, + STATE(5116), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(6248), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284156,6 +312979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284166,19 +312990,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250825] = 6, + [278754] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(5162), 1, + ts_builtin_sym_end, + ACTIONS(5168), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13482), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5164), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12866), 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, + [278803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13520), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(13522), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284188,7 +313045,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284198,20 +313057,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, - [250864] = 6, + anon_sym_BQUOTE, + [278836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, - aux_sym_concatenation_token1, - ACTIONS(11788), 1, - sym__concat, - STATE(4620), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(13192), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(13194), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284221,7 +313075,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284231,21 +313087,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, - [250903] = 6, + anon_sym_BQUOTE, + [278869] = 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(5563), 3, + ACTIONS(13188), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 19, + ACTIONS(13190), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284255,7 +313105,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284265,13 +313117,15 @@ 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_BQUOTE, + [278902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(13520), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 23, + ACTIONS(13522), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284281,10 +313135,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284294,54 +313147,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250975] = 6, + anon_sym_BQUOTE, + [278935] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13524), 1, + anon_sym_RPAREN_RPAREN, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7121), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279000] = 11, 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, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 19, - anon_sym_SEMI, + ACTIONS(5219), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [279049] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5149), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [251014] = 6, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [279098] = 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(13526), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 19, + ACTIONS(13528), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284351,7 +313287,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284361,20 +313299,15 @@ 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, + anon_sym_BQUOTE, + [279131] = 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(2158), 3, + ACTIONS(1308), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 19, + ACTIONS(1306), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284385,6 +313318,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, @@ -284394,14 +313329,15 @@ 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, + aux_sym_concatenation_token1, + [279164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, + ACTIONS(13526), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(13528), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284413,6 +313349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284422,49 +313359,136 @@ static const uint16_t ts_small_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, + [279197] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13530), 1, + anon_sym_RPAREN_RPAREN, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7196), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279262] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 23, - anon_sym_SEMI, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [279311] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5225), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251158] = 5, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [279360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(13041), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 21, + ACTIONS(13043), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284474,6 +313498,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, @@ -284486,47 +313511,54 @@ 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, + anon_sym_LT_LT_LT, + [279393] = 8, 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(4309), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(12980), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13378), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5194), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12911), 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, - anon_sym_LT_LT_DASH, - [251234] = 3, + ACTIONS(12978), 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, + [279436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(13532), 1, + sym__special_character, + STATE(5138), 1, + aux_sym__literal_repeat1, + ACTIONS(5724), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(5722), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284537,8 +313569,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284548,14 +313579,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, - [251267] = 3, + [279473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(13205), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 23, + ACTIONS(13207), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284579,101 +313609,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [279506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12202), 1, + ACTIONS(13534), 3, 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(13536), 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(11835), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_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_BQUOTE, + [279539] = 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(4313), 3, + ACTIONS(13538), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 19, + ACTIONS(13540), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284683,7 +313656,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284693,14 +313668,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_BQUOTE, + [279572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, - sym_file_descriptor, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, + STATE(5066), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6244), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 22, + ACTIONS(6242), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284710,9 +313691,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, @@ -284722,15 +313702,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, - [251480] = 3, + [279611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5067), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284751,21 +313735,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, - anon_sym_BQUOTE, - [251513] = 6, + [279650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12277), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4214), 1, + STATE(5066), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 20, + ACTIONS(4941), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284775,6 +313757,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, @@ -284785,20 +313768,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_BQUOTE, - [251552] = 6, + [279689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4649), 1, + STATE(5067), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 20, + ACTIONS(4945), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284808,6 +313790,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, @@ -284818,20 +313801,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_BQUOTE, - [251591] = 6, + [279728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4672), 1, + STATE(5066), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 20, + ACTIONS(6248), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284841,6 +313823,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, @@ -284851,20 +313834,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_BQUOTE, - [251630] = 6, + [279767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4649), 1, + STATE(5067), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 20, + ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284874,6 +313856,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, @@ -284884,20 +313867,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_BQUOTE, - [251669] = 6, + [279806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4672), 1, + STATE(5066), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 20, + ACTIONS(5052), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284907,6 +313889,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, @@ -284917,20 +313900,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_BQUOTE, - [251708] = 6, + [279845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4649), 1, + STATE(5067), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 20, + ACTIONS(5056), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284940,6 +313922,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, @@ -284950,20 +313933,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, - [251747] = 6, + [279884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4672), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(13542), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 20, + ACTIONS(13544), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284973,7 +313950,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284984,19 +313963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [251786] = 6, + [279917] = 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(4313), 2, + ACTIONS(6380), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 20, + ACTIONS(6378), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285006,7 +313980,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, @@ -285016,44 +313993,87 @@ static 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, - [251825] = 3, + [279950] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 2, - sym_file_descriptor, + ACTIONS(12915), 1, + anon_sym_LT_LT_LT, + ACTIONS(12998), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 23, + ACTIONS(13546), 1, + sym_file_descriptor, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5059), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12911), 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(12996), 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, + [279993] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5158), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [251858] = 3, + [280042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(13548), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 23, + ACTIONS(13550), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285063,10 +314083,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285076,15 +314095,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, - [251891] = 3, + anon_sym_BQUOTE, + [280075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(13552), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(13554), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285094,9 +314113,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285106,97 +314125,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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(4577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, - 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_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, - [252028] = 5, + [280108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 1, - sym__special_character, - STATE(4596), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(13556), 1, + sym_variable_name, + STATE(7203), 1, + sym_subscript, + ACTIONS(12821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 21, + STATE(5175), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285207,8 +314150,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 +314159,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, + [280147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(13558), 1, + sym_variable_name, + STATE(7203), 1, + sym_subscript, + ACTIONS(12829), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 23, + STATE(5175), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12827), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285234,10 +314182,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 +314192,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, - [252098] = 3, + [280186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(13561), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 23, + ACTIONS(13563), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285264,9 +314209,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285276,55 +314221,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, - sym__special_character, - [252131] = 3, + anon_sym_BQUOTE, + [280219] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 3, + ACTIONS(12870), 1, + anon_sym_LT_LT_LT, + ACTIONS(13465), 1, sym_file_descriptor, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12921), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(4988), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12866), 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(12919), 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, - anon_sym_BQUOTE, - [252164] = 5, + [280262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(13561), 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(13563), 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 +314276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -285340,20 +314286,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_BQUOTE, + [280295] = 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(13565), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(13567), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285363,7 +314304,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285373,15 +314316,15 @@ 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_BQUOTE, + [280328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 4, + ACTIONS(13565), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(13567), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285393,6 +314336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285403,55 +314347,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [252273] = 8, + [280361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6244), 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(6242), 20, 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_SEMI_SEMI, + anon_sym_RBRACE, + anon_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, + [280400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12287), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4156), 1, + STATE(5087), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(2178), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285462,6 +314403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285471,65 +314413,19 @@ 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, - 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(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, - sym_command_substitution, - [252420] = 6, + [280439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12291), 1, + ACTIONS(13049), 1, sym__concat, - STATE(4214), 1, + STATE(5086), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 20, + ACTIONS(4941), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285540,6 +314436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285549,60 +314446,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_BQUOTE, - [252459] = 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(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, + [280478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5087), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 22, + ACTIONS(4945), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285612,10 +314468,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285625,129 +314479,19 @@ 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, - 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(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, - sym_command_substitution, - [252618] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12325), 1, - anon_sym_RBRACE3, - 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, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6939), 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__, - [252676] = 3, + [280517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 20, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(13047), 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, - [252708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12341), 3, + ACTIONS(13049), 1, + sym__concat, + STATE(5086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 21, + ACTIONS(6248), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285757,8 +314501,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285768,57 +314512,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_BQUOTE, - [252740] = 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(12345), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6915), 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__, - [252798] = 3, + [280556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5087), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285828,8 +314534,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285839,15 +314545,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_BQUOTE, - [252830] = 3, + [280595] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5086), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 21, + ACTIONS(5052), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285857,8 +314567,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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285868,14 +314578,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_BQUOTE, - [252862] = 3, + [280634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5087), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(5056), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285885,10 +314600,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285898,13 +314611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252894] = 3, + [280673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 2, + ACTIONS(13569), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 22, + ACTIONS(13571), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285914,10 +314628,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_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285927,56 +314640,15 @@ 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, - 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(12359), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7326), 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__, - [252984] = 3, + [280706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 3, + ACTIONS(13573), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(13575), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285988,6 +314660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285998,56 +314671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [253016] = 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(12365), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7228), 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__, - [253074] = 3, + [280739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 3, + ACTIONS(13573), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(13575), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286059,6 +314690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286069,89 +314701,23 @@ 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, + [280772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 3, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -286159,7 +314725,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, @@ -286168,99 +314733,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, - [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, + [280809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 3, + ACTIONS(4828), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286281,85 +314764,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_BQUOTE, - [253376] = 3, + [280844] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, - sym_file_descriptor, + ACTIONS(12885), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 22, + ACTIONS(13583), 1, + sym_file_descriptor, + ACTIONS(13317), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(13580), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5194), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12874), 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(13577), 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, - sym__special_character, - [253408] = 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(12377), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7071), 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__, - [253466] = 3, + [280887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(13380), 1, + sym__special_character, + STATE(5116), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(4941), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286369,10 +314819,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286382,142 +314830,15 @@ 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, - 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(12379), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6868), 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__, - [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, - 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(12381), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7073), 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__, - [253676] = 3, + anon_sym_LT_LT_LT, + [280924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 3, + ACTIONS(6384), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5268), 21, + ACTIONS(6382), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286527,6 +314848,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, @@ -286539,56 +314861,19 @@ 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, - 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(12383), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7161), 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__, - [253766] = 3, + [280957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 21, + ACTIONS(6242), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286598,7 +314883,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, @@ -286610,55 +314894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [253798] = 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(12389), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7570), 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__, - [253856] = 3, + [280996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 22, + ACTIONS(2176), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286668,10 +314916,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, @@ -286681,13 +314926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253888] = 3, + anon_sym_BQUOTE, + [281035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 22, + ACTIONS(4941), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286697,10 +314949,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, @@ -286710,55 +314959,20 @@ 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, - 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(12399), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7268), 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__, - [253978] = 3, + [281074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12129), 22, + ACTIONS(4945), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286769,8 +314983,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, @@ -286780,14 +314992,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, - [254010] = 3, + anon_sym_BQUOTE, + [281113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 22, + ACTIONS(6248), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286797,10 +315015,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, @@ -286810,14 +315025,20 @@ 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, + anon_sym_BQUOTE, + [281152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2182), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 21, + ACTIONS(2180), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286827,7 +315048,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, @@ -286839,134 +315059,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(12405), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 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, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7374), 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__, - [254236] = 3, + [281191] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5211), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 21, + ACTIONS(5052), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286976,7 +315081,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, @@ -286988,13 +315092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254268] = 3, + [281230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(5056), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287004,10 +315114,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, @@ -287017,26 +315124,31 @@ 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, + [281269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 3, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, @@ -287045,46 +315157,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [281306] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, anon_sym_BQUOTE, - [254332] = 5, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13586), 1, + anon_sym_RPAREN_RPAREN, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7023), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281371] = 8, ACTIONS(3), 1, sym_comment, - STATE(4716), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, + ACTIONS(12915), 1, + anon_sym_LT_LT_LT, + ACTIONS(13016), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12413), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 19, + ACTIONS(13546), 1, + sym_file_descriptor, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4983), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12911), 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(13014), 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, + [281414] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12915), 1, + anon_sym_LT_LT_LT, + ACTIONS(12921), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13546), 1, + sym_file_descriptor, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4988), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12911), 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, + ACTIONS(12919), 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, + [281457] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13588), 1, + anon_sym_RPAREN_RPAREN, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7076), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281522] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12963), 1, + sym_file_descriptor, + ACTIONS(4724), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4728), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4814), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11141), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4816), 4, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + ACTIONS(11139), 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, - [254368] = 3, + [281569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 3, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13590), 1, + sym__concat, + STATE(4581), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(1281), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287094,7 +315378,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, @@ -287106,14 +315389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254400] = 3, + [281608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(13565), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5705), 21, + ACTIONS(13567), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287123,6 +315405,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,17 +315418,21 @@ 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, + [281640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12208), 2, + STATE(5976), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12206), 22, + ACTIONS(13141), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -287154,7 +315441,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, @@ -287163,14 +315449,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, - [254464] = 3, + [281676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(13474), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 22, + ACTIONS(13476), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287193,97 +315478,309 @@ 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, + [281708] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7209), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281770] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13596), 1, + anon_sym_RBRACE3, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7768), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [281828] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13612), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(8039), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [281886] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12420), 1, + ACTIONS(13614), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(8128), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [281944] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13616), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - STATE(6722), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7813), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [254554] = 16, + [282002] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12422), 1, + ACTIONS(13618), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(7314), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [282060] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13620), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - STATE(7237), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7861), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [254612] = 3, + [282118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 2, + ACTIONS(13225), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 22, + ACTIONS(13227), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287306,43 +315803,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, + [282150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 3, + ACTIONS(13374), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(13376), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287352,8 +315819,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, @@ -287363,15 +315832,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, - [254708] = 3, + [282182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 3, + ACTIONS(13382), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(13384), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287381,8 +315848,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 +315861,139 @@ static 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, + [282214] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12428), 1, + ACTIONS(13622), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7238), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7818), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [254798] = 3, + [282272] = 16, 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, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, anon_sym_BQUOTE, - [254830] = 16, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13624), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7881), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [282330] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12430), 1, + ACTIONS(13626), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6781), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7894), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [254888] = 3, + [282388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 3, + ACTIONS(13188), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(13190), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287523,8 +316003,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 +316016,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, + [282420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 2, + ACTIONS(13366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 22, + ACTIONS(13368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287598,48 +316045,97 @@ 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, + [282452] = 16, 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, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13628), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7484), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [282510] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13630), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7939), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [282568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 3, + ACTIONS(13051), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 21, + ACTIONS(13053), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287649,8 +316145,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, @@ -287660,15 +316158,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, - [255068] = 3, + [282600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 3, + ACTIONS(13029), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(13031), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287678,8 +316174,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, @@ -287689,30 +316187,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_BQUOTE, - [255100] = 5, + [282632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(13503), 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, + ACTIONS(13505), 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, @@ -287721,13 +316216,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255136] = 3, + [282664] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13632), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(8037), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [282722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(13192), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 22, + ACTIONS(13194), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287750,59 +316287,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255168] = 16, + [282754] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12440), 1, + ACTIONS(13634), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7295), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7646), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [255226] = 4, + [282812] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13292), 1, + aux_sym__c_word_token1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + STATE(7238), 1, + sym__c_expression, + STATE(7241), 1, + sym__c_variable_assignment, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3627), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [282874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(13209), 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, + ACTIONS(13211), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287813,6 +316390,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, @@ -287822,15 +316401,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255260] = 3, + anon_sym_LT_LT_LT, + [282906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1320), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(1318), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -287851,146 +316431,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [255292] = 8, + [282938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11883), 1, + ACTIONS(1328), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12448), 1, - 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, + ACTIONS(1326), 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(12442), 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, - [255334] = 8, + 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, + [282970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11894), 1, + ACTIONS(1332), 4, + sym__concat, + sym_test_operator, + sym__brace_start, 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, + ACTIONS(1330), 20, 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_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, + [283002] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, - sym_file_descriptor, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13636), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7982), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [283060] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13638), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7480), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [283118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(1334), 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, - [255408] = 8, + 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, + [283150] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13640), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(8048), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [283208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 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, + [283240] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13642), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7395), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [283298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1358), 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, + [283330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11904), 1, + ACTIONS(1356), 4, + sym__concat, + sym_test_operator, + sym__brace_start, 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, + ACTIONS(1354), 20, 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_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, + [283362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 4, + ACTIONS(1344), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 20, + ACTIONS(1342), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -288011,14 +316802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [255482] = 3, + [283394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 3, + ACTIONS(2182), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 21, + ACTIONS(2180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288028,8 +316818,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, @@ -288039,16 +316831,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, - [255514] = 3, + [283426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 4, + ACTIONS(1340), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 20, + ACTIONS(1338), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -288069,27 +316860,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [255546] = 3, + [283458] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + STATE(5266), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13398), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(13644), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13394), 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 +316891,13 @@ 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, + [283494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 3, + ACTIONS(13538), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 21, + ACTIONS(13540), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288115,8 +316907,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, @@ -288126,15 +316920,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, - [255610] = 3, + [283526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 3, + ACTIONS(13542), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 21, + ACTIONS(13544), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288144,8 +316936,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, @@ -288155,56 +316949,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, - [255642] = 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(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, + [283558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(13646), 1, + sym__special_character, + STATE(5257), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(1370), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288214,10 +316969,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288227,156 +316980,87 @@ 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, + [283594] = 18, + ACTIONS(71), 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, + ACTIONS(13651), 1, + anon_sym_LPAREN, + ACTIONS(13653), 1, + aux_sym__c_word_token1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(13657), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(13659), 1, aux_sym_number_token1, + ACTIONS(13661), 1, aux_sym_number_token2, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(13667), 1, anon_sym_BQUOTE, + ACTIONS(13669), 1, 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, - 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(12463), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(3384), 1, + sym__c_unary_expression, + STATE(3394), 1, + sym__c_binary_expression, + STATE(3454), 1, + sym__c_postfix_expression, + STATE(7231), 1, + sym__c_expression, + STATE(7235), 1, + sym__c_variable_assignment, + ACTIONS(13649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3383), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, 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, + [283656] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12469), 1, + ACTIONS(13653), 1, aux_sym__c_word_token1, - ACTIONS(12471), 1, + ACTIONS(13655), 1, + anon_sym_DOLLAR, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13661), 1, + aux_sym_number_token2, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(6395), 1, - sym__c_variable_assignment, - STATE(6429), 1, + STATE(3454), 1, + sym__c_postfix_expression, + STATE(7234), 1, sym__c_expression, - ACTIONS(12465), 2, + STATE(7235), 1, + sym__c_variable_assignment, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2902), 7, + STATE(3383), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -288384,101 +317068,73 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [255942] = 16, + [283718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, - anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(1348), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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(12483), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6819), 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__, - [256000] = 18, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [283750] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(1352), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12469), 1, - aux_sym__c_word_token1, - 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, - 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [283782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 4, + ACTIONS(1348), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 20, + ACTIONS(1346), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -288499,56 +317155,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [256094] = 16, + [283814] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12485), 1, + ACTIONS(13671), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6897), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7594), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256152] = 3, + [283872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 3, + ACTIONS(13108), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(13110), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288558,8 +317213,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, @@ -288569,15 +317226,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, - [256184] = 3, + [283904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 3, + ACTIONS(13552), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 21, + ACTIONS(13554), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288587,8 +317242,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, @@ -288598,27 +317255,29 @@ static 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, - [256216] = 3, + [283936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 3, + STATE(5266), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 21, + ACTIONS(13673), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 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, @@ -288627,72 +317286,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, - [256248] = 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, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [256280] = 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, - [256312] = 3, + [283972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 2, + ACTIONS(13184), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 22, + ACTIONS(13186), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288702,7 +317302,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, @@ -288715,13 +317314,56 @@ 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, + anon_sym_LT_LT_LT, + [284004] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13676), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7538), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [284062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288731,7 +317373,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, @@ -288744,43 +317385,14 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 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, - [256408] = 3, + [284094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 3, + ACTIONS(13029), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 21, + ACTIONS(13031), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288790,8 +317402,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 +317414,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, - [256440] = 3, + anon_sym_LT_LT_LT, + [284126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 22, + ACTIONS(1271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288819,8 +317432,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288831,13 +317443,14 @@ 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, + sym__special_character, + [284158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(13205), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 22, + ACTIONS(13207), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288847,7 +317460,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, @@ -288860,14 +317472,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, + anon_sym_LT_LT_LT, + [284190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 3, + ACTIONS(13192), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 21, + ACTIONS(13194), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288877,8 +317489,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, @@ -288888,14 +317501,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, - [256536] = 3, + anon_sym_LT_LT_LT, + [284222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 2, + ACTIONS(13264), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 22, + ACTIONS(13266), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288905,7 +317518,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, @@ -288918,13 +317530,18 @@ 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, + anon_sym_LT_LT_LT, + [284254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 2, + ACTIONS(13678), 1, + sym__special_character, + STATE(5257), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 22, + ACTIONS(6242), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288934,10 +317551,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288947,43 +317562,175 @@ 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, + [284290] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13680), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7895), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [284348] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13682), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7751), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [284406] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 20, + ACTIONS(13684), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, 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, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, + [284452] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, anon_sym_BQUOTE, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256632] = 3, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13686), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7287), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [284510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, + ACTIONS(13478), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(13480), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288993,8 +317740,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, @@ -289004,14 +317753,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, - [256664] = 3, + [284542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 2, + ACTIONS(13491), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 22, + ACTIONS(13493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289034,13 +317782,17 @@ 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, + [284574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 2, + ACTIONS(13678), 1, + sym__special_character, + STATE(5257), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 22, + ACTIONS(6248), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289050,10 +317802,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289063,127 +317813,97 @@ 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, + [284610] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12507), 1, + ACTIONS(13688), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7365), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7738), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12511), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 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, - [256818] = 16, + [284668] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12513), 1, + ACTIONS(13690), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6847), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7317), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [256876] = 3, + [284726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12493), 3, + ACTIONS(13509), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 21, + ACTIONS(13511), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289193,8 +317913,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 +317926,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, + [284758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 3, + ACTIONS(13513), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 21, + ACTIONS(13515), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289222,8 +317942,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 +317955,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, + [284790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 3, + ACTIONS(13520), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(13522), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289251,8 +317971,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 +317984,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, - [256972] = 3, + [284822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12341), 2, + ACTIONS(13520), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 22, + ACTIONS(13522), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289292,14 +318013,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, + [284854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 3, + ACTIONS(5058), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 21, + ACTIONS(5056), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289309,8 +318029,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, @@ -289320,56 +318041,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, - [257036] = 16, + anon_sym_LT_LT_LT, + [284886] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12515), 1, + ACTIONS(13692), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7433), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7342), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257094] = 3, + [284944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 2, + ACTIONS(13526), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 22, + ACTIONS(13528), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289392,13 +318113,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, + [284976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(13282), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 22, + ACTIONS(13284), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289421,100 +318142,55 @@ 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, + [285008] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12517), 1, + ACTIONS(13694), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6873), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7767), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 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, + [285066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 3, + ACTIONS(13225), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 21, + ACTIONS(13227), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289524,8 +318200,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, @@ -289535,100 +318212,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, - [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, + anon_sym_LT_LT_LT, + [285098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 2, + ACTIONS(13188), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 22, + ACTIONS(13190), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289638,7 +318229,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, @@ -289651,55 +318241,56 @@ 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, + anon_sym_LT_LT_LT, + [285130] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12529), 1, + ACTIONS(13696), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6901), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7357), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257520] = 3, + [285188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, + ACTIONS(13526), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 22, + ACTIONS(13528), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289722,149 +318313,281 @@ 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, + [285220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(13534), 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(13536), 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, + [285252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13213), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13215), 22, 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(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, - [257598] = 16, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [285284] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13698), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7383), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [285342] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13700), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7397), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [285400] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13702), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7621), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [285458] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13704), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7428), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [285516] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12535), 1, + ACTIONS(13706), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7135), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7442), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12511), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 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, - [257688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12539), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 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, - [257720] = 3, + [285574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + ACTIONS(13108), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 22, + ACTIONS(13110), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289887,363 +318610,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [257752] = 16, + [285606] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12541), 1, + ACTIONS(13708), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6924), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7458), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257810] = 16, + [285664] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12543), 1, + ACTIONS(13710), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6788), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7993), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [257868] = 3, + [285722] = 16, 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, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13606), 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, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13712), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - [257962] = 16, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7868), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [285780] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12545), 1, + ACTIONS(13714), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6984), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7474), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258020] = 5, - 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, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 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, - [258056] = 16, + [285838] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12547), 1, + ACTIONS(13716), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7504), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7486), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258114] = 16, + [285896] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12549), 1, + ACTIONS(13718), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6957), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7321), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258172] = 10, + [285954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11978), 1, + ACTIONS(13548), 2, sym_file_descriptor, - ACTIONS(4292), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(13550), 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, + [285986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(13561), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(13563), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290266,13 +318920,13 @@ 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, + [286018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(13561), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(13563), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290295,127 +318949,97 @@ 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, + [286050] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12551), 1, + ACTIONS(13720), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6716), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7510), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258340] = 3, - ACTIONS(3), 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, + [286108] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12557), 1, + ACTIONS(13722), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6992), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7526), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258430] = 3, + [286166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 3, + ACTIONS(13565), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 21, + ACTIONS(13567), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290425,8 +319049,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, @@ -290436,43 +319062,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, - [258462] = 3, - ACTIONS(3), 1, + [286198] = 18, + ACTIONS(71), 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, + ACTIONS(12461), 1, + anon_sym_DOLLAR, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13728), 1, + aux_sym__c_word_token1, + ACTIONS(13730), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + aux_sym_number_token1, + ACTIONS(13734), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13736), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13738), 1, anon_sym_BQUOTE, - [258494] = 3, + ACTIONS(13740), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(6969), 1, + sym__c_expression, + STATE(7000), 1, + sym__c_variable_assignment, + ACTIONS(13724), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3182), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [286260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 2, + ACTIONS(13495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 22, + ACTIONS(13497), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290495,13 +319135,99 @@ 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, + [286292] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12461), 1, + anon_sym_DOLLAR, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13728), 1, + aux_sym__c_word_token1, + ACTIONS(13730), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + aux_sym_number_token1, + ACTIONS(13734), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13736), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13738), 1, + anon_sym_BQUOTE, + ACTIONS(13740), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + STATE(6971), 1, + sym__c_expression, + STATE(7000), 1, + sym__c_variable_assignment, + ACTIONS(13724), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3182), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [286354] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13742), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7485), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [286412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 22, + ACTIONS(4945), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290511,7 +319237,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, @@ -290524,244 +319249,135 @@ 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, + anon_sym_LT_LT_LT, + [286444] = 10, ACTIONS(3), 1, sym_comment, - STATE(4716), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12563), 2, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(12218), 19, - anon_sym_SEMI, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [258594] = 16, + [286490] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12565), 1, + ACTIONS(13744), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7389), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7852), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 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, - [258684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - 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, - [258716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 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, - [258748] = 16, + [286548] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12567), 1, + ACTIONS(13746), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7026), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7582), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12409), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 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, - [258838] = 3, + [286606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(1273), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 22, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290771,10 +319387,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_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290784,84 +319398,98 @@ 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, + sym__special_character, + [286638] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 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, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, anon_sym_BQUOTE, - [258902] = 16, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13748), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7577), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [286696] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12569), 1, + ACTIONS(13750), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7246), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7721), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [258960] = 3, + [286754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(13244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 22, + ACTIONS(13246), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290871,7 +319499,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, @@ -290884,55 +319511,14 @@ 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, - 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(12571), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(7054), 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__, - [259050] = 3, + anon_sym_LT_LT_LT, + [286786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(13248), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, + ACTIONS(13250), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290955,55 +319541,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [259082] = 16, + [286818] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12573), 1, + ACTIONS(13752), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7118), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7676), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259140] = 3, + [286876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(13573), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(13575), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291013,6 +319599,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, @@ -291025,56 +319612,99 @@ static const uint16_t 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, + [286908] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13651), 1, + anon_sym_LPAREN, + ACTIONS(13653), 1, + aux_sym__c_word_token1, + ACTIONS(13655), 1, + anon_sym_DOLLAR, + ACTIONS(13657), 1, + anon_sym_DQUOTE, + ACTIONS(13659), 1, + aux_sym_number_token1, + ACTIONS(13661), 1, + aux_sym_number_token2, + ACTIONS(13663), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13665), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13667), 1, + anon_sym_BQUOTE, + ACTIONS(13669), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3384), 1, + sym__c_unary_expression, + STATE(3394), 1, + sym__c_binary_expression, + STATE(3454), 1, + sym__c_postfix_expression, + STATE(7012), 1, + sym__c_expression, + STATE(7235), 1, + sym__c_variable_assignment, + ACTIONS(13649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3383), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [286970] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12575), 1, + ACTIONS(13754), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7076), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7802), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259230] = 3, + [287028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 2, + ACTIONS(13573), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 22, + ACTIONS(13575), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291097,13 +319727,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, + [287060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(13051), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(13053), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291126,244 +319756,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [259294] = 3, + [287092] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(5652), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13684), 1, + sym_file_descriptor, + ACTIONS(4726), 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, + ACTIONS(5128), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [259326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12497), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 21, - anon_sym_SEMI, + ACTIONS(5585), 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_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(13086), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [259358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12180), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 22, + ACTIONS(5650), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, - [259390] = 3, + [287138] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 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, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, anon_sym_BQUOTE, - [259422] = 3, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13756), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7968), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [287196] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 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, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, 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, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13758), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7902), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, 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_POUND, + anon_sym__, + [287254] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13606), 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, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13760), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - [259516] = 16, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7987), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [287312] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12581), 1, + ACTIONS(13762), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6802), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7363), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259574] = 3, + [287370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12184), 2, + ACTIONS(13386), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12186), 22, + ACTIONS(13388), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291373,6 +319976,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 +319989,88 @@ static const uint16_t 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, + [287402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13386), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13388), 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, + [287434] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12583), 1, + ACTIONS(13764), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7090), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7332), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259664] = 3, + [287492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(13678), 1, + sym__special_character, + STATE(5257), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 22, + ACTIONS(4941), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291445,8 +320081,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291456,15 +320091,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, - [259696] = 3, + [287528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 3, + ACTIONS(2182), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(2180), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291474,8 +320107,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, @@ -291485,100 +320119,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, - [259728] = 16, + anon_sym_LT_LT_LT, + [287560] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12585), 1, + ACTIONS(13766), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7047), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7417), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259786] = 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(6628), 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, - [259848] = 3, + [287618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 22, + ACTIONS(5056), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291601,13 +320191,17 @@ 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, + [287650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(13678), 1, + sym__special_character, + STATE(5257), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(5052), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291618,8 +320212,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291629,198 +320222,204 @@ static const uint16_t 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, + [287686] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12587), 1, + ACTIONS(13768), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6736), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7517), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [259970] = 16, + [287744] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12589), 1, + ACTIONS(13770), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7107), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7940), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12593), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 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, - [260060] = 16, + [287802] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12595), 1, + ACTIONS(13772), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7124), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7450), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260118] = 3, + [287860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 2, - sym_file_descriptor, + ACTIONS(1368), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 22, + ACTIONS(1366), 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, + [287892] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5084), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13182), 1, + sym_file_descriptor, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5072), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LT_LT_DASH, + ACTIONS(5082), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4816), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12844), 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, - [260150] = 3, + [287938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 2, + ACTIONS(13495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 22, + ACTIONS(13497), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291843,14 +320442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260182] = 3, + [287970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(13390), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, + ACTIONS(13392), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291860,8 +320458,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, @@ -291871,14 +320471,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [288002] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, anon_sym_BQUOTE, - [260214] = 3, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13774), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7613), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [288060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 2, + ACTIONS(13334), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 22, + ACTIONS(13336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291901,174 +320542,323 @@ 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, + [288092] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, - sym_file_descriptor, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13776), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7362), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [288150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 22, + ACTIONS(1314), 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, - [260278] = 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, + sym_word, + [288182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(1263), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1261), 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, + [288214] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12601), 1, + ACTIONS(13778), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7013), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7717), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260336] = 16, + [288272] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12603), 1, + ACTIONS(13780), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(7711), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [288330] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13782), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - STATE(7432), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7668), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260394] = 16, + [288388] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12605), 1, + ACTIONS(13784), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(7771), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [288446] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13786), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - STATE(6825), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7295), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260452] = 6, + [288504] = 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(13484), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 19, + ACTIONS(13486), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292078,7 +320868,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, @@ -292088,19 +320881,13 @@ 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, + [288536] = 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(13503), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 19, + ACTIONS(13505), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292110,7 +320897,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, @@ -292120,55 +320910,85 @@ 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, + [288568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(2178), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 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, + [288600] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12611), 1, + ACTIONS(13788), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7148), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7359), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260586] = 3, + [288658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(6380), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(6378), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292178,7 +320998,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, @@ -292191,55 +321010,55 @@ 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, + [288690] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12613), 1, + ACTIONS(13790), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7151), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7850), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260676] = 3, + [288748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(13041), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 22, + ACTIONS(13043), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292249,7 +321068,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, @@ -292262,55 +321080,56 @@ 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, + anon_sym_LT_LT_LT, + [288780] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12615), 1, + ACTIONS(13792), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7168), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7973), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [260766] = 3, + [288838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(13264), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(13266), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292333,48 +321152,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260798] = 3, + [288870] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12980), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 20, + ACTIONS(13684), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12978), 7, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, 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, - [260830] = 6, + anon_sym_PIPE_AMP, + ACTIONS(13084), 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, + [288912] = 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(5689), 2, + ACTIONS(13344), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 19, + ACTIONS(13346), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292384,7 +321202,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, @@ -292394,19 +321215,48 @@ 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, + [288944] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4867), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(12998), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13088), 1, + anon_sym_LT_LT_LT, + ACTIONS(13794), 1, + sym_file_descriptor, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5059), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(13084), 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(12996), 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, + [288986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6384), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 19, + ACTIONS(6382), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292417,6 +321267,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, @@ -292426,30 +321278,29 @@ 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, + [289018] = 5, 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(4282), 2, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 19, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -292458,19 +321309,13 @@ 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, + [289054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4867), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(6392), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 19, + ACTIONS(6390), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292480,7 +321325,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, @@ -292490,19 +321338,13 @@ 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, + [289086] = 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(5563), 2, + ACTIONS(6392), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 19, + ACTIONS(6390), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292512,7 +321354,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, @@ -292522,19 +321367,17 @@ 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, + [289118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(4867), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(4828), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 19, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292554,162 +321397,421 @@ 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, + [289152] = 16, 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(4309), 2, - sym_file_descriptor, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13796), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7396), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [289210] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12885), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 19, + ACTIONS(13804), 1, + sym_file_descriptor, + ACTIONS(13317), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(13801), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12874), 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(13798), 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, + [289252] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13016), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13088), 1, + anon_sym_LT_LT_LT, + ACTIONS(13794), 1, + sym_file_descriptor, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4983), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(13084), 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, + ACTIONS(13014), 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, + [289294] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12921), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13088), 1, + anon_sym_LT_LT_LT, + ACTIONS(13794), 1, + sym_file_descriptor, + ACTIONS(13086), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + STATE(4988), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(13084), 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(12919), 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, - [261096] = 6, + [289336] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13807), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7930), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [289394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 4, sym__concat, - STATE(4867), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, - sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 19, + ACTIONS(1302), 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, + [289426] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13651), 1, + anon_sym_LPAREN, + ACTIONS(13653), 1, + aux_sym__c_word_token1, + ACTIONS(13655), 1, + anon_sym_DOLLAR, + ACTIONS(13657), 1, + anon_sym_DQUOTE, + ACTIONS(13659), 1, + aux_sym_number_token1, + ACTIONS(13661), 1, + aux_sym_number_token2, + ACTIONS(13663), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13665), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13667), 1, + anon_sym_BQUOTE, + ACTIONS(13669), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3384), 1, + sym__c_unary_expression, + STATE(3394), 1, + sym__c_binary_expression, + STATE(3454), 1, + sym__c_postfix_expression, + STATE(7014), 1, + sym__c_expression, + STATE(7235), 1, + sym__c_variable_assignment, + ACTIONS(13649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3383), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [289488] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5748), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13684), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5746), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, - anon_sym_LT_LT_DASH, - [261134] = 16, + [289534] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12617), 1, + ACTIONS(13809), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7359), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(8013), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261192] = 16, + [289592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(1324), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1322), 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, + [289624] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12619), 1, + ACTIONS(13811), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7184), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(8014), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261250] = 3, + [289682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 3, + ACTIONS(13404), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 21, + ACTIONS(13406), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292719,8 +321821,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 +321834,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, - [261282] = 3, + [289714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(13310), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 22, + ACTIONS(13312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292747,6 +321850,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, @@ -292759,14 +321863,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, - [261314] = 3, + [289746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13326), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13328), 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, + [289778] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13813), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7447), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [289836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(13400), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 22, + ACTIONS(13402), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292776,6 +321950,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, @@ -292788,127 +321963,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12511), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 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, - [261378] = 16, + [289868] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12621), 1, + ACTIONS(13815), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7086), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7345), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261436] = 16, + [289926] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(5587), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13684), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5583), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, + [289972] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12623), 1, + ACTIONS(13817), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7199), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7757), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261494] = 3, + [290030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(13414), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(13416), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292918,6 +322099,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, @@ -292930,56 +322112,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, - [261526] = 16, + [290062] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12625), 1, + ACTIONS(13819), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(8001), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [290120] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13821), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - STATE(7213), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7492), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261584] = 3, + [290178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 22, + ACTIONS(2176), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292989,7 +322212,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, @@ -293002,120 +322224,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261616] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 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(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, - [261662] = 16, + anon_sym_LT_LT_LT, + [290210] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12627), 1, + ACTIONS(13823), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6846), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7333), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261720] = 3, - ACTIONS(3), 1, + [290268] = 18, + ACTIONS(71), 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, + ACTIONS(13651), 1, + anon_sym_LPAREN, + ACTIONS(13653), 1, + aux_sym__c_word_token1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(13657), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(13659), 1, aux_sym_number_token1, + ACTIONS(13661), 1, aux_sym_number_token2, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(13667), 1, anon_sym_BQUOTE, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [261752] = 3, + STATE(3384), 1, + sym__c_unary_expression, + STATE(3394), 1, + sym__c_binary_expression, + STATE(3454), 1, + sym__c_postfix_expression, + STATE(7021), 1, + sym__c_expression, + STATE(7235), 1, + sym__c_variable_assignment, + ACTIONS(13649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3383), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [290330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12232), 2, + ACTIONS(5728), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12234), 22, + ACTIONS(5726), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293137,16 +322340,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, - [261784] = 3, + [290362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 4, + ACTIONS(1312), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 20, + ACTIONS(1310), 20, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, @@ -293167,121 +322369,84 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [261862] = 16, + [290394] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12629), 1, + ACTIONS(13825), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7229), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7382), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [261920] = 3, + [290452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(1308), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, + ACTIONS(1306), 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, + 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, - [261952] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [290484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 3, + ACTIONS(13244), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(13246), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293291,8 +322456,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, @@ -293302,169 +322469,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_BQUOTE, - [261984] = 16, + [290516] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12631), 1, + ACTIONS(13827), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7251), 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__, - [262042] = 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(12633), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6717), 1, + STATE(7836), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262100] = 16, + [290574] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12635), 1, + ACTIONS(13829), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(7274), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7444), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 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, + [290632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 2, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 22, + ACTIONS(4945), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293487,13 +322582,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262222] = 3, + [290664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 2, + ACTIONS(13248), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 22, + ACTIONS(13250), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293516,55 +322611,91 @@ 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, + [290696] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12645), 1, + ACTIONS(13831), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(6871), 1, sym_command_substitution, - STATE(6865), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7495), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262312] = 3, + [290754] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13182), 1, + sym_file_descriptor, + ACTIONS(5068), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5072), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12846), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2641), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12844), 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, + [290800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(13338), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 22, + ACTIONS(13340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293587,55 +322718,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262344] = 16, + [290832] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12647), 1, + ACTIONS(13833), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(7529), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [290890] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13835), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - STATE(7043), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7562), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262402] = 3, + [290948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 2, + ACTIONS(13499), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 22, + ACTIONS(13501), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293658,55 +322831,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262434] = 16, + [290980] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12327), 1, + ACTIONS(13598), 1, anon_sym_BANG2, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12337), 1, + ACTIONS(13608), 1, aux_sym__simple_variable_name_token1, - ACTIONS(12339), 1, + ACTIONS(13610), 1, sym_variable_name, - ACTIONS(12649), 1, + ACTIONS(13837), 1, anon_sym_RBRACE3, - STATE(3386), 1, + STATE(3735), 1, sym_subscript, - STATE(6311), 1, + STATE(6871), 1, + sym_command_substitution, + STATE(6875), 1, aux_sym__expansion_body_repeat1, - STATE(6377), 1, + STATE(7619), 1, + sym__expansion_body, + ACTIONS(13600), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(13592), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(13594), 4, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + [291038] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13598), 1, + anon_sym_BANG2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13608), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13610), 1, + sym_variable_name, + ACTIONS(13839), 1, + anon_sym_RBRACE3, + STATE(3735), 1, + sym_subscript, + STATE(6871), 1, sym_command_substitution, - STATE(7293), 1, + STATE(6875), 1, + aux_sym__expansion_body_repeat1, + STATE(7684), 1, sym__expansion_body, - ACTIONS(12329), 2, + ACTIONS(13600), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(12321), 4, + ACTIONS(13592), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(12323), 4, + ACTIONS(13594), 4, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym__, - [262492] = 3, + [291096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(13569), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 22, + ACTIONS(13571), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293716,6 +322931,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, @@ -293728,14 +322944,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, - [262524] = 3, + [291128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(1271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293746,8 +322961,7 @@ 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_RBRACE, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293757,80 +322971,42 @@ static const uint16_t 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, + sym__special_character, + [291159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(13386), 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(13388), 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(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, - [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, + [291190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 3, + ACTIONS(13386), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 21, + ACTIONS(13388), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293840,8 +323016,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, @@ -293851,85 +323028,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_BQUOTE, - [262666] = 3, + [291221] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 21, - anon_sym_SEMI, + ACTIONS(5500), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [262698] = 3, + [291266] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 21, - anon_sym_SEMI, + ACTIONS(5203), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [262730] = 3, + [291311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 3, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, + sym__concat, + STATE(5551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5886), 21, - anon_sym_SEMI, + ACTIONS(1271), 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, @@ -293939,25 +323128,27 @@ 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, + sym__special_character, + [291348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 3, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5527), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, - anon_sym_SEMI, + ACTIONS(1271), 18, anon_sym_PIPE_PIPE, anon_sym_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, @@ -293967,170 +323158,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, - [262794] = 3, - 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, + anon_sym_LT_LT_LT, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [262826] = 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(12651), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6752), 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__, - [262884] = 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(12653), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6810), 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__, - [262942] = 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(12655), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6741), 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__, - [263000] = 3, + [291385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12639), 3, + ACTIONS(13503), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 21, + ACTIONS(13505), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294140,8 +323176,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, @@ -294151,15 +323188,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, - [263032] = 3, + [291416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 3, + ACTIONS(13503), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 21, + ACTIONS(13505), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294169,8 +323204,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, @@ -294180,140 +323216,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, - [263064] = 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(12657), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6804), 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__, - [263122] = 3, + [291447] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(2641), 1, + anon_sym_RPAREN, + ACTIONS(5074), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, - anon_sym_SEMI, + ACTIONS(13378), 1, + sym_file_descriptor, + ACTIONS(5126), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5068), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12911), 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, - [263154] = 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(12659), 1, - anon_sym_RBRACE3, - STATE(3386), 1, - sym_subscript, - STATE(6311), 1, - aux_sym__expansion_body_repeat1, - STATE(6377), 1, - sym_command_substitution, - STATE(6770), 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__, - [263212] = 3, + [291492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 3, + STATE(5437), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(13841), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 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, @@ -294323,14 +323281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [263244] = 3, + [291527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 3, + ACTIONS(13264), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 21, + ACTIONS(13266), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294340,8 +323297,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,43 +323309,48 @@ static 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, + [291558] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, - anon_sym_SEMI, + ACTIONS(5205), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [263308] = 3, + [291603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(13538), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 22, + ACTIONS(13540), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294397,7 +323360,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,13 +323372,13 @@ 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, + [291634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(13552), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 22, + ACTIONS(13554), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294426,7 +323388,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, @@ -294439,18 +323400,21 @@ 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, + [291665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 3, + STATE(5442), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 21, + ACTIONS(13844), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -294458,7 +323422,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, @@ -294467,14 +323430,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, + [291700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 22, + ACTIONS(2176), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294484,7 +323446,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 +323458,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, + [291731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(13282), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(13284), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294609,71 +323486,49 @@ 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, + [291762] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, - sym_file_descriptor, + ACTIONS(6576), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, - anon_sym_SEMI, + ACTIONS(13851), 1, + anon_sym_LT_LT_LT, + ACTIONS(13853), 1, + sym_file_descriptor, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6574), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13849), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13847), 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, - [263614] = 5, - 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, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 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, - [263649] = 3, + [291809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(13495), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(13497), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294695,28 +323550,26 @@ 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, + [291840] = 3, ACTIONS(3), 1, sym_comment, - STATE(4957), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12668), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12222), 3, + ACTIONS(13495), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12218), 17, + ACTIONS(13497), 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, @@ -294725,13 +323578,13 @@ 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, + [291871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(13334), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, + ACTIONS(13336), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294753,49 +323606,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, + [291902] = 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(13225), 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(13227), 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, + [291933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12373), 2, + ACTIONS(13188), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12375), 21, + ACTIONS(13190), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294817,41 +323662,48 @@ 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, + [291964] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, - anon_sym_SEMI, + ACTIONS(5207), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [263855] = 3, + [292009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 2, + ACTIONS(13484), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12553), 21, + ACTIONS(13486), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294873,26 +323725,27 @@ 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, + [292040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12593), 2, + STATE(5437), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13398), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12591), 21, + ACTIONS(13855), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13394), 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, @@ -294901,33 +323754,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, + anon_sym_BQUOTE, + [292075] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - ts_builtin_sym_end, - ACTIONS(4531), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, + ACTIONS(5189), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(4527), 2, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4529), 2, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [292120] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5193), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11837), 2, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, + ACTIONS(5145), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4645), 3, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11835), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -294936,13 +323825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [263962] = 3, + [292165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(13404), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(13406), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294964,13 +323853,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, + [292196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 2, + ACTIONS(13108), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12521), 21, + ACTIONS(13110), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294992,26 +323881,28 @@ 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, + [292227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + STATE(5458), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(13857), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 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_RBRACE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -295020,13 +323911,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, + [292262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12357), 2, + ACTIONS(13310), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12355), 21, + ACTIONS(13312), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295048,28 +323939,26 @@ 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, + [292293] = 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(13326), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 17, + ACTIONS(13328), 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, @@ -295078,13 +323967,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264121] = 3, + [292324] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 2, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5213), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [292369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12279), 21, + ACTIONS(4945), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295106,13 +324030,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, + [292400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12397), 2, + ACTIONS(13244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12395), 21, + ACTIONS(13246), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295134,13 +324058,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, + [292431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12385), 2, + ACTIONS(13248), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12387), 21, + ACTIONS(13250), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295162,13 +324086,48 @@ 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, + [292462] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12639), 2, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5215), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [292507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13051), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12637), 21, + ACTIONS(13053), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295190,13 +324149,13 @@ 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, + [292538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 2, + ACTIONS(13029), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12453), 21, + ACTIONS(13031), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295218,13 +324177,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, + [292569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, + ACTIONS(13192), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, + ACTIONS(13194), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295246,13 +324205,73 @@ 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, + [292600] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5560), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13860), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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, + sym__special_character, + ACTIONS(1273), 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, + [292635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 2, + ACTIONS(13862), 1, + sym__special_character, + STATE(5519), 1, + aux_sym__literal_repeat1, + ACTIONS(5904), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5902), 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, + [292670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13338), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12641), 21, + ACTIONS(13340), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295274,28 +324293,29 @@ 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, + [292701] = 6, ACTIONS(3), 1, sym_comment, - STATE(4980), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(13851), 1, + anon_sym_LT_LT_LT, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4820), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12681), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 18, - anon_sym_SEMI, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 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_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -295304,41 +324324,48 @@ 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, + [292738] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12418), 2, - sym_file_descriptor, + ACTIONS(4816), 1, + anon_sym_RPAREN, + ACTIONS(5084), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12416), 21, - anon_sym_SEMI, + ACTIONS(13378), 1, + sym_file_descriptor, + ACTIONS(5126), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12913), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5082), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12911), 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, - [264404] = 3, + [292783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12487), 2, + ACTIONS(13344), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12489), 21, + ACTIONS(13346), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295360,54 +324387,63 @@ 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, + [292814] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12527), 2, - sym_file_descriptor, + ACTIONS(2639), 1, + ts_builtin_sym_end, + ACTIONS(5211), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12525), 21, - anon_sym_SEMI, + ACTIONS(13482), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5209), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12866), 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, - [264466] = 3, + [292859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 2, + STATE(5458), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13398), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12503), 21, + ACTIONS(13864), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13394), 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_RBRACE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -295416,61 +324452,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264497] = 3, + [292894] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 21, - anon_sym_SEMI, + ACTIONS(5217), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [264528] = 10, + [292939] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(4816), 1, anon_sym_BQUOTE, - ACTIONS(5212), 1, + ACTIONS(5639), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(13342), 1, sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, + ACTIONS(5637), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, + ACTIONS(12967), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5210), 3, + ACTIONS(5635), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4612), 3, + STATE(5045), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + ACTIONS(12965), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -295479,41 +324522,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [264573] = 3, + [292984] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 2, - sym_file_descriptor, + ACTIONS(2641), 1, + anon_sym_BQUOTE, + ACTIONS(5674), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12495), 21, - anon_sym_SEMI, + ACTIONS(13342), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5637), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12967), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5672), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5045), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12965), 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, - [264604] = 3, + [293029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 2, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12597), 21, + ACTIONS(5056), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295535,33 +324585,33 @@ 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, + [293060] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_BQUOTE, - ACTIONS(4995), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12226), 1, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4993), 2, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11898), 2, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4991), 3, + ACTIONS(5145), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4612), 3, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11896), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -295570,13 +324620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [264680] = 3, + [293105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12341), 2, + ACTIONS(13542), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12343), 21, + ACTIONS(13544), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295598,26 +324648,28 @@ 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, + [293136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12140), 2, + STATE(5442), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13398), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12142), 21, + ACTIONS(13866), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13394), 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_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -295626,13 +324678,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, + [293171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 2, + ACTIONS(13366), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12434), 21, + ACTIONS(13368), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295654,84 +324706,131 @@ 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, + [293202] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12531), 21, - anon_sym_SEMI, + ACTIONS(5219), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [264804] = 3, + [293247] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, - sym_file_descriptor, + ACTIONS(5162), 1, + ts_builtin_sym_end, + ACTIONS(5168), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 21, - anon_sym_SEMI, + ACTIONS(13482), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5166), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12868), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5164), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12866), 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, + [293292] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5201), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264835] = 5, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [293337] = 3, ACTIONS(3), 1, sym_comment, - STATE(4980), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(13374), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12683), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 18, + ACTIONS(13376), 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, @@ -295740,13 +324839,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264870] = 3, + [293368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12347), 2, + ACTIONS(13382), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12349), 21, + ACTIONS(13384), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295768,43 +324867,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264901] = 5, + [293399] = 10, 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(5149), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5130), 18, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, 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, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [293444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12501), 2, + ACTIONS(13478), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12499), 21, + ACTIONS(13480), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295826,13 +324930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264967] = 3, + [293475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12455), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12457), 21, + ACTIONS(2180), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295854,13 +324958,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264998] = 3, + [293506] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [293551] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5225), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [293596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12511), 2, + ACTIONS(13491), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12509), 21, + ACTIONS(13493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295882,13 +325056,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, + [293627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(13509), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(13511), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295910,13 +325084,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, + [293658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 2, + ACTIONS(13499), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12561), 21, + ACTIONS(13501), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295938,26 +325112,25 @@ 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, + [293689] = 3, 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, + ACTIONS(13513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 18, + ACTIONS(13515), 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, @@ -295967,15 +325140,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, - sym__special_character, - [265128] = 3, + [293720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12210), 2, + ACTIONS(13520), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12212), 21, + ACTIONS(13522), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295997,13 +325168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265159] = 3, + [293751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12297), 2, + ACTIONS(13390), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12295), 21, + ACTIONS(13392), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296025,13 +325196,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, + [293782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12401), 2, + ACTIONS(13400), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12403), 21, + ACTIONS(13402), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296053,27 +325224,26 @@ 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, + [293813] = 3, ACTIONS(3), 1, sym_comment, - STATE(5006), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, + ACTIONS(13414), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12688), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 18, + ACTIONS(13416), 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, @@ -296082,14 +325252,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, - [265256] = 3, + [293844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 2, + ACTIONS(13520), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5856), 21, + ACTIONS(13522), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296111,13 +325280,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, + [293875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12539), 2, + ACTIONS(6392), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12537), 21, + ACTIONS(6390), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296139,13 +325308,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, + [293906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, + ACTIONS(6392), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, + ACTIONS(6390), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296167,41 +325336,48 @@ 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, + [293937] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12361), 2, - sym_file_descriptor, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12363), 21, - anon_sym_SEMI, + ACTIONS(5158), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5145), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, - [265380] = 3, + [293982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12393), 2, + ACTIONS(13526), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12391), 21, + ACTIONS(13528), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296223,13 +325399,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, + [294013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12409), 2, + ACTIONS(13526), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12411), 21, + ACTIONS(13528), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296251,34 +325427,33 @@ 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, + [294044] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - ACTIONS(12676), 1, + ACTIONS(5184), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4157), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 2, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5163), 3, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -296287,27 +325462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [265489] = 6, + [294089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(5103), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(13534), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 17, + ACTIONS(13536), 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, @@ -296317,14 +325490,13 @@ 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, - [265526] = 3, + [294120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(13548), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12178), 21, + ACTIONS(13550), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296346,13 +325518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265557] = 3, + [294151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(13561), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(13563), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296374,13 +325546,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, + [294182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(13561), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 21, + ACTIONS(13563), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296402,26 +325574,28 @@ 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, + [294213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + STATE(5523), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13868), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13398), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 21, + ACTIONS(13394), 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, @@ -296430,13 +325604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265650] = 3, + [294248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12242), 2, + ACTIONS(13565), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12244), 21, + ACTIONS(13567), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296458,27 +325632,26 @@ 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, + [294279] = 3, ACTIONS(3), 1, sym_comment, - STATE(5006), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, + ACTIONS(13565), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12690), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 18, + ACTIONS(13567), 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, @@ -296487,64 +325660,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, - [265716] = 5, - ACTIONS(71), 1, + [294310] = 3, + ACTIONS(3), 1, sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 8, + ACTIONS(13569), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13571), 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_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1225), 12, - 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_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, - [265751] = 10, + [294341] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4515), 1, + ACTIONS(6581), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(13851), 1, + anon_sym_LT_LT_LT, + ACTIONS(13853), 1, sym_file_descriptor, - ACTIONS(4529), 2, + STATE(5104), 1, + sym_herestring_redirect, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + ACTIONS(6574), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(13849), 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, + STATE(5727), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + ACTIONS(13847), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -296553,48 +325724,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [265796] = 10, + [294388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2505), 1, - ts_builtin_sym_end, - ACTIONS(4792), 1, + ACTIONS(13870), 1, + sym__special_character, + STATE(5519), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12202), 1, - sym_file_descriptor, - 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, + ACTIONS(1370), 18, 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, - [265841] = 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, + [294423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(13573), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(13575), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296616,13 +325782,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, + [294454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12228), 2, + ACTIONS(13573), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12230), 21, + ACTIONS(13575), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296644,33 +325810,33 @@ 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, + [294485] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 1, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4797), 2, + ACTIONS(5147), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11800), 2, + ACTIONS(12892), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4290), 3, + ACTIONS(5145), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4669), 3, + STATE(5003), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 8, + ACTIONS(12890), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -296679,26 +325845,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [265948] = 3, + [294530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 2, + STATE(5523), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13873), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13137), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12353), 21, + ACTIONS(13139), 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, @@ -296707,24 +325875,24 @@ 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, + [294565] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, + ACTIONS(13851), 1, anon_sym_LT_LT_LT, - STATE(4937), 1, + STATE(5104), 1, sym_herestring_redirect, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4159), 2, + ACTIONS(4828), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5163), 3, + STATE(5727), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 14, + ACTIONS(4826), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -296739,13 +325907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266018] = 3, + [294604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12424), 2, + ACTIONS(13474), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12426), 21, + ACTIONS(13476), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296767,25 +325935,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266049] = 3, + [294635] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12461), 1, + anon_sym_DOLLAR, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13730), 1, + anon_sym_DQUOTE, + ACTIONS(13732), 1, + aux_sym_number_token1, + ACTIONS(13734), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13736), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13738), 1, + anon_sym_BQUOTE, + ACTIONS(13740), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13876), 1, + aux_sym__c_word_token1, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + ACTIONS(13724), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3340), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12579), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13878), 1, + sym__concat, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12577), 21, - anon_sym_SEMI, + ACTIONS(1281), 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, @@ -296795,21 +326004,49 @@ 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, + anon_sym_LT_LT_LT, + [294727] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13880), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1263), 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, + [294761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, - anon_sym_LT_LT_LT, - STATE(4937), 1, - sym_herestring_redirect, - ACTIONS(4268), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(13883), 1, + sym__concat, + STATE(4427), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 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, + ACTIONS(1275), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -296826,155 +326063,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266117] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [294797] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(12493), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12491), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13651), 1, + anon_sym_LPAREN, + ACTIONS(13655), 1, + anon_sym_DOLLAR, + ACTIONS(13657), 1, + anon_sym_DQUOTE, + ACTIONS(13659), 1, + aux_sym_number_token1, + ACTIONS(13661), 1, + aux_sym_number_token2, + ACTIONS(13663), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13665), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13667), 1, + anon_sym_BQUOTE, + ACTIONS(13669), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13885), 1, + aux_sym__c_word_token1, + STATE(3384), 1, + sym__c_unary_expression, + STATE(3394), 1, + sym__c_binary_expression, + STATE(3454), 1, + sym__c_postfix_expression, + ACTIONS(13649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3533), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294853] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13887), 1, + aux_sym__c_word_token1, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3447), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [294909] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5560), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13860), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6242), 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_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, + ACTIONS(6244), 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, - [266148] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [294943] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(12000), 1, - aux_sym_concatenation_token1, - ACTIONS(12002), 1, - sym__concat, - STATE(5181), 1, + STATE(5564), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13860), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2176), 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, + ACTIONS(2178), 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, - sym__special_character, - [266184] = 5, + anon_sym_LT_LT_LT, + [294977] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13895), 1, + anon_sym_LT_LT_LT, + ACTIONS(13897), 1, + sym_file_descriptor, + ACTIONS(12850), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(13893), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13891), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5600), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12856), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(13889), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [295019] = 16, ACTIONS(71), 1, sym_comment, - STATE(5039), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5130), 6, + ACTIONS(13651), 1, + anon_sym_LPAREN, + ACTIONS(13655), 1, anon_sym_DOLLAR, + ACTIONS(13657), 1, + anon_sym_DQUOTE, + ACTIONS(13659), 1, aux_sym_number_token1, + ACTIONS(13661), 1, aux_sym_number_token2, + ACTIONS(13663), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(13667), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(5132), 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, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [266218] = 5, + ACTIONS(13899), 1, + aux_sym__c_word_token1, + STATE(3384), 1, + sym__c_unary_expression, + STATE(3394), 1, + sym__c_binary_expression, + STATE(3454), 1, + sym__c_postfix_expression, + ACTIONS(13649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3540), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [295075] = 16, ACTIONS(71), 1, sym_comment, - STATE(5040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5134), 6, + ACTIONS(12461), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(12467), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5136), 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, - [266252] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12081), 1, + ACTIONS(13726), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, - anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12697), 1, + ACTIONS(13901), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3191), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3105), 7, + STATE(3288), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -296982,39 +326315,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266308] = 16, + [295131] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12699), 1, + ACTIONS(13903), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3107), 7, + STATE(3542), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297022,39 +326355,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266364] = 16, + [295187] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12701), 1, + ACTIONS(13905), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3114), 7, + STATE(3544), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297062,39 +326395,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266420] = 16, + [295243] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12703), 1, + ACTIONS(13907), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3119), 7, + STATE(3548), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297102,39 +326435,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266476] = 16, + [295299] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12705), 1, + ACTIONS(13909), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3120), 7, + STATE(3438), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297142,39 +326475,97 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266532] = 16, + [295355] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5560), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13860), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6248), 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(6250), 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, + [295389] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5564), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13860), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2180), 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(2182), 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, + [295423] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12707), 1, + ACTIONS(13911), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3122), 7, + STATE(3556), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297182,39 +326573,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266588] = 16, + [295479] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12709), 1, + ACTIONS(13913), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3123), 7, + STATE(3558), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297222,39 +326613,68 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266644] = 16, + [295535] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5627), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13915), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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(1273), 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, + sym__special_character, + [295569] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12711), 1, + ACTIONS(13917), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3125), 7, + STATE(3560), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297262,39 +326682,69 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266700] = 16, + [295625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(13919), 1, + sym__concat, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, + [295661] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12713), 1, + ACTIONS(13921), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3191), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3127), 7, + STATE(3347), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297302,39 +326752,72 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266756] = 16, + [295717] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5748), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13684), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5746), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, + [295759] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12715), 1, + ACTIONS(13923), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3131), 7, + STATE(3563), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297342,39 +326825,69 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266812] = 16, + [295815] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(13925), 1, + sym__concat, + STATE(4481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 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, + [295851] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, - anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12091), 1, - aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12717), 1, + ACTIONS(13927), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3191), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3133), 7, + STATE(3293), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297382,39 +326895,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266868] = 16, + [295907] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12719), 1, + ACTIONS(13929), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3135), 7, + STATE(3439), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -297422,202 +326935,84 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266924] = 5, - ACTIONS(71), 1, + [295963] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, + ACTIONS(12907), 1, aux_sym_concatenation_token1, - ACTIONS(5687), 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(5689), 12, + ACTIONS(12909), 1, + sym__concat, + STATE(5551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5724), 3, sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5722), 16, 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, - [266958] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5069), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 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(2158), 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, - [266992] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 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_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 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, - [267026] = 5, + [295999] = 8, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2160), 7, + ACTIONS(4726), 1, anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(13931), 1, + anon_sym_LT_LT_LT, + STATE(6046), 1, + sym_herestring_redirect, + STATE(5863), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 12, + ACTIONS(4828), 9, 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, - [267060] = 9, - 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, - anon_sym_LT_LT, - ACTIONS(12725), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12723), 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(12721), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [267102] = 6, + [296039] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12695), 1, - aux_sym_concatenation_token1, - ACTIONS(12731), 1, - sym__concat, - STATE(5041), 1, + STATE(5604), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - 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, - 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, - [267138] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12695), 1, - aux_sym_concatenation_token1, - ACTIONS(12733), 1, + ACTIONS(13933), 2, sym__concat, - STATE(5041), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 6, + aux_sym_concatenation_token1, + ACTIONS(5902), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1209), 13, + ACTIONS(5904), 13, sym_test_operator, sym__brace_start, anon_sym_RPAREN, @@ -297631,22 +327026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [267174] = 5, + [296073] = 5, ACTIONS(71), 1, sym_comment, - STATE(5041), 1, + STATE(5577), 1, aux_sym_concatenation_repeat1, - ACTIONS(12735), 2, + ACTIONS(13933), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1213), 6, + ACTIONS(5906), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1215), 13, + ACTIONS(5908), 13, sym_test_operator, sym__brace_start, anon_sym_RPAREN, @@ -297660,104 +327055,15 @@ 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, - sym_comment, - ACTIONS(12214), 1, - aux_sym_concatenation_token1, - ACTIONS(12267), 1, - sym__concat, - STATE(5053), 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, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - 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, - [267280] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 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(4282), 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, - [267314] = 5, + [296107] = 5, ACTIONS(71), 1, sym_comment, - STATE(5069), 1, + STATE(5560), 1, aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(13860), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(5052), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297765,7 +327071,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(5054), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297778,73 +327084,56 @@ 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, + [296141] = 16, ACTIONS(71), 1, sym_comment, - STATE(5039), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12695), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 6, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13294), 1, anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, aux_sym_number_token1, + ACTIONS(13300), 1, aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, 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, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [267382] = 5, + ACTIONS(13935), 1, + aux_sym__c_word_token1, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + ACTIONS(13288), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3440), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [296197] = 6, ACTIONS(71), 1, sym_comment, - STATE(5068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, - sym__concat, + ACTIONS(13860), 1, aux_sym_concatenation_token1, - ACTIONS(4307), 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(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_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, - [267416] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5069), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12693), 2, + ACTIONS(13937), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4311), 7, + STATE(5571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -297852,7 +327141,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(1283), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297865,153 +327154,20 @@ 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, - 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, - 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_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, - sym_comment, - ACTIONS(5287), 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(5285), 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, - [267564] = 16, - 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(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, - ACTIONS(12761), 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(2931), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [267620] = 6, + [296233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(13410), 1, aux_sym_concatenation_token1, - ACTIONS(12763), 1, + ACTIONS(13939), 1, sym__concat, - STATE(4591), 1, + STATE(5063), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(1283), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, + ACTIONS(1281), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -298028,20 +327184,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [267656] = 6, + [296269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(13410), 1, aux_sym_concatenation_token1, - ACTIONS(12765), 1, + ACTIONS(13941), 1, sym__concat, - STATE(4591), 1, + STATE(5063), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 3, + ACTIONS(1277), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 16, + ACTIONS(1275), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -298058,20 +327214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [267692] = 6, + [296305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, + ACTIONS(13410), 1, aux_sym_concatenation_token1, - ACTIONS(12267), 1, + ACTIONS(13459), 1, sym__concat, - STATE(5053), 1, + STATE(5561), 1, aux_sym_concatenation_repeat1, - ACTIONS(1225), 3, + ACTIONS(1273), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 16, + ACTIONS(1271), 16, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -298088,70 +327244,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [267728] = 16, + [296341] = 6, 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(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, - ACTIONS(12767), 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(2978), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [267784] = 8, + ACTIONS(13860), 1, + aux_sym_concatenation_token1, + ACTIONS(13943), 1, + sym__concat, + STATE(5571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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, + [296377] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11719), 1, + ACTIONS(5151), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12773), 1, - anon_sym_LT_LT_LT, - ACTIONS(12775), 1, + ACTIONS(13684), 1, sym_file_descriptor, - ACTIONS(12771), 2, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13086), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5058), 3, + ACTIONS(5145), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 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, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -298160,111 +327307,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [267824] = 8, + [296419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11679), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12783), 1, - anon_sym_LT_LT_LT, - ACTIONS(12786), 1, + STATE(5567), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13398), 2, 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, + aux_sym_heredoc_redirect_token1, + ACTIONS(13945), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13394), 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_PIPE_AMP, + 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, - ACTIONS(12777), 8, + [296453] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5567), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13947), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 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, - [267864] = 16, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [296487] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, ACTIONS(12467), 1, - anon_sym_LPAREN, - 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, - ACTIONS(12789), 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(2984), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [267920] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(13726), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12791), 1, + ACTIONS(13950), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3188), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3191), 1, + sym__c_postfix_expression, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2985), 7, + STATE(3294), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298272,71 +327405,127 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267976] = 8, + [296543] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12907), 1, + aux_sym_concatenation_token1, + ACTIONS(12909), 1, + sym__concat, + STATE(5547), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5728), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5726), 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, + [296579] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + STATE(5564), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13860), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5056), 7, anon_sym_PIPE, - ACTIONS(4268), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5058), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - ACTIONS(12793), 1, + 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, - STATE(5583), 1, - sym_herestring_redirect, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 6, + [296613] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5571), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13952), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 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), 9, + ACTIONS(1263), 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, - [268016] = 16, + anon_sym_LT_LT_LT, + [296647] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12795), 1, + ACTIONS(13955), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3188), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3191), 1, + sym__c_postfix_expression, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2996), 7, + STATE(3302), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298344,39 +327533,79 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268072] = 16, + [296703] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13732), 1, + aux_sym_number_token1, + ACTIONS(13734), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13736), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13738), 1, + anon_sym_BQUOTE, + ACTIONS(13740), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13957), 1, + aux_sym__c_word_token1, + STATE(3183), 1, + sym__c_unary_expression, + STATE(3188), 1, + sym__c_binary_expression, + STATE(3191), 1, + sym__c_postfix_expression, + ACTIONS(13724), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3328), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [296759] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13651), 1, + anon_sym_LPAREN, + ACTIONS(13655), 1, + anon_sym_DOLLAR, + ACTIONS(13657), 1, + anon_sym_DQUOTE, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13661), 1, + aux_sym_number_token2, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12797), 1, + ACTIONS(13959), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3394), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3454), 1, + sym__c_postfix_expression, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2919), 7, + STATE(3530), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298384,39 +327613,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268128] = 16, + [296815] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12799), 1, + ACTIONS(13961), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3188), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3191), 1, + sym__c_postfix_expression, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2807), 7, + STATE(3335), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298424,39 +327653,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268184] = 16, + [296871] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12801), 1, + ACTIONS(13963), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3629), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3630), 1, + sym__c_postfix_expression, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2820), 7, + STATE(3444), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298464,39 +327693,69 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268240] = 16, + [296927] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(13933), 1, + aux_sym_concatenation_token1, + ACTIONS(13965), 1, + sym__concat, + STATE(5528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 6, anon_sym_DOLLAR, - ACTIONS(10652), 1, + aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1277), 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, + [296963] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12461), 1, + anon_sym_DOLLAR, ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12803), 1, + ACTIONS(13967), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3188), 1, sym__c_binary_expression, - ACTIONS(12465), 2, + STATE(3191), 1, + sym__c_postfix_expression, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2826), 7, + STATE(3341), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298504,76 +327763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268296] = 6, - 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, - aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 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, - [268332] = 6, + [297019] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12693), 1, - aux_sym_concatenation_token1, - ACTIONS(12805), 1, - sym__concat, - STATE(5072), 1, + STATE(5560), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 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(1229), 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, - [268368] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12693), 1, - aux_sym_concatenation_token1, - ACTIONS(12807), 1, + ACTIONS(13860), 2, sym__concat, - STATE(5072), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, + aux_sym_concatenation_token1, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -298581,7 +327779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 12, + ACTIONS(4943), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298594,39 +327792,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [268404] = 16, + [297053] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12809), 1, + ACTIONS(13969), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3047), 7, + STATE(3646), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298634,39 +327832,68 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268460] = 16, + [297109] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + STATE(5604), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13933), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1273), 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, + [297143] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12811), 1, + ACTIONS(13971), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3049), 7, + STATE(3441), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298674,68 +327901,72 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268516] = 5, - ACTIONS(71), 1, + [297199] = 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, - 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, + ACTIONS(5652), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13684), 1, sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(13086), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5650), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 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, + [297241] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12816), 1, + ACTIONS(13973), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3191), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3051), 7, + STATE(3342), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298743,39 +327974,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268606] = 16, + [297297] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12818), 1, + ACTIONS(13975), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3191), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3053), 7, + STATE(3256), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298783,39 +328014,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268662] = 16, + [297353] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12820), 1, + ACTIONS(13977), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3191), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3056), 7, + STATE(3310), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298823,159 +328054,128 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268718] = 6, - ACTIONS(3), 1, + [297409] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11759), 1, - aux_sym_concatenation_token1, - ACTIONS(11761), 1, - sym__concat, - STATE(5103), 1, + STATE(5670), 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(13979), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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, - [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(1273), 12, 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, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268790] = 6, + anon_sym_LT_LT_LT, + sym__special_character, + [297443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(13410), 1, aux_sym_concatenation_token1, - ACTIONS(12822), 1, + ACTIONS(13459), 1, sym__concat, - STATE(4145), 1, + STATE(5561), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, - sym_file_descriptor, + ACTIONS(13983), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13981), 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, + [297479] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13931), 1, + anon_sym_LT_LT_LT, + STATE(6046), 1, + sym_herestring_redirect, + STATE(5863), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4726), 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, - [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, + ACTIONS(4820), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 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, - [268862] = 16, + [297515] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12826), 1, + ACTIONS(13985), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3059), 7, + STATE(3448), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298983,39 +328183,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268918] = 16, + [297571] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12828), 1, + ACTIONS(13987), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3064), 7, + STATE(3450), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299023,39 +328223,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [268974] = 16, + [297627] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12830), 1, + ACTIONS(13989), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3066), 7, + STATE(3452), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299063,39 +328263,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269030] = 16, + [297683] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12832), 1, + ACTIONS(13991), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3068), 7, + STATE(3373), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299103,79 +328303,98 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269086] = 16, + [297739] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + STATE(5664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 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, + sym__special_character, + ACTIONS(1273), 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, + [297773] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13410), 1, + aux_sym_concatenation_token1, + ACTIONS(13459), 1, + sym__concat, + STATE(5562), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13997), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(13995), 16, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(12307), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12309), 1, + sym_raw_string, + sym_ansi_c_string, 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, - ACTIONS(12834), 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(3070), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269142] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [297809] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13298), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12836), 1, + ACTIONS(13999), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3629), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3630), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3077), 7, + STATE(3453), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299183,39 +328402,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269198] = 16, + [297865] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12311), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12838), 1, + ACTIONS(14001), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13649), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3078), 7, + STATE(3526), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299223,159 +328442,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269254] = 16, + [297921] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, + ACTIONS(13290), 1, anon_sym_LPAREN, - 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, - ACTIONS(12840), 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(2829), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269310] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10646), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(10652), 1, - aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - ACTIONS(12473), 1, + ACTIONS(13298), 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, - ACTIONS(12842), 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(2835), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269366] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10646), 1, - anon_sym_DOLLAR, - ACTIONS(10652), 1, + ACTIONS(13300), 1, aux_sym_number_token2, - ACTIONS(12467), 1, - anon_sym_LPAREN, - ACTIONS(12471), 1, - anon_sym_DQUOTE, - ACTIONS(12473), 1, - aux_sym_number_token1, - ACTIONS(12475), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, + ACTIONS(13304), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(13306), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(13308), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12844), 1, + ACTIONS(14003), 1, aux_sym__c_word_token1, - STATE(2838), 1, - sym__c_postfix_expression, - STATE(2905), 1, + STATE(3628), 1, sym__c_unary_expression, - STATE(2906), 1, + STATE(3629), 1, sym__c_binary_expression, - ACTIONS(12465), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2836), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269422] = 16, - 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(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, - ACTIONS(12846), 1, - aux_sym__c_word_token1, - STATE(2838), 1, + STATE(3630), 1, sym__c_postfix_expression, - STATE(2905), 1, - sym__c_unary_expression, - STATE(2906), 1, - sym__c_binary_expression, - ACTIONS(12465), 2, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2837), 7, + STATE(3445), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299383,31 +328482,31 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269478] = 9, + [297977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, + ACTIONS(5587), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(13684), 1, sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + ACTIONS(5585), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11951), 2, + ACTIONS(13086), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5159), 3, + ACTIONS(5583), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4731), 3, + STATE(5376), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 8, + ACTIONS(13084), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -299416,39 +328515,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [269520] = 16, + [298019] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12301), 1, - anon_sym_LPAREN, - ACTIONS(12305), 1, + ACTIONS(14014), 1, + anon_sym_LT_LT_LT, + ACTIONS(14017), 1, + sym_file_descriptor, + ACTIONS(12765), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(14011), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14008), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5600), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12773), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(14005), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [298061] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12461), 1, anon_sym_DOLLAR, - ACTIONS(12307), 1, + ACTIONS(12467), 1, + aux_sym_number_token2, + ACTIONS(13726), 1, + anon_sym_LPAREN, + ACTIONS(13730), 1, anon_sym_DQUOTE, - ACTIONS(12309), 1, + ACTIONS(13732), 1, aux_sym_number_token1, - ACTIONS(12311), 1, - aux_sym_number_token2, - ACTIONS(12313), 1, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, + ACTIONS(13736), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12848), 1, + ACTIONS(14020), 1, aux_sym__c_word_token1, - STATE(3165), 1, + STATE(3183), 1, sym__c_unary_expression, - STATE(3170), 1, + STATE(3188), 1, sym__c_binary_expression, - STATE(3171), 1, + STATE(3191), 1, sym__c_postfix_expression, - ACTIONS(12299), 2, + ACTIONS(13724), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3263), 7, + STATE(3345), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299456,15 +328588,42 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269576] = 5, + [298117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 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, + [298147] = 5, ACTIONS(71), 1, sym_comment, - STATE(5190), 1, + STATE(5564), 1, aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, + ACTIONS(13860), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 7, + ACTIONS(4945), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -299472,155 +328631,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 12, + ACTIONS(4947), 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, - sym__special_character, - [269610] = 13, + anon_sym_LT_LT_LT, + [298181] = 6, 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(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, - 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, - [269660] = 9, + ACTIONS(13933), 1, + aux_sym_concatenation_token1, + ACTIONS(14022), 1, + sym__concat, + STATE(5528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1283), 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, + [298217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12432), 1, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, + sym__concat, + STATE(5676), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5161), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 17, 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_AMP, - anon_sym_SEMI_SEMI, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 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, - [269702] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5182), 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(5180), 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, - [269744] = 16, + anon_sym_LT_LT_DASH, + sym__special_character, + [298253] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(13651), 1, anon_sym_LPAREN, - ACTIONS(12085), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(12087), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(12089), 1, + ACTIONS(13659), 1, aux_sym_number_token1, - ACTIONS(12091), 1, + ACTIONS(13661), 1, aux_sym_number_token2, - ACTIONS(12093), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(13667), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(13669), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12862), 1, + ACTIONS(14024), 1, aux_sym__c_word_token1, - STATE(3196), 1, + STATE(3384), 1, sym__c_unary_expression, - STATE(3199), 1, + STATE(3394), 1, sym__c_binary_expression, - STATE(3201), 1, + STATE(3454), 1, sym__c_postfix_expression, - ACTIONS(12079), 2, + ACTIONS(13649), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3528), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [298309] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13290), 1, + anon_sym_LPAREN, + ACTIONS(13294), 1, + anon_sym_DOLLAR, + ACTIONS(13296), 1, + anon_sym_DQUOTE, + ACTIONS(13298), 1, + aux_sym_number_token1, + ACTIONS(13300), 1, + aux_sym_number_token2, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14026), 1, + aux_sym__c_word_token1, + STATE(3628), 1, + sym__c_unary_expression, + STATE(3629), 1, + sym__c_binary_expression, + STATE(3630), 1, + sym__c_postfix_expression, + ACTIONS(13288), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3275), 7, + STATE(3443), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -299628,176 +328784,120 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269800] = 5, + [298365] = 8, ACTIONS(3), 1, sym_comment, - STATE(5099), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, - sym_file_descriptor, + ACTIONS(12856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12864), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12218), 17, - anon_sym_SEMI, + ACTIONS(14032), 1, + anon_sym_LT_LT_LT, + ACTIONS(14034), 1, + sym_file_descriptor, + ACTIONS(14030), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12850), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(14028), 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, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [269834] = 5, + [298405] = 8, ACTIONS(3), 1, sym_comment, - STATE(5099), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12136), 2, - sym_file_descriptor, + ACTIONS(12773), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12866), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12131), 17, - anon_sym_SEMI, + ACTIONS(14042), 1, + anon_sym_LT_LT_LT, + ACTIONS(14045), 1, + sym_file_descriptor, + ACTIONS(14039), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5609), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12765), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(14036), 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, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [269868] = 5, + [298445] = 13, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 7, + ACTIONS(4726), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1225), 12, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14054), 1, + anon_sym_LT_LT_LT, + ACTIONS(14056), 1, sym_file_descriptor, + STATE(5970), 1, + sym_herestring_redirect, + ACTIONS(6645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 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, - sym__special_character, - [269902] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - STATE(5583), 1, - sym_herestring_redirect, - STATE(5381), 3, + STATE(5681), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4157), 7, - anon_sym_PIPE, + ACTIONS(14048), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_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, - 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(7790), 1, - sym_variable_name, - ACTIONS(12873), 1, - anon_sym_DOLLAR, - ACTIONS(12875), 1, - anon_sym_RBRACE3, - ACTIONS(12877), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12879), 1, - anon_sym_BQUOTE, - ACTIONS(12881), 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, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269992] = 6, + [298495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(12883), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4156), 1, + STATE(5527), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 3, + ACTIONS(6244), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, + ACTIONS(6242), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299814,50 +328914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270028] = 6, + anon_sym_LT_LT_LT, + [298531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11759), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(12885), 1, + ACTIONS(12931), 1, sym__concat, - STATE(4156), 1, + STATE(5529), 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, - [270064] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12887), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(11741), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5106), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 16, + ACTIONS(2176), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299874,20 +328944,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270100] = 6, + anon_sym_LT_LT_LT, + [298567] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12889), 1, - sym_variable_name, - STATE(6633), 1, - sym_subscript, - ACTIONS(11658), 2, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5527), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5106), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11656), 16, + ACTIONS(6248), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299904,19 +328974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270136] = 6, + anon_sym_LT_LT_LT, + [298603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5078), 1, + STATE(5529), 1, aux_sym_concatenation_repeat1, - ACTIONS(5689), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 17, + ACTIONS(2180), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299934,19 +329005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270172] = 6, + [298639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5079), 1, + STATE(5527), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 17, + ACTIONS(4941), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299964,19 +329035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270208] = 6, + [298675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5078), 1, + STATE(5529), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 17, + ACTIONS(4945), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -299994,19 +329065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270244] = 6, + [298711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5079), 1, + STATE(5527), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 17, + ACTIONS(5052), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300024,19 +329095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270280] = 6, + [298747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11786), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(11788), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5078), 1, + STATE(5529), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 17, + ACTIONS(5056), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300054,19 +329125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270316] = 6, + [298783] = 6, 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(4439), 2, + ACTIONS(14058), 1, + sym_variable_name, + STATE(7212), 1, + sym_subscript, + ACTIONS(12821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 17, + STATE(5620), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300083,20 +329155,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, - [270352] = 6, + [298819] = 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(4309), 2, + ACTIONS(14060), 1, + sym_variable_name, + STATE(7212), 1, + sym_subscript, + ACTIONS(12829), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 17, + STATE(5620), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12827), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -300113,16 +329185,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, - [270388] = 5, + [298855] = 15, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1223), 8, + ACTIONS(8482), 1, + anon_sym_LPAREN, + ACTIONS(8492), 1, + anon_sym_DQUOTE, + ACTIONS(8500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8512), 1, + sym_variable_name, + ACTIONS(14065), 1, + anon_sym_DOLLAR, + ACTIONS(14067), 1, + anon_sym_RBRACE3, + ACTIONS(14069), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14071), 1, + anon_sym_BQUOTE, + ACTIONS(14073), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(7111), 1, + sym_process_substitution, + STATE(7997), 1, + sym__concatenation_in_expansion, + ACTIONS(8153), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(14063), 4, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6957), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [298909] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1326), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300130,9 +329235,9 @@ 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(1328), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -300143,30 +329248,32 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [298938] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5852), 1, + ACTIONS(6581), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, + ACTIONS(14075), 1, sym_file_descriptor, - ACTIONS(4157), 2, + ACTIONS(4726), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4529), 2, + ACTIONS(5128), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + ACTIONS(6574), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 2, + ACTIONS(13849), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5163), 3, + STATE(5727), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + ACTIONS(13847), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -300175,18 +329282,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [270463] = 4, + [298979] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12900), 1, + ACTIONS(14081), 1, anon_sym_esac, - ACTIONS(12896), 5, + ACTIONS(14077), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12898), 15, + ACTIONS(14079), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -300202,15 +329309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [270494] = 5, + [299010] = 3, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(1306), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300218,8 +329320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 11, + ACTIONS(1308), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -300230,15 +329333,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270527] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [299039] = 12, ACTIONS(71), 1, sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, + anon_sym_LT_LT, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7952), 1, + anon_sym_RBRACK, + ACTIONS(14083), 1, + sym_file_descriptor, + ACTIONS(6645), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [299086] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13915), 1, aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(14085), 1, + sym__concat, + STATE(5632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300246,72 +329387,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 11, + ACTIONS(1283), 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, - [270560] = 19, + [299121] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(6576), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14075), 1, + sym_file_descriptor, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6574), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13849), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13847), 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, + [299162] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13915), 1, + aux_sym_concatenation_token1, + ACTIONS(14087), 1, + sym__concat, + STATE(5632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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, + [299197] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14081), 1, + anon_sym_esac, + ACTIONS(14077), 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(14079), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, 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, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12914), 1, - anon_sym_RBRACE3, - ACTIONS(12916), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12922), 1, - aux_sym__simple_variable_name_token1, - STATE(5452), 1, - 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [299228] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, + ACTIONS(14093), 1, anon_sym_esac, - ACTIONS(12924), 5, + ACTIONS(14089), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12926), 15, + ACTIONS(14091), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -300327,15 +329514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [270652] = 5, + [299259] = 5, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, + STATE(5632), 1, aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, + ACTIONS(14095), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4307), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300343,27 +329530,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + ACTIONS(1263), 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, - [270685] = 5, + [299292] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14102), 1, + anon_sym_esac, + ACTIONS(14098), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14100), 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, + [299323] = 5, ACTIONS(71), 1, sym_comment, - STATE(5159), 1, + STATE(5671), 1, aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, + ACTIONS(13979), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 7, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300371,27 +329585,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 11, + ACTIONS(2178), 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, + anon_sym_LT_LT_LT, + [299356] = 5, ACTIONS(71), 1, sym_comment, - STATE(5190), 1, + STATE(5670), 1, aux_sym_concatenation_repeat1, - ACTIONS(12850), 2, + ACTIONS(13979), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5264), 7, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300399,9 +329613,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(4943), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -300411,124 +329624,54 @@ 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, + [299389] = 12, 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(4726), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5270), 11, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8013), 1, + anon_sym_RBRACK, + ACTIONS(14083), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(6645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 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, - [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, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [299436] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, + ACTIONS(14102), 1, anon_sym_esac, - ACTIONS(12924), 5, + ACTIONS(14098), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12926), 15, + ACTIONS(14100), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -300544,43 +329687,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [270902] = 3, + [299467] = 10, ACTIONS(71), 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, - 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(12874), 1, + anon_sym_PIPE, + ACTIONS(14107), 1, + anon_sym_LT_LT, + ACTIONS(14116), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14119), 1, + sym_file_descriptor, + ACTIONS(14113), 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, + STATE(5638), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12885), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(14104), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [299510] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 6, + ACTIONS(1366), 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(1368), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -300596,50 +329746,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [270960] = 10, + [299539] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5925), 1, - anon_sym_LT_LT, - ACTIONS(5927), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11780), 1, + STATE(5671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13979), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4945), 7, anon_sym_PIPE, - ACTIONS(12930), 1, - sym_file_descriptor, - 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(5171), 3, - sym_file_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, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [271003] = 3, + ACTIONS(4947), 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, + [299572] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 6, + ACTIONS(1314), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1262), 15, + ACTIONS(1316), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -300655,17 +329800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271032] = 3, + [299601] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 6, + ACTIONS(1261), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1270), 15, + ACTIONS(1263), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -300681,45 +329826,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271061] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 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(4282), 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, - [271094] = 6, + [299630] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12934), 1, + ACTIONS(14122), 1, sym_variable_name, - STATE(6657), 1, + STATE(7208), 1, sym_subscript, - STATE(5173), 2, + STATE(5643), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11739), 7, + ACTIONS(12827), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300727,7 +329844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11741), 10, + ACTIONS(12829), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300738,41 +329855,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [299665] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, + ACTIONS(14125), 1, sym__special_character, - STATE(5193), 1, + STATE(5644), 1, aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(1370), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300780,7 +329870,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(1372), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300793,15 +329883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271193] = 5, + [299698] = 6, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5687), 7, + ACTIONS(14128), 1, + sym_variable_name, + STATE(7208), 1, + sym_subscript, + STATE(5643), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(12819), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300809,27 +329901,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + ACTIONS(12821), 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, - [271226] = 5, + [299733] = 3, ACTIONS(71), 1, sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300837,8 +329923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + ACTIONS(1320), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -300849,43 +329936,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271259] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(5687), 7, + [299762] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12921), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13851), 1, + anon_sym_LT_LT_LT, + ACTIONS(14130), 1, + sym_file_descriptor, + ACTIONS(13849), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4988), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12919), 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(13847), 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(5689), 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, - [271292] = 5, + [299801] = 3, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 7, + ACTIONS(1330), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -300893,29 +329980,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2158), 11, + ACTIONS(1332), 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, - [271325] = 3, + aux_sym_concatenation_token1, + [299830] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 6, + ACTIONS(1302), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 15, + ACTIONS(1304), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -300931,43 +330021,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271354] = 3, + [299859] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1266), 15, + ACTIONS(1334), 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(1336), 14, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + 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, - 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, - [271383] = 3, + [299888] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 6, + ACTIONS(1322), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1282), 15, + ACTIONS(1324), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -300983,43 +330073,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271412] = 3, + [299917] = 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, + 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, + ACTIONS(1364), 14, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + 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, - 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, - [271441] = 3, + [299946] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 6, + ACTIONS(1334), 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(1336), 15, sym__concat, sym_test_operator, sym__brace_start, @@ -301035,15 +330125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271470] = 5, + [299975] = 3, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5561), 7, + ACTIONS(1358), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301051,27 +330136,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(1360), 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, - [271503] = 5, + aux_sym_concatenation_token1, + [300004] = 3, 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(1354), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301079,82 +330162,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(1356), 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, - [271536] = 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(1278), 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, - [271565] = 3, + [300033] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 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(1342), 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(1344), 14, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + 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, - 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, - [271594] = 4, + [300062] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12946), 1, + ACTIONS(14136), 1, anon_sym_esac, - ACTIONS(12942), 5, + ACTIONS(14132), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(14134), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -301170,290 +330230,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [271625] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 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, - [271654] = 3, - ACTIONS(71), 1, - sym_comment, - 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, - 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, - [271683] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 6, - 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, - 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, - [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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 6, - 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, - 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, - [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, + [300093] = 12, 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(4726), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1229), 11, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8073), 1, + anon_sym_RBRACK, + ACTIONS(14083), 1, sym_file_descriptor, + ACTIONS(6645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 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, - [271866] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12892), 1, - aux_sym_concatenation_token1, - ACTIONS(12956), 1, - sym__concat, - STATE(5161), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, - anon_sym_PIPE, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 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, - [271901] = 22, - 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(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, + [300140] = 3, 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(1338), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301461,8 +330276,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 11, + ACTIONS(1340), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -301473,317 +330289,236 @@ 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, + aux_sym_concatenation_token1, + [300169] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12946), 1, - anon_sym_esac, - ACTIONS(12942), 5, + ACTIONS(1362), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12944), 15, + ACTIONS(1364), 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, - [272032] = 8, - ACTIONS(3), 1, + [300198] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(11782), 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(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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1346), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12670), 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, - [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, + ACTIONS(1348), 14, sym_file_descriptor, - ACTIONS(12672), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4817), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11790), 6, + sym__concat, 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, - [272110] = 5, - ACTIONS(3), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [300227] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 2, + ACTIONS(1350), 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(1352), 14, 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, + sym__concat, 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [300256] = 3, + 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(1346), 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(1348), 14, 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, + sym__concat, 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_LT_LT, + aux_sym_concatenation_token1, + [300285] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13993), 1, + aux_sym_concatenation_token1, + ACTIONS(14138), 1, + sym__concat, + STATE(5675), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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, - [272291] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, + ACTIONS(1283), 11, 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_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - [272332] = 10, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [300320] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14144), 1, + anon_sym_esac, + ACTIONS(14140), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14142), 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, + [300351] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1312), 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, + [300380] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(11872), 1, + ACTIONS(14155), 1, + anon_sym_LT_LT_LT, + ACTIONS(14158), 1, + sym_file_descriptor, + ACTIONS(12765), 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(14152), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12984), 3, + ACTIONS(14149), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5171), 3, + STATE(5667), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11883), 4, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12773), 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(14146), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [272375] = 5, + [300421] = 6, ACTIONS(71), 1, sym_comment, - STATE(5158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, + ACTIONS(13993), 1, aux_sym_concatenation_token1, - ACTIONS(5561), 7, + ACTIONS(14161), 1, + sym__concat, + STATE(5675), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301791,7 +330526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(1277), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301803,17 +330538,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272408] = 6, + [300456] = 4, 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(14093), 1, + anon_sym_esac, + ACTIONS(14089), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14091), 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, + [300487] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13979), 1, + aux_sym_concatenation_token1, + ACTIONS(14163), 1, + sym__concat, + STATE(5674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301821,7 +330582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11658), 10, + ACTIONS(1283), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301832,15 +330593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272443] = 5, + anon_sym_LT_LT_LT, + [300522] = 6, ACTIONS(71), 1, sym_comment, - STATE(5159), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12892), 2, - sym__concat, + ACTIONS(13979), 1, aux_sym_concatenation_token1, - ACTIONS(2160), 7, + ACTIONS(14165), 1, + sym__concat, + STATE(5674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301848,57 +330611,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 11, + ACTIONS(1277), 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, - [272476] = 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(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, + anon_sym_LT_LT_LT, + [300557] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + STATE(5670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13979), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301906,33 +330639,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 14, + ACTIONS(6250), 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, - [272552] = 4, + [300590] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12900), 1, + ACTIONS(14171), 1, anon_sym_esac, - ACTIONS(12896), 5, + ACTIONS(14167), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12898), 15, + ACTIONS(14169), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -301948,36 +330678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272583] = 3, + [300621] = 5, ACTIONS(71), 1, sym_comment, - 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), 14, - sym_file_descriptor, + STATE(5674), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14173), 2, 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, - [272612] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1213), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -301985,25 +330694,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 14, + ACTIONS(1263), 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, - [272641] = 3, + [300654] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + STATE(5675), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14176), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302011,9 +330722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 14, + ACTIONS(1263), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302024,21 +330734,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, - [272670] = 6, + [300687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12999), 1, + ACTIONS(14179), 1, sym__concat, - STATE(4214), 1, + STATE(4581), 1, aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, + ACTIONS(1283), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 16, + ACTIONS(1281), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -302055,19 +330763,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, + [300722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(13001), 1, + ACTIONS(14181), 1, sym__concat, - STATE(4214), 1, + STATE(4581), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(1277), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 16, + ACTIONS(1275), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -302084,44 +330792,53 @@ 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, + [300757] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(4726), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1310), 14, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8046), 1, + anon_sym_RBRACK, + ACTIONS(14083), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 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, - aux_sym_concatenation_token1, - [272769] = 4, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [300804] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13007), 1, + ACTIONS(14187), 1, anon_sym_esac, - ACTIONS(13003), 5, + ACTIONS(14183), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13005), 15, + ACTIONS(14185), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302137,18 +330854,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272800] = 4, + [300835] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12940), 1, + ACTIONS(14144), 1, anon_sym_esac, - ACTIONS(12936), 5, + ACTIONS(14140), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12938), 15, + ACTIONS(14142), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302164,18 +330881,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272831] = 4, + [300866] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6647), 1, + anon_sym_LT_LT, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12978), 1, + anon_sym_PIPE, + ACTIONS(14083), 1, + sym_file_descriptor, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5638), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12980), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(14048), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [300909] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13013), 1, + ACTIONS(14187), 1, anon_sym_esac, - ACTIONS(13009), 5, + ACTIONS(14183), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(14185), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302191,14 +330941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272862] = 5, + [300940] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 7, + STATE(5889), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1271), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302206,57 +330957,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 12, + ACTIONS(1273), 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, - [272895] = 3, + sym__special_character, + [300973] = 4, 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, - 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, - [272924] = 4, + ACTIONS(14195), 1, + anon_sym_esac, + ACTIONS(14191), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14193), 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, + [301004] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13019), 1, + ACTIONS(14201), 1, anon_sym_esac, - ACTIONS(13015), 5, + ACTIONS(14197), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(14199), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302272,167 +331023,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272955] = 6, + [301035] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12850), 1, + ACTIONS(1318), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1320), 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(13021), 1, + 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, + [301064] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1360), 15, sym__concat, - STATE(5194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1227), 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(1229), 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, - [272990] = 12, + 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, + [301093] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(1306), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1308), 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, + [301122] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4268), 1, + ACTIONS(4820), 1, anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(6647), 1, anon_sym_LT_LT, - ACTIONS(5927), 1, + ACTIONS(6649), 1, anon_sym_LT_LT_DASH, - ACTIONS(7277), 1, + ACTIONS(8042), 1, anon_sym_RBRACK, - ACTIONS(12930), 1, + ACTIONS(14083), 1, sym_file_descriptor, - ACTIONS(5923), 2, + ACTIONS(6645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, + ACTIONS(14052), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + ACTIONS(14050), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, + STATE(5681), 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, - [273037] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12850), 1, - aux_sym_concatenation_token1, - ACTIONS(13023), 1, - sym__concat, - STATE(5194), 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, - 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, - [273072] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13025), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, - anon_sym_PIPE, + ACTIONS(14048), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 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, - [273105] = 5, + [301169] = 3, ACTIONS(71), 1, sym_comment, - STATE(5194), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13028), 2, + ACTIONS(1354), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1356), 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(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), 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, - [273138] = 4, + 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, + [301198] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13035), 1, + ACTIONS(14207), 1, anon_sym_esac, - ACTIONS(13031), 5, + ACTIONS(14203), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13033), 15, + ACTIONS(14205), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302448,74 +331189,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273169] = 5, + [301229] = 9, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(14215), 1, + anon_sym_LT_LT_LT, + ACTIONS(14217), 1, + sym_file_descriptor, + ACTIONS(12850), 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(4282), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(14213), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14211), 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, + STATE(5667), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12856), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [273202] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5219), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 7, - anon_sym_PIPE, + ACTIONS(14209), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4439), 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, - [273235] = 4, + [301270] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1344), 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, + [301299] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13041), 1, + ACTIONS(14223), 1, anon_sym_esac, - ACTIONS(13037), 5, + ACTIONS(14219), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13039), 15, + ACTIONS(14221), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302531,50 +331274,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273266] = 12, + [301330] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + STATE(5670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13979), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5052), 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(5054), 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, - [273313] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [301363] = 5, ACTIONS(71), 1, sym_comment, - STATE(5218), 1, + STATE(5671), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(13979), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4307), 7, + ACTIONS(5056), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302582,7 +331318,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(5058), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302594,10 +331330,14 @@ 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, + [301396] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(14225), 1, + sym__special_character, + STATE(5644), 1, + aux_sym__literal_repeat1, + ACTIONS(6242), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302605,9 +331345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 14, + ACTIONS(6244), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302619,16 +331358,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, - [273375] = 5, + [301429] = 5, ACTIONS(71), 1, sym_comment, - STATE(5219), 1, + STATE(5664), 1, aux_sym_concatenation_repeat1, - ACTIONS(12869), 2, + ACTIONS(13993), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 7, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302636,22 +331374,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 11, + ACTIONS(4943), 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, - [273408] = 3, + [301462] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + STATE(5668), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4945), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302659,9 +331402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 14, + ACTIONS(4947), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302672,12 +331414,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, - [273437] = 3, + [301495] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + STATE(5670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13979), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6242), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302685,33 +331430,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 14, + ACTIONS(6244), 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, - [273466] = 4, + [301528] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13019), 1, + ACTIONS(14231), 1, anon_sym_esac, - ACTIONS(13015), 5, + ACTIONS(14227), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(14229), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302727,10 +331469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273497] = 3, + [301559] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + STATE(5664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6242), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302738,9 +331485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 14, + ACTIONS(6244), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302751,12 +331497,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, - [273526] = 3, + [301592] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(14225), 1, + sym__special_character, + STATE(5644), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302764,9 +331512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 14, + ACTIONS(4943), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302778,11 +331525,14 @@ 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, - [273555] = 3, + [301625] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(14225), 1, + sym__special_character, + STATE(5644), 1, + aux_sym__literal_repeat1, + ACTIONS(6248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302790,9 +331540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 14, + ACTIONS(6250), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302804,11 +331553,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, - [273584] = 3, + [301658] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(1366), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302816,7 +331564,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(1368), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -302831,10 +331579,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, + [301687] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + STATE(5668), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302842,9 +331595,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(2178), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302855,12 +331607,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, + [301720] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + STATE(5671), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13979), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302868,68 +331623,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 14, + ACTIONS(2182), 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, - [273671] = 12, + [301753] = 3, 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(7299), 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, - [273718] = 4, + ACTIONS(1338), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1340), 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, + [301782] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13013), 1, + ACTIONS(14237), 1, anon_sym_esac, - ACTIONS(13009), 5, + ACTIONS(14233), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(14235), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -302945,10 +331688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273749] = 3, + [301813] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + STATE(5664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5052), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302956,9 +331704,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(5054), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302969,12 +331716,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, - [273778] = 3, + [301846] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + STATE(5668), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5056), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -302982,9 +331732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 14, + ACTIONS(5058), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -302995,12 +331744,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, - [273807] = 3, + [301879] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(14225), 1, + sym__special_character, + STATE(5644), 1, + aux_sym__literal_repeat1, + ACTIONS(5052), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303008,9 +331759,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(5054), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -303022,16 +331772,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, - [273836] = 5, + [301912] = 5, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, + STATE(5627), 1, aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(13915), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1223), 7, + ACTIONS(5722), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303039,8 +331788,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1225), 11, + ACTIONS(5724), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -303050,46 +331800,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, - [273869] = 6, + [301945] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12869), 1, - aux_sym_concatenation_token1, - ACTIONS(13045), 1, - sym__concat, - STATE(5220), 1, + STATE(5629), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 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(1229), 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, - [273904] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12869), 1, - aux_sym_concatenation_token1, - ACTIONS(13047), 1, + ACTIONS(13915), 2, sym__concat, - STATE(5220), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 7, + aux_sym_concatenation_token1, + ACTIONS(5726), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303097,8 +331816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 11, + ACTIONS(5728), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -303108,16 +331828,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, - [273939] = 5, + [301978] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(14239), 1, + anon_sym_LPAREN, + ACTIONS(14241), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14247), 1, + anon_sym_DOLLAR, + ACTIONS(14249), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14251), 1, + anon_sym_RBRACE3, + ACTIONS(14253), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14255), 1, + anon_sym_BQUOTE, + ACTIONS(14257), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14259), 1, + aux_sym__simple_variable_name_token1, + STATE(5931), 1, + sym_simple_expansion, + STATE(6726), 1, + sym__expansion_max_length_binary_expression, + STATE(6892), 1, + sym__expansion_max_length_expression, + STATE(6712), 2, + sym_number, + sym_expansion, + STATE(7660), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [302039] = 3, ACTIONS(71), 1, sym_comment, - STATE(5220), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13049), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 7, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303125,155 +331881,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 11, + ACTIONS(1316), 14, 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, - [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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13066), 1, - anon_sym_esac, - ACTIONS(13062), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13064), 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, - [274091] = 12, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [302068] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(4726), 1, anon_sym_PIPE, - ACTIONS(4268), 1, + ACTIONS(4820), 1, anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(6647), 1, anon_sym_LT_LT, - ACTIONS(5927), 1, + ACTIONS(6649), 1, anon_sym_LT_LT_DASH, - ACTIONS(7043), 1, + ACTIONS(8089), 1, anon_sym_RBRACK, - ACTIONS(12930), 1, + ACTIONS(14083), 1, sym_file_descriptor, - ACTIONS(5923), 2, + ACTIONS(6645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12856), 2, + ACTIONS(14052), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + ACTIONS(14050), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5131), 3, + STATE(5681), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + ACTIONS(14048), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [274138] = 5, + [302115] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5193), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303281,8 +331942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 12, + ACTIONS(1263), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -303294,18 +331956,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [274171] = 4, + aux_sym_concatenation_token1, + [302144] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(14239), 1, + anon_sym_LPAREN, + ACTIONS(14243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14247), 1, + anon_sym_DOLLAR, + ACTIONS(14249), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14253), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14255), 1, + anon_sym_BQUOTE, + ACTIONS(14257), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14261), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14263), 1, + anon_sym_RBRACE3, + ACTIONS(14265), 1, + aux_sym__simple_variable_name_token1, + STATE(5946), 1, + sym_simple_expansion, + STATE(6817), 1, + sym__expansion_max_length_binary_expression, + STATE(6892), 1, + sym__expansion_max_length_expression, + STATE(6816), 2, + sym_number, + sym_expansion, + STATE(7977), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [302205] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13072), 1, + ACTIONS(14207), 1, anon_sym_esac, - ACTIONS(13068), 5, + ACTIONS(14203), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13070), 15, + ACTIONS(14205), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303321,80 +332026,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274202] = 4, + [302236] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13078), 1, - anon_sym_esac, - ACTIONS(13074), 5, + ACTIONS(1326), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(13076), 15, + ACTIONS(1328), 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, - [274233] = 12, + [302265] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(1302), 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(7107), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1304), 14, sym_file_descriptor, - ACTIONS(5923), 2, + sym__concat, 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_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, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [274280] = 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, + [302294] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13084), 1, + ACTIONS(14237), 1, anon_sym_esac, - ACTIONS(13080), 5, + ACTIONS(14233), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13082), 15, + ACTIONS(14235), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303410,45 +332105,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274311] = 4, + [302325] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13090), 1, - anon_sym_esac, - ACTIONS(13086), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13088), 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, - [274342] = 4, + ACTIONS(1322), 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(1324), 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, + [302354] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13096), 1, + ACTIONS(14271), 1, anon_sym_esac, - ACTIONS(13092), 5, + ACTIONS(14267), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13094), 15, + ACTIONS(14269), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -303464,169 +332158,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274373] = 4, + [302385] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13102), 1, - anon_sym_esac, - ACTIONS(13098), 5, + ACTIONS(1330), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13100), 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, - [274404] = 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(1332), 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, - [274435] = 12, - ACTIONS(71), 1, + [302414] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_PIPE_AMP, - ACTIONS(5925), 1, + ACTIONS(12980), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14075), 1, + sym_file_descriptor, + ACTIONS(5128), 2, anon_sym_LT_LT, - ACTIONS(5927), 1, anon_sym_LT_LT_DASH, - ACTIONS(7111), 1, - anon_sym_RBRACK, - ACTIONS(12930), 1, - sym_file_descriptor, - ACTIONS(5923), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12856), 2, + ACTIONS(13849), 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, + STATE(5748), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12852), 5, + ACTIONS(12978), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13847), 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, - [274482] = 9, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + [302453] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(13113), 1, + ACTIONS(12998), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13851), 1, anon_sym_LT_LT_LT, - ACTIONS(13116), 1, + ACTIONS(14130), 1, sym_file_descriptor, - ACTIONS(11671), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(13110), 2, + ACTIONS(13849), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13107), 3, + STATE(5059), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12996), 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(13847), 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(5235), 3, + [302492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4828), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5727), 3, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11679), 4, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE_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, - ACTIONS(13104), 5, + [302525] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14277), 1, + anon_sym_esac, + ACTIONS(14273), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14275), 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, + [302556] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6248), 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, - [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, + ACTIONS(6250), 11, 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_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, - [274558] = 6, + [302589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(5182), 1, + STATE(5676), 1, aux_sym_concatenation_repeat1, - ACTIONS(2158), 2, + ACTIONS(6244), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 16, + ACTIONS(6242), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303643,19 +332358,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274593] = 6, + [302624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(5181), 1, + STATE(5677), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 16, + ACTIONS(2176), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303672,19 +332387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274628] = 6, + [302659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(5182), 1, + STATE(5676), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(4943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 16, + ACTIONS(4941), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303701,19 +332416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274663] = 6, + [302694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(5181), 1, + STATE(5677), 1, aux_sym_concatenation_repeat1, - ACTIONS(5563), 2, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 16, + ACTIONS(4945), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303730,19 +332445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274698] = 6, + [302729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(5182), 1, + STATE(5676), 1, aux_sym_concatenation_repeat1, - ACTIONS(2162), 2, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 16, + ACTIONS(6248), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303759,19 +332474,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274733] = 6, + [302764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(5181), 1, + STATE(5677), 1, aux_sym_concatenation_repeat1, - ACTIONS(4309), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 16, + ACTIONS(2180), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303788,19 +332503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274768] = 6, + [302799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12000), 1, + ACTIONS(13047), 1, aux_sym_concatenation_token1, - ACTIONS(12002), 1, + ACTIONS(13049), 1, sym__concat, - STATE(5182), 1, + STATE(5676), 1, aux_sym_concatenation_repeat1, - ACTIONS(4313), 2, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 16, + ACTIONS(5052), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -303817,92 +332532,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274803] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13078), 1, - anon_sym_esac, - 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, - [274834] = 3, - ACTIONS(71), 1, + [302834] = 6, + ACTIONS(3), 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, + ACTIONS(13047), 1, + aux_sym_concatenation_token1, + ACTIONS(13049), 1, sym__concat, + STATE(5677), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 16, 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, - 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, - sym_variable_name, - 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, - aux_sym_concatenation_token1, - [274891] = 5, + [302869] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13119), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + STATE(5668), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13993), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -303910,7 +332577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 11, + ACTIONS(2182), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303922,115 +332589,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274923] = 3, + [302902] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(1346), 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(1348), 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, - [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, + [302931] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(1350), 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(1352), 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, - [275007] = 3, + [302960] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(1346), 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(1348), 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, + [302989] = 3, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4280), 7, + ACTIONS(1310), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304038,79 +332678,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 10, + ACTIONS(1312), 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, - [275067] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [303018] = 12, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4437), 7, + ACTIONS(4726), 1, anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, + anon_sym_LT_LT, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8048), 1, + anon_sym_RBRACK, + ACTIONS(14083), 1, + sym_file_descriptor, + ACTIONS(6645), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, 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, + [303065] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 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, - [275099] = 3, + [303096] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(13092), 5, - anon_sym_DOLLAR, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, + anon_sym_LT_LT, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7884), 1, + anon_sym_RBRACK, + ACTIONS(14083), 1, + sym_file_descriptor, + ACTIONS(6645), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [303143] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12885), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14285), 1, + sym_file_descriptor, + ACTIONS(13317), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(14282), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5748), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12874), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(14279), 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, + [303182] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, aux_sym_number_token1, + ACTIONS(8498), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13094), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(14239), 1, anon_sym_LPAREN, + ACTIONS(14243), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14245), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(14247), 1, + anon_sym_DOLLAR, + ACTIONS(14249), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(14253), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14255), 1, anon_sym_BQUOTE, + ACTIONS(14257), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275127] = 3, + ACTIONS(14288), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14290), 1, + anon_sym_RBRACE3, + ACTIONS(14292), 1, + aux_sym__simple_variable_name_token1, + STATE(5951), 1, + sym_simple_expansion, + STATE(6762), 1, + sym__expansion_max_length_binary_expression, + STATE(6820), 1, + sym_number, + STATE(6829), 1, + sym_expansion, + STATE(6892), 1, + sym__expansion_max_length_expression, + STATE(7888), 1, + sym_command_substitution, + STATE(7963), 1, + sym_parenthesized_expression, + STATE(7965), 1, + sym_arithmetic_expansion, + [303249] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(14298), 1, + anon_sym_esac, + ACTIONS(14294), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13128), 15, + ACTIONS(14296), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304126,66 +332893,49 @@ 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, + [303280] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(13016), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13851), 1, + anon_sym_LT_LT_LT, + ACTIONS(14130), 1, + sym_file_descriptor, + ACTIONS(13849), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4983), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(13014), 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(13847), 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(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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13098), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13100), 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, - [275211] = 3, + [303319] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(13126), 5, + ACTIONS(14277), 1, + anon_sym_esac, + ACTIONS(14273), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13128), 15, + ACTIONS(14275), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304201,16 +332951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275239] = 3, + [303350] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13098), 5, + ACTIONS(14273), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13100), 15, + ACTIONS(14275), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304226,10 +332976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275267] = 3, + [303378] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1366), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304237,80 +332987,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(1368), 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, - [275295] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 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(5689), 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, - [275327] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13132), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13134), 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, - [275355] = 5, + [303406] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + ACTIONS(1366), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304318,28 +333012,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 11, + ACTIONS(1368), 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, - [275387] = 3, + aux_sym_concatenation_token1, + [303434] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(14300), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13124), 15, + ACTIONS(14302), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304355,16 +333051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275415] = 3, + [303462] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(14132), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13124), 15, + ACTIONS(14134), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304380,14 +333076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275443] = 5, + [303490] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304395,102 +333087,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 11, + ACTIONS(1320), 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, - [275475] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13138), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13140), 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, - [275503] = 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, - [275531] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13138), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13140), 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, - [275559] = 5, + aux_sym_concatenation_token1, + [303518] = 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(1362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304498,26 +333112,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 10, + ACTIONS(1364), 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, - [275591] = 5, + aux_sym_concatenation_token1, + [303546] = 5, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, + STATE(5892), 1, aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(14189), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4311), 7, + ACTIONS(2180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304525,7 +333142,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(2182), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304536,85 +333153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275623] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12896), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - 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, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275651] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13003), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13005), 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, - [275679] = 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, - [275707] = 3, + [303578] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304622,10 +333164,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(1320), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304635,15 +333176,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, - [275735] = 5, + [303606] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, - sym__special_character, - STATE(5247), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(1330), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304651,47 +333189,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + ACTIONS(1332), 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, - [275767] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13062), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13064), 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, - [275795] = 3, + aux_sym_concatenation_token1, + [303634] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 8, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304699,9 +333214,9 @@ 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(1316), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304712,15 +333227,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, - [275823] = 5, + aux_sym_concatenation_token1, + [303662] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(1358), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304728,22 +333239,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(1360), 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, - [275855] = 3, + aux_sym_concatenation_token1, + [303690] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304751,10 +333264,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(1316), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304764,11 +333276,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, + [303718] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304776,10 +333289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 13, + ACTIONS(1263), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304789,61 +333301,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, - [275911] = 3, - ACTIONS(71), 1, - sym_comment, - 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, - [275939] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13142), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13144), 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, - [275967] = 3, + [303746] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1354), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304851,24 +333314,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1356), 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, - [275995] = 3, + [303774] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304876,10 +333339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1348), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -304889,11 +333351,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, + [303802] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304901,7 +333364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(1263), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -304915,14 +333378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276051] = 5, + [303830] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13146), 1, + ACTIONS(14304), 1, sym__special_character, - STATE(5303), 1, + STATE(5866), 1, aux_sym__literal_repeat1, - ACTIONS(5264), 7, + ACTIONS(5052), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304930,28 +333393,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5266), 11, + ACTIONS(5054), 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, - [276083] = 3, + [303862] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13148), 5, + ACTIONS(14306), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13150), 15, + ACTIONS(14308), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -304967,10 +333430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276111] = 3, + [303890] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1342), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -304978,7 +333441,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(1344), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -304992,10 +333455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [276139] = 3, + [303918] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1271), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305003,9 +333466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 13, + sym__special_character, + ACTIONS(1273), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305016,73 +333479,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_concatenation_token1, - [276167] = 3, + anon_sym_LT_LT_LT, + [303946] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(4726), 1, anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + STATE(5863), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 6, 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, + ACTIONS(4828), 9, 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, + [303980] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - ACTIONS(13158), 1, - sym_file_descriptor, - ACTIONS(11892), 2, - anon_sym_PIPE, - 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_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11894), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(13152), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [276235] = 3, + ACTIONS(14310), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14312), 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, + [304008] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13122), 5, + ACTIONS(14191), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13124), 15, + ACTIONS(14193), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305098,10 +333558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276263] = 3, + [304036] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1358), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305109,24 +333569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(1360), 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, - [276291] = 3, + [304064] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1354), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305134,9 +333594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1356), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305146,37 +333607,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, - [276319] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13142), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13144), 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, - [276347] = 3, + [304092] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1366), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305184,24 +333619,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1368), 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, - [276375] = 3, + [304120] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(14304), 1, + sym__special_character, + STATE(5866), 1, + aux_sym__literal_repeat1, + ACTIONS(6242), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305209,9 +333648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(6244), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305222,44 +333660,66 @@ 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, - [276403] = 5, + [304152] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, + ACTIONS(14203), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14205), 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, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 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(4282), 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, - [276435] = 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, + [304180] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14314), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14316), 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, + [304208] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(14203), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(14205), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305275,16 +333735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276463] = 3, + [304236] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13164), 5, + ACTIONS(14098), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13166), 15, + ACTIONS(14100), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305300,10 +333760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276491] = 3, + [304264] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1310), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305311,28 +333771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1312), 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, - [276519] = 5, + [304292] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13168), 1, - sym__special_character, - STATE(5303), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + ACTIONS(1302), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305340,9 +333796,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(1304), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305352,10 +333808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [276551] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [304320] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1322), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305363,7 +333821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1324), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -305377,10 +333835,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [276579] = 3, + [304348] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14306), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14308), 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, + [304376] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1302), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305388,57 +333871,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1304), 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, + [304404] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(14304), 1, + sym__special_character, + STATE(5866), 1, + aux_sym__literal_repeat1, + ACTIONS(6248), 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(12930), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6250), 11, sym_file_descriptor, - ACTIONS(5923), 2, 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, + anon_sym_LT_LT_DASH, + [304436] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13931), 1, + anon_sym_LT_LT_LT, + ACTIONS(14324), 1, + sym_file_descriptor, + ACTIONS(12996), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(14322), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12854), 3, + STATE(6042), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(14320), 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, + ACTIONS(12998), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(14318), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [276651] = 3, + [304476] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1310), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305446,24 +333954,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1312), 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, - [276679] = 3, + [304504] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14300), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14302), 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, + [304532] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14306), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14308), 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, + [304560] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1306), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305471,10 +334029,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, + ACTIONS(1308), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305484,11 +334041,37 @@ static const uint16_t 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, - [276707] = 3, + [304588] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14326), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14328), 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, + [304616] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1338), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305496,61 +334079,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1340), 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, + [304644] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - ACTIONS(13158), 1, - sym_file_descriptor, - ACTIONS(11790), 2, + ACTIONS(14330), 1, + sym__special_character, + STATE(5890), 1, + aux_sym__literal_repeat1, + ACTIONS(6248), 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(5601), 2, - sym_file_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_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6250), 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, - ACTIONS(13152), 5, + anon_sym_LT_LT_LT, + [304676] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1322), 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, - [276775] = 3, + ACTIONS(1324), 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, + [304704] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(14332), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(14334), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305566,14 +334170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276803] = 5, + [304732] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13130), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(1326), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305581,8 +334181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 11, + ACTIONS(1328), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305592,17 +334194,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, - [276835] = 3, + aux_sym_concatenation_token1, + [304760] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12924), 5, + ACTIONS(14336), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12926), 15, + ACTIONS(14338), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305618,41 +334220,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276863] = 3, + [304788] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13173), 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, - [276891] = 3, + ACTIONS(1342), 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(1344), 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, + [304816] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12936), 5, + ACTIONS(14197), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12938), 15, + ACTIONS(14199), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305668,16 +334270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276919] = 3, + [304844] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 5, + ACTIONS(14336), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(14338), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305693,16 +334295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276947] = 3, + [304872] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(14340), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(14342), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305718,35 +334320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276975] = 3, + [304900] = 5, 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, + STATE(5892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, 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, - [277003] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 7, + ACTIONS(5056), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305754,49 +334336,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(5058), 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, + [304932] = 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, - 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, - [277059] = 3, + ACTIONS(14344), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14346), 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, + [304960] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(14304), 1, + sym__special_character, + STATE(5866), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305804,9 +334387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(4943), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -305817,17 +334399,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, - [277087] = 3, + [304992] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12942), 5, + ACTIONS(14294), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12944), 15, + ACTIONS(14296), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305843,16 +334424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277115] = 3, + [305020] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(14140), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(14142), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305868,80 +334449,41 @@ 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, + [305048] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12793), 1, - anon_sym_LT_LT_LT, - ACTIONS(13158), 1, - sym_file_descriptor, - ACTIONS(11902), 2, + ACTIONS(1306), 7, anon_sym_PIPE, - 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(13152), 5, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [277227] = 3, + ACTIONS(1308), 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, + [305076] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13142), 5, + ACTIONS(14332), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13144), 15, + ACTIONS(14334), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305957,10 +334499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277255] = 3, + [305104] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1310), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305968,7 +334510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1312), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -305982,10 +334524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [277283] = 3, + [305132] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + STATE(5892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305993,30 +334540,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 13, + ACTIONS(2178), 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, - [277311] = 6, + [305164] = 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(1350), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306024,8 +334562,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1229), 10, + ACTIONS(1352), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306035,10 +334574,12 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [305192] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(1334), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306046,9 +334587,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(1336), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306058,18 +334600,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, + [305220] = 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(1362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306077,8 +334612,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1209), 10, + ACTIONS(1364), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306088,15 +334624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [277407] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [305248] = 3, ACTIONS(71), 1, sym_comment, - STATE(5332), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13181), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1213), 7, + ACTIONS(1338), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306104,8 +334637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 10, + ACTIONS(1340), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306115,16 +334650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [277439] = 3, + aux_sym_concatenation_token1, + [305276] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(14227), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(14229), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306140,10 +334676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277467] = 3, + [305304] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306151,9 +334687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 13, + ACTIONS(1364), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306163,18 +334700,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, - [277495] = 3, + [305332] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13009), 5, + ACTIONS(14077), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(14079), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306190,16 +334726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277523] = 3, + [305360] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13160), 5, + ACTIONS(14077), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13162), 15, + ACTIONS(14079), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306215,68 +334751,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277551] = 3, + [305388] = 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, - 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, - [277579] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12686), 1, - sym__special_character, - STATE(4943), 1, - aux_sym__literal_repeat1, - ACTIONS(12740), 3, + ACTIONS(14348), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14350), 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, + [305416] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13015), 5, + ACTIONS(14332), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(14334), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306292,10 +334801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277639] = 3, + [305444] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(1306), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306303,24 +334812,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(1308), 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, + [305472] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1338), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306328,7 +334837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 13, + ACTIONS(1340), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -306342,35 +334851,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277695] = 3, + [305500] = 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), 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, - [277723] = 3, + ACTIONS(14348), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14350), 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, + [305528] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14140), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14142), 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, + [305556] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14089), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14091), 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, + [305584] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14352), 1, + sym__special_character, + STATE(5833), 1, + aux_sym__literal_repeat1, + ACTIONS(5902), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5904), 13, + sym_test_operator, + sym__brace_start, + anon_sym_RPAREN, + 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, + [305616] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1302), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306378,37 +334964,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1304), 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, - [277751] = 3, + [305644] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13015), 5, + ACTIONS(14354), 1, + sym__special_character, + STATE(5833), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13017), 15, + ACTIONS(1372), 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, @@ -306417,10 +335005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277779] = 3, + [305676] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(14330), 1, + sym__special_character, + STATE(5890), 1, + aux_sym__literal_repeat1, + ACTIONS(5052), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306428,10 +335020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(5054), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306441,11 +335031,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, - [277807] = 3, + anon_sym_LT_LT_LT, + [305708] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(14330), 1, + sym__special_character, + STATE(5890), 1, + aux_sym__literal_repeat1, + ACTIONS(6242), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306453,10 +335047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(6244), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306466,11 +335058,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, - [277835] = 3, + anon_sym_LT_LT_LT, + [305740] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306478,9 +335070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 13, + ACTIONS(1348), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306490,17 +335083,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, - [277863] = 5, + [305768] = 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(1350), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306508,8 +335095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5689), 10, + ACTIONS(1352), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306519,10 +335108,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [277895] = 3, + aux_sym_concatenation_token1, + [305796] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306530,9 +335120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1348), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306542,17 +335133,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, - [277923] = 5, + [305824] = 4, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2156), 7, + STATE(5863), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4826), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306560,7 +335149,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(4828), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -306571,10 +335160,10 @@ 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, + [305854] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1354), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306582,7 +335171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1356), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -306596,81 +335185,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [277983] = 3, + [305882] = 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_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, - [278011] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, + ACTIONS(14357), 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(14359), 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, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [305910] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13862), 1, + sym__special_character, + STATE(5519), 1, + aux_sym__literal_repeat1, + ACTIONS(13983), 3, + sym_test_operator, + sym__brace_start, 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, + ACTIONS(13981), 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, + [305942] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13009), 5, + ACTIONS(14336), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13011), 15, + ACTIONS(14338), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306686,10 +335262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278097] = 3, + [305970] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306697,49 +335273,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(1348), 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, - [278125] = 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, - [278153] = 3, + [305998] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1350), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306747,24 +335298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(1352), 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, - [278181] = 3, + [306026] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306772,28 +335323,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1348), 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, - [278209] = 5, + [306054] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(14239), 1, + anon_sym_LPAREN, + ACTIONS(14243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14249), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14253), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14255), 1, + anon_sym_BQUOTE, + ACTIONS(14257), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14361), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14363), 1, + anon_sym_COLON, + ACTIONS(14365), 1, + anon_sym_RBRACE3, + ACTIONS(14367), 1, + aux_sym__simple_variable_name_token1, + STATE(6674), 1, + sym__expansion_max_length_binary_expression, + STATE(6892), 1, + sym__expansion_max_length_expression, + STATE(6668), 2, + sym_number, + sym_expansion, + STATE(7197), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [306112] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13192), 1, - sym__special_character, - STATE(5359), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306801,8 +335388,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(1348), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306813,10 +335401,36 @@ 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, + [306140] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(14336), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14338), 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, + [306168] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1322), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306824,30 +335438,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(1324), 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, - [278269] = 3, + [306196] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(14300), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13140), 15, + ACTIONS(14302), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306863,16 +335477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278297] = 3, + [306224] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13138), 5, + ACTIONS(14089), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13140), 15, + ACTIONS(14091), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306888,16 +335502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278325] = 3, + [306252] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13195), 5, + ACTIONS(14273), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13197), 15, + ACTIONS(14275), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306913,16 +335527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278353] = 3, + [306280] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13171), 5, + ACTIONS(14183), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13173), 15, + ACTIONS(14185), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306938,10 +335552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278381] = 3, + [306308] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + STATE(5889), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6248), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306949,10 +335568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 13, + ACTIONS(6250), 10, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -306962,17 +335579,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, - [278409] = 3, + [306340] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(14233), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(14235), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306988,41 +335604,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278437] = 3, + [306368] = 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, - 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, - [278465] = 3, + ACTIONS(14233), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14235), 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, + [306396] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(14183), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(14185), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307038,16 +335654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278493] = 3, + [306424] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13031), 5, + ACTIONS(14167), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13033), 15, + ACTIONS(14169), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307063,10 +335679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278521] = 3, + [306452] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307074,58 +335690,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1258), 13, + ACTIONS(1320), 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, - [278549] = 6, + [306480] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(1326), 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(1328), 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, - [278583] = 3, + aux_sym_concatenation_token1, + [306508] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13203), 5, + ACTIONS(14357), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13205), 15, + ACTIONS(14359), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307141,42 +335754,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278611] = 4, + [306536] = 10, ACTIONS(71), 1, sym_comment, - STATE(5381), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4155), 7, + ACTIONS(12978), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(14369), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4159), 10, + ACTIONS(14371), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14373), 1, sym_file_descriptor, + ACTIONS(14322), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12980), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + ACTIONS(14320), 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_DASH, - [278641] = 3, + STATE(5900), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14318), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [306578] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13207), 5, + ACTIONS(14300), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13209), 15, + ACTIONS(14302), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307192,10 +335811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278669] = 3, + [306606] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1330), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307203,49 +335822,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1266), 13, + ACTIONS(1332), 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, - [278697] = 3, + [306634] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13211), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(13213), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(14375), 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, - [278725] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 7, + STATE(5866), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307253,30 +335851,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1372), 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, - [278753] = 3, + [306666] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(14267), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(14269), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307292,16 +335888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278781] = 3, + [306694] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(14306), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(14308), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307317,16 +335913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278809] = 3, + [306722] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(14219), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(14221), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307342,42 +335938,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278837] = 10, + [306750] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11780), 1, + ACTIONS(1326), 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(1328), 13, sym_file_descriptor, - ACTIONS(13156), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11782), 3, + sym__concat, 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, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [278879] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [306778] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307385,7 +335974,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(1316), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -307399,16 +335988,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, + [306806] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13199), 5, + ACTIONS(14310), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13201), 15, + ACTIONS(14312), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307424,10 +336013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278935] = 3, + [306834] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(14378), 1, + sym__special_character, + STATE(5894), 1, + aux_sym__literal_repeat1, + ACTIONS(5722), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307435,9 +336028,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(5724), 11, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -307448,17 +336040,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [306866] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1342), 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(1344), 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, - [278963] = 3, + [306894] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14380), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14382), 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, + [306922] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(14310), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(14312), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307474,10 +336115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278991] = 3, + [306950] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + STATE(5889), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307485,9 +336131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 13, + ACTIONS(4943), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307497,18 +336142,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, + [306982] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5892), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, + sym__concat, aux_sym_concatenation_token1, - [279019] = 3, + ACTIONS(4945), 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(4947), 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, + [307014] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13215), 5, + ACTIONS(14348), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13217), 15, + ACTIONS(14350), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307524,25 +336194,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279047] = 5, + [307042] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(13225), 1, - sym__special_character, - STATE(5390), 1, - aux_sym__literal_repeat1, - ACTIONS(5130), 5, + ACTIONS(4726), 1, + anon_sym_PIPE, + ACTIONS(4820), 1, + anon_sym_PIPE_AMP, + ACTIONS(6647), 1, + anon_sym_LT_LT, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14083), 1, + sym_file_descriptor, + ACTIONS(6645), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307086] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14348), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5132), 13, + ACTIONS(14350), 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 +336252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279079] = 3, + [307114] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13068), 5, + ACTIONS(14384), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13070), 15, + ACTIONS(14386), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307576,25 +336277,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279107] = 5, + [307142] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13227), 1, - sym__special_character, - STATE(5390), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 5, + STATE(5889), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5052), 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(5054), 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, + [307174] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14310), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1318), 13, + ACTIONS(14312), 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,10 +336329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279139] = 3, + [307202] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1260), 7, + ACTIONS(1334), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307614,24 +336340,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1262), 13, + ACTIONS(1336), 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, - [279167] = 3, + [307230] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(14330), 1, + sym__special_character, + STATE(5890), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307639,9 +336369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(4943), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307652,11 +336381,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [307262] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13931), 1, + anon_sym_LT_LT_LT, + ACTIONS(14324), 1, + sym_file_descriptor, + ACTIONS(12919), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(14322), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(6072), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(14320), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(12921), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(14318), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307302] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14098), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14100), 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, + [307330] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14189), 1, aux_sym_concatenation_token1, - [279195] = 3, + ACTIONS(14388), 1, + sym__concat, + STATE(5896), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 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(1283), 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, + [307364] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1268), 7, + ACTIONS(14390), 1, + sym__special_character, + STATE(5890), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307664,28 +336480,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1270), 13, + ACTIONS(1372), 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, + [307396] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5889), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14189), 2, sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6242), 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(6244), 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, + [307428] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14189), 1, aux_sym_concatenation_token1, - [279223] = 5, + ACTIONS(14393), 1, + sym__concat, + STATE(5896), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1275), 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(1277), 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, + [307462] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14326), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14328), 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, + [307490] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13136), 1, + ACTIONS(14395), 1, sym__special_character, - STATE(5247), 1, + STATE(5894), 1, aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(1370), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307693,27 +336587,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 11, + ACTIONS(1372), 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, + [307522] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 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, - [279255] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [307550] = 5, ACTIONS(71), 1, sym_comment, - STATE(5329), 1, + STATE(5896), 1, aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(14398), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5561), 7, + ACTIONS(1261), 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(1263), 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, + [307582] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14332), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14334), 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, + [307610] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1330), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307721,8 +336687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 10, + ACTIONS(1332), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -307732,47 +336699,125 @@ 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, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [307638] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14401), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(14403), 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, + [307666] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(11872), 1, + ACTIONS(12874), 1, anon_sym_PIPE, - ACTIONS(13233), 1, + ACTIONS(14408), 1, anon_sym_LT_LT, - ACTIONS(13242), 1, + ACTIONS(14417), 1, anon_sym_LT_LT_DASH, - ACTIONS(13245), 1, + ACTIONS(14420), 1, sym_file_descriptor, - ACTIONS(13239), 2, + ACTIONS(14414), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11883), 3, + ACTIONS(12885), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_AMP, - ACTIONS(13236), 3, + ACTIONS(14411), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5396), 3, + STATE(5900), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(13230), 5, + ACTIONS(14405), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [279329] = 5, + [307708] = 9, ACTIONS(71), 1, sym_comment, - STATE(5331), 1, - aux_sym_concatenation_repeat1, - ACTIONS(13043), 2, + ACTIONS(13931), 1, + anon_sym_LT_LT_LT, + ACTIONS(14324), 1, + sym_file_descriptor, + ACTIONS(13014), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(14322), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(6064), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(14320), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13016), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(14318), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307748] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1261), 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(1263), 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, - ACTIONS(2160), 7, + [307776] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307780,27 +336825,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 10, + ACTIONS(1336), 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, - [279361] = 3, + aux_sym_concatenation_token1, + [307804] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13074), 5, + ACTIONS(14423), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13076), 15, + ACTIONS(14425), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307816,16 +336864,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279389] = 3, + [307832] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13080), 5, + ACTIONS(14326), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13082), 15, + ACTIONS(14328), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307841,16 +336889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279417] = 3, + [307860] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13086), 5, + ACTIONS(14326), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13088), 15, + ACTIONS(14328), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307866,16 +336914,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279445] = 3, + [307888] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13248), 5, + ACTIONS(14357), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13250), 15, + ACTIONS(14359), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307891,16 +336939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279473] = 3, + [307916] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13037), 5, + ACTIONS(14357), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(13039), 15, + ACTIONS(14359), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307916,16 +336964,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279501] = 3, + [307944] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8482), 1, + anon_sym_LPAREN, + ACTIONS(8492), 1, + anon_sym_DQUOTE, + ACTIONS(8500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14065), 1, + anon_sym_DOLLAR, + ACTIONS(14069), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14071), 1, + anon_sym_BQUOTE, + ACTIONS(14073), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8510), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(14427), 5, + sym_variable_name, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6986), 6, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [307988] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12896), 5, + ACTIONS(14429), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12898), 15, + ACTIONS(14431), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307941,10 +337022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279529] = 3, + [308016] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1342), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307952,7 +337033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 12, + ACTIONS(1344), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -307965,14 +337046,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279556] = 5, + [308043] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5912), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13137), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(14433), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13139), 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, + [308074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6576), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14075), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6574), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13849), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13847), 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, + [308111] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(5687), 7, + ACTIONS(1271), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307980,7 +337112,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(1273), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -307991,10 +337123,42 @@ 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, + anon_sym_LT_LT_LT, + sym__special_character, + [308138] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(4013), 1, + sym_file_descriptor, + ACTIONS(14436), 1, + aux_sym_heredoc_redirect_token1, + STATE(7803), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5987), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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, + [308177] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1338), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308002,7 +337166,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(1340), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308015,10 +337179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [279614] = 3, + [308204] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(5056), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308026,7 +337190,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(5058), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308039,10 +337203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [279641] = 3, + [308231] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(1306), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308050,65 +337214,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2162), 12, + ACTIONS(1308), 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, - [279668] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [308258] = 8, + ACTIONS(3), 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, - 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(6581), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14075), 1, + sym_file_descriptor, + ACTIONS(5128), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6574), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13849), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13847), 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, + [308295] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(4013), 1, sym_file_descriptor, - ACTIONS(13254), 1, + ACTIONS(14438), 1, aux_sym_heredoc_redirect_token1, - STATE(7205), 1, + STATE(7806), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5987), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3981), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308117,10 +337286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [279734] = 3, + [308334] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 7, + ACTIONS(1322), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308128,9 +337297,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(1324), 12, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308140,28 +337309,22 @@ 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, + aux_sym_concatenation_token1, + [308361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14442), 1, + sym__concat, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1273), 2, sym_file_descriptor, - ACTIONS(4529), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 14, 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, @@ -308170,14 +337333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [279798] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [308394] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(5561), 7, + ACTIONS(1354), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308185,8 +337348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5563), 10, + ACTIONS(1356), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308196,21 +337360,53 @@ 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, + aux_sym_concatenation_token1, + [308421] = 3, 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, + ACTIONS(13997), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(13995), 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, + [308448] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(4013), 1, sym_file_descriptor, + ACTIONS(14444), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 14, + STATE(7921), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5987), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308219,14 +337415,10 @@ 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, - anon_sym_LT_LT_LT, - sym__special_character, - [279862] = 3, + [308487] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(1334), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308234,112 +337426,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4313), 12, + ACTIONS(1336), 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, - [279889] = 8, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [308514] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5852), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12894), 1, - sym_file_descriptor, - ACTIONS(4529), 2, + ACTIONS(14446), 1, + sym__special_character, + STATE(5930), 1, + aux_sym__literal_repeat1, + ACTIONS(6248), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5845), 2, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6250), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12672), 2, + 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, - STATE(5163), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12670), 8, + anon_sym_LT_LT_DASH, + [308545] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 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(1360), 12, + 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, - [279926] = 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [308572] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(4013), 1, sym_file_descriptor, - ACTIONS(13260), 1, + ACTIONS(14448), 1, aux_sym_heredoc_redirect_token1, - STATE(6960), 1, + STATE(7957), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5987), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3981), 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, - [279965] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13262), 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_GT_AMP, + anon_sym_GT_PIPE, + [308611] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14450), 1, + sym__special_character, + STATE(5930), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 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(1372), 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, - [280004] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [308642] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(14239), 1, + anon_sym_LPAREN, + ACTIONS(14243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14249), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14253), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14255), 1, + anon_sym_BQUOTE, + ACTIONS(14257), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14453), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14455), 1, + anon_sym_RBRACE3, + ACTIONS(14457), 1, + aux_sym__simple_variable_name_token1, + STATE(6729), 1, + sym__expansion_max_length_binary_expression, + STATE(6892), 1, + sym__expansion_max_length_expression, + STATE(6705), 2, + sym_number, + sym_expansion, + STATE(7361), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [308697] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1271), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1273), 14, + 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_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [308724] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1284), 7, + ACTIONS(1271), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308347,23 +337618,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1286), 12, + sym__special_character, + ACTIONS(1273), 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, - [280031] = 3, + [308751] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1213), 7, + ACTIONS(1330), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308371,7 +337642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1215), 12, + ACTIONS(1332), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308384,28 +337655,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280058] = 9, + [308778] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(4013), 1, sym_file_descriptor, - ACTIONS(13264), 1, + ACTIONS(14459), 1, aux_sym_heredoc_redirect_token1, - STATE(7417), 1, + STATE(7822), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5987), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3981), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308414,10 +337685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280097] = 3, + [308817] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1252), 7, + ACTIONS(1326), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308425,7 +337696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1254), 12, + ACTIONS(1328), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308438,10 +337709,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280124] = 3, + [308844] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(2176), 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(2178), 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, + [308871] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1310), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308449,7 +337744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 12, + ACTIONS(1312), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308462,10 +337757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280151] = 3, + [308898] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1256), 7, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308473,7 +337768,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(1316), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308486,10 +337781,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, + [308925] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1261), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308497,7 +337792,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(1263), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308510,28 +337805,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280205] = 9, + [308952] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(4013), 1, sym_file_descriptor, - ACTIONS(13266), 1, + ACTIONS(14461), 1, aux_sym_heredoc_redirect_token1, - STATE(7420), 1, + STATE(8045), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5987), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3981), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308540,10 +337835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280244] = 3, + [308991] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 8, + ACTIONS(1302), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308551,23 +337846,23 @@ 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(1304), 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, - [280271] = 3, + aux_sym_concatenation_token1, + [309018] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308575,7 +337870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 12, + ACTIONS(1348), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308588,62 +337883,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280298] = 3, - ACTIONS(71), 1, + [309045] = 9, + ACTIONS(3), 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), 12, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(4013), 1, sym_file_descriptor, - sym__concat, + ACTIONS(14463), 1, + aux_sym_heredoc_redirect_token1, + STATE(7647), 1, + sym__heredoc_expression, + ACTIONS(3977), 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(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [280325] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1268), 7, - anon_sym_PIPE, + STATE(5987), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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(1270), 12, - 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, - aux_sym_concatenation_token1, - [280352] = 5, + [309084] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13268), 1, + ACTIONS(14446), 1, sym__special_character, - STATE(5431), 1, + STATE(5930), 1, aux_sym__literal_repeat1, - ACTIONS(1316), 7, + ACTIONS(5052), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308651,7 +337928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 10, + ACTIONS(5054), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308662,79 +337939,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280383] = 20, + [309115] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(8496), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(8498), 1, aux_sym_number_token2, - ACTIONS(12902), 1, + ACTIONS(14239), 1, anon_sym_LPAREN, - ACTIONS(12906), 1, + ACTIONS(14243), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(12908), 1, + ACTIONS(14245), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(12912), 1, + ACTIONS(14249), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12916), 1, + ACTIONS(14253), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12918), 1, + ACTIONS(14255), 1, anon_sym_BQUOTE, - ACTIONS(12920), 1, + ACTIONS(14257), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13271), 1, + ACTIONS(14465), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(13273), 1, + ACTIONS(14467), 1, anon_sym_RBRACE3, - ACTIONS(13275), 1, + ACTIONS(14469), 1, aux_sym__simple_variable_name_token1, - STATE(6205), 1, - sym_number, - STATE(6216), 1, - sym_expansion, - STATE(6249), 1, + STATE(6736), 1, sym__expansion_max_length_binary_expression, - STATE(6323), 1, + STATE(6892), 1, sym__expansion_max_length_expression, - STATE(6707), 1, + STATE(6732), 2, + sym_number, + sym_expansion, + STATE(7431), 3, sym_parenthesized_expression, - STATE(6749), 1, sym_arithmetic_expansion, - STATE(7028), 1, sym_command_substitution, - [280444] = 3, - ACTIONS(71), 1, + [309170] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 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(2158), 12, + ACTIONS(3987), 1, + anon_sym_LT_LT_LT, + ACTIONS(4013), 1, sym_file_descriptor, + ACTIONS(14471), 1, + aux_sym_heredoc_redirect_token1, + STATE(7650), 1, + sym__heredoc_expression, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5987), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3981), 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, - [280471] = 5, + [309209] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(4280), 7, + ACTIONS(2180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308742,39 +338018,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4282), 10, + ACTIONS(2182), 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, + anon_sym_LT_LT_LT, + [309236] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(4013), 1, sym_file_descriptor, - ACTIONS(13277), 1, + ACTIONS(14473), 1, aux_sym_heredoc_redirect_token1, - STATE(7146), 1, + STATE(7960), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5987), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3981), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -308783,40 +338061,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [280541] = 9, + [309275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + STATE(5912), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13398), 2, sym_file_descriptor, - ACTIONS(13279), 1, aux_sym_heredoc_redirect_token1, - STATE(7160), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(14475), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(13394), 14, 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_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, - [280580] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [309306] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8496), 1, + aux_sym_number_token1, + ACTIONS(8498), 1, + aux_sym_number_token2, + ACTIONS(14239), 1, + anon_sym_LPAREN, + ACTIONS(14243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14249), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14253), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14255), 1, + anon_sym_BQUOTE, + ACTIONS(14257), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14477), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14479), 1, + anon_sym_RBRACE3, + ACTIONS(14481), 1, + aux_sym__simple_variable_name_token1, + STATE(6735), 1, + sym_number, + STATE(6754), 1, + sym_expansion, + STATE(6760), 1, + sym__expansion_max_length_binary_expression, + STATE(6892), 1, + sym__expansion_max_length_expression, + STATE(7315), 1, + sym_parenthesized_expression, + STATE(7316), 1, + sym_arithmetic_expansion, + STATE(7435), 1, + sym_command_substitution, + [309367] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 7, + ACTIONS(14446), 1, + sym__special_character, + STATE(5930), 1, + aux_sym__literal_repeat1, + ACTIONS(6242), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308824,9 +338143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1290), 12, + ACTIONS(6244), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308836,11 +338154,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, - [280607] = 3, + [309398] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 7, + ACTIONS(1318), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308848,8 +338165,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(1320), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -308859,12 +338177,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, + [309425] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308872,7 +338189,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(1364), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308885,10 +338202,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, + [309452] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1264), 7, + ACTIONS(1346), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308896,7 +338213,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(1348), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308909,36 +338226,34 @@ 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, + [309479] = 3, + ACTIONS(71), 1, sym_comment, - STATE(5443), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12222), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(13281), 2, + ACTIONS(1271), 7, 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, + ACTIONS(1273), 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, - [280719] = 3, + sym__special_character, + [309506] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1350), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308946,7 +338261,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(1352), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -308959,40 +338274,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, + [309533] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13252), 1, - sym__special_character, - STATE(5431), 1, - aux_sym__literal_repeat1, - ACTIONS(4307), 7, + ACTIONS(4945), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309000,69 +338285,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4309), 10, + ACTIONS(4947), 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, - [280808] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, - sym_file_descriptor, - ACTIONS(13286), 1, - aux_sym_heredoc_redirect_token1, - STATE(7309), 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, - [280847] = 9, + [309560] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3987), 1, anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(4013), 1, sym_file_descriptor, - ACTIONS(13288), 1, + ACTIONS(14483), 1, aux_sym_heredoc_redirect_token1, - STATE(7342), 1, + STATE(8038), 1, sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(3977), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(3983), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + STATE(5987), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + ACTIONS(3981), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -309071,34 +338328,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [309599] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(1366), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309106,7 +338339,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(1368), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -309119,10 +338352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [280940] = 3, + [309626] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(14446), 1, + sym__special_character, + STATE(5930), 1, + aux_sym__literal_repeat1, + ACTIONS(4941), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309130,9 +338367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 12, + ACTIONS(4943), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309142,11 +338378,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, - [280967] = 3, + [309657] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1280), 7, + ACTIONS(13511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309154,91 +338389,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1282), 12, + ACTIONS(13509), 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, - [280994] = 9, - ACTIONS(3), 1, + [309683] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_LT_LT_LT, - ACTIONS(3578), 1, + ACTIONS(5128), 1, + anon_sym_LT_LT, + ACTIONS(13348), 1, sym_file_descriptor, - ACTIONS(13290), 1, - aux_sym_heredoc_redirect_token1, - STATE(6991), 1, - sym__heredoc_expression, - ACTIONS(3542), 2, + ACTIONS(14491), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14485), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3548), 2, + ACTIONS(14489), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + ACTIONS(14487), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5003), 3, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3546), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12890), 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, + [309721] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5128), 1, + anon_sym_LT_LT, + ACTIONS(13482), 1, + sym_file_descriptor, + ACTIONS(14491), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14497), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14495), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [281033] = 17, + STATE(5102), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12866), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [309759] = 7, 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, + ACTIONS(14501), 1, + anon_sym_DQUOTE, + ACTIONS(14505), 1, + sym_variable_name, + STATE(6660), 1, + sym_string, + ACTIONS(14503), 2, 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, + aux_sym__multiline_variable_name_token1, + ACTIONS(1249), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(14499), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [309793] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1248), 7, + ACTIONS(13053), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309246,9 +338497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1250), 12, + ACTIONS(13051), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309258,49 +338508,38 @@ 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, - [281115] = 17, + anon_sym_LT_LT_LT, + [309819] = 7, 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, + ACTIONS(14501), 1, + anon_sym_DQUOTE, + ACTIONS(14505), 1, + sym_variable_name, + STATE(6660), 1, + sym_string, + ACTIONS(14503), 2, 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, + aux_sym__multiline_variable_name_token1, + ACTIONS(1237), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(14499), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [309853] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12411), 7, + ACTIONS(13266), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309308,22 +338547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12409), 11, + ACTIONS(13264), 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, - [281196] = 3, + anon_sym_LT_LT_LT, + [309879] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12186), 7, + ACTIONS(6382), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309331,8 +338570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12184), 11, + ACTIONS(6384), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309342,27 +338582,122 @@ static const uint16_t 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, + [309905] = 3, + 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(13486), 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(13484), 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, + [309931] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14369), 1, + anon_sym_LT_LT, + ACTIONS(14371), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14373), 1, sym_file_descriptor, - ACTIONS(11671), 2, + ACTIONS(6645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13307), 2, + ACTIONS(14322), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5457), 3, + ACTIONS(14320), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5863), 3, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(13304), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14318), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [309969] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14509), 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(14507), 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, + [309995] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14442), 1, + sym__concat, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4943), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 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, + [310027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14442), 1, + sym__concat, + STATE(5999), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4947), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4945), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -309371,62 +338706,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [281258] = 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [310059] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(4529), 1, + ACTIONS(5128), 1, anon_sym_LT_LT, - ACTIONS(12109), 1, + ACTIONS(13342), 1, sym_file_descriptor, - ACTIONS(13322), 1, + ACTIONS(14491), 1, anon_sym_LT_LT_DASH, - ACTIONS(13316), 2, + ACTIONS(14511), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13320), 2, + ACTIONS(14515), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13318), 3, + ACTIONS(14513), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4669), 3, + STATE(5045), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11798), 5, + ACTIONS(12965), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [281296] = 3, + [310097] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12453), 7, + ACTIONS(14517), 1, anon_sym_PIPE, + ACTIONS(14519), 1, + anon_sym_PIPE_AMP, + STATE(6025), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13394), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12451), 11, + ACTIONS(13398), 9, 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, + [310129] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12553), 7, + ACTIONS(13194), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309434,54 +338775,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12555), 11, + ACTIONS(13192), 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, - [281348] = 3, + anon_sym_LT_LT_LT, + [310155] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, - anon_sym_PIPE, + ACTIONS(5128), 1, + anon_sym_LT_LT, + ACTIONS(13684), 1, + sym_file_descriptor, + ACTIONS(14491), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14521), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14525), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14523), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5376), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13084), 5, 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, + [310193] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4728), 1, + anon_sym_LT_LT, + ACTIONS(12963), 1, sym_file_descriptor, + ACTIONS(14533), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14527), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14531), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14529), 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, - [281374] = 6, + STATE(4744), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11139), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [310231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(14440), 1, aux_sym_concatenation_token1, - ACTIONS(13324), 1, + ACTIONS(14442), 1, sym__concat, - STATE(5483), 1, + STATE(5998), 1, aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, + ACTIONS(5054), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1207), 13, + ACTIONS(5052), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -309495,33 +338871,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [281406] = 3, - ACTIONS(71), 1, + [310263] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12234), 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(12232), 11, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14442), 1, + sym__concat, + STATE(5999), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5058), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5056), 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, anon_sym_LT_LT_LT, - [281432] = 3, + [310295] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(13246), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309529,22 +338908,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(13244), 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, - [281458] = 3, + anon_sym_LT_LT_LT, + [310321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12295), 7, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309552,22 +338931,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12297), 11, + ACTIONS(2178), 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, + anon_sym_LT_LT_LT, + [310347] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12637), 7, + ACTIONS(4945), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309575,114 +338954,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12639), 11, + ACTIONS(4947), 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, - [281510] = 3, + anon_sym_LT_LT_LT, + [310373] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12641), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5072), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12643), 11, + ACTIONS(13182), 1, sym_file_descriptor, + ACTIONS(14541), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14535), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14539), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14537), 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, - [281536] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12353), 7, - anon_sym_PIPE, + STATE(4882), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12844), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12351), 11, + [310411] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5128), 1, + anon_sym_LT_LT, + ACTIONS(14075), 1, sym_file_descriptor, + ACTIONS(14491), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14543), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14547), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14545), 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(5727), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13847), 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, + [310449] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12773), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14555), 1, + anon_sym_LT_LT_LT, + ACTIONS(14558), 1, sym_file_descriptor, + ACTIONS(12765), 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(14552), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281588] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12375), 7, - anon_sym_PIPE, + STATE(5987), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(14549), 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(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, - [281614] = 3, + [310485] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, + ACTIONS(13207), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309690,22 +339063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12397), 11, + ACTIONS(13205), 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, - [281640] = 3, + anon_sym_LT_LT_LT, + [310511] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, + ACTIONS(5056), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309713,22 +339086,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12397), 11, + ACTIONS(5058), 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, - [281666] = 3, + anon_sym_LT_LT_LT, + [310537] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12489), 7, + ACTIONS(13031), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309736,91 +339109,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12487), 11, + ACTIONS(13029), 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, - [281692] = 3, + anon_sym_LT_LT_LT, + [310563] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12115), 7, + ACTIONS(13141), 1, anon_sym_PIPE, + ACTIONS(14561), 1, + anon_sym_PIPE_AMP, + STATE(5976), 1, + aux_sym_pipeline_repeat1, + ACTIONS(13139), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12113), 11, + ACTIONS(13137), 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, - [281718] = 3, + [310595] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12434), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5128), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12436), 11, + ACTIONS(13378), 1, sym_file_descriptor, + ACTIONS(14491), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14564), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(14568), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14566), 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, - [281744] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12509), 7, - anon_sym_PIPE, + STATE(5155), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12911), 5, 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, - 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, - [281770] = 3, + [310633] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12509), 7, + ACTIONS(13110), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309828,22 +339187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12511), 11, + ACTIONS(13108), 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, - [281796] = 3, + anon_sym_LT_LT_LT, + [310659] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309851,7 +339210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12539), 11, + ACTIONS(2178), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309863,10 +339222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281822] = 3, + [310685] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(13227), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309874,22 +339233,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(13225), 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, + [310711] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(13043), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309897,22 +339256,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(13041), 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, - [281874] = 3, + anon_sym_LT_LT_LT, + [310737] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(2180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309920,7 +339279,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(2182), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -309932,42 +339291,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281900] = 3, - ACTIONS(71), 1, + [310763] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 7, - anon_sym_PIPE, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14570), 1, + sym__concat, + STATE(6000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1281), 13, + 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(2158), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [310795] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14572), 1, + sym__concat, + STATE(6000), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1275), 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, anon_sym_LT_LT_LT, - [281926] = 6, + [310827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13326), 1, + ACTIONS(14574), 1, aux_sym_concatenation_token1, - ACTIONS(13329), 1, + ACTIONS(14577), 1, sym__concat, - STATE(5483), 1, + STATE(6000), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(1263), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 13, + ACTIONS(1261), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -309981,10 +339369,39 @@ 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, + [310859] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6647), 1, + anon_sym_LT_LT, + ACTIONS(6649), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14083), 1, + sym_file_descriptor, + ACTIONS(6645), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14052), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14050), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5681), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(14048), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [310897] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(13250), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309992,7 +339409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12107), 11, + ACTIONS(13248), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310004,10 +339421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281984] = 3, + [310923] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12230), 7, + ACTIONS(13544), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310015,48 +339432,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12228), 11, + ACTIONS(13542), 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, - [282010] = 6, - ACTIONS(3), 1, + [310949] = 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(5689), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13186), 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(13184), 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, - [282042] = 3, + [310975] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(13480), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310064,7 +339478,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(13478), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310076,10 +339490,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, + [311001] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(13190), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310087,100 +339501,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12347), 11, + ACTIONS(13188), 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, - [282094] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [311027] = 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(2158), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13493), 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, - [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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13219), 1, - anon_sym_LT_LT, - ACTIONS(13221), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13223), 1, + ACTIONS(13491), 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_RBRACK, 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, + [311053] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 7, + ACTIONS(13515), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310188,22 +339547,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(13513), 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, + [311079] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12178), 7, + ACTIONS(13522), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310211,49 +339570,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(13520), 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, + [311105] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5705), 7, + ACTIONS(13522), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310261,48 +339593,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5707), 11, + ACTIONS(13520), 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, - [282302] = 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(5563), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5561), 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, - [282334] = 3, + [311131] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12244), 7, + ACTIONS(13528), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310310,133 +339616,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12242), 11, + ACTIONS(13526), 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, + [311157] = 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(13528), 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(13526), 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, - anon_sym_GT, - 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, - 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_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_LT_DASH, + [311183] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4437), 7, + ACTIONS(13536), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310444,7 +339662,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(13534), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310456,36 +339674,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, + [311209] = 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(13215), 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(13213), 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, - [282560] = 3, + [311235] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(13550), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310493,22 +339708,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(13548), 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, + [311261] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4311), 7, + ACTIONS(13563), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310516,7 +339731,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(13561), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310528,10 +339743,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, + [311287] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(13563), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310539,22 +339754,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(13561), 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, + [311313] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5268), 7, + ACTIONS(13567), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310562,22 +339777,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5270), 11, + ACTIONS(13565), 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, - [282664] = 3, + [311339] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12279), 7, + ACTIONS(13567), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310585,77 +339800,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12281), 11, + ACTIONS(13565), 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, + [311365] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12133), 1, + ACTIONS(13571), 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(13569), 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, + [311391] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4173), 1, - anon_sym_LT_LT, - ACTIONS(11775), 1, - 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_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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12142), 7, + ACTIONS(13575), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310663,77 +339846,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12140), 11, + ACTIONS(13573), 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, + [311417] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4529), 1, - anon_sym_LT_LT, - ACTIONS(12432), 1, - 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_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4731), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11949), 5, + ACTIONS(13575), 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(13573), 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_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_LT, - [282856] = 3, + anon_sym_LT_LT_DASH, + [311443] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12212), 7, + ACTIONS(13388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310741,22 +339892,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12210), 11, + ACTIONS(13386), 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, - [282882] = 3, + [311469] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12206), 7, + ACTIONS(13388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310764,35 +339915,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12208), 11, + ACTIONS(13386), 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, - [282908] = 6, + [311495] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13373), 1, + ACTIONS(14580), 1, anon_sym_PIPE, - ACTIONS(13375), 1, + ACTIONS(14583), 1, anon_sym_PIPE_AMP, - STATE(5518), 1, + STATE(6025), 1, aux_sym_pipeline_repeat1, - ACTIONS(12218), 6, + ACTIONS(13139), 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(13137), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310802,146 +339953,85 @@ 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, + [311527] = 3, ACTIONS(71), 1, sym_comment, - 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, - [282978] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13377), 1, + ACTIONS(1271), 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(1273), 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, - [283010] = 9, - ACTIONS(71), 1, + sym__special_character, + [311553] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_LT_LT, - ACTIONS(11978), 1, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14442), 1, + sym__concat, + STATE(5998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6244), 2, sym_file_descriptor, - ACTIONS(13389), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13383), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(6242), 13, 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_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, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [283048] = 9, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [311585] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4529), 1, - anon_sym_LT_LT, - ACTIONS(12202), 1, + ACTIONS(14440), 1, + aux_sym_concatenation_token1, + ACTIONS(14442), 1, + sym__concat, + STATE(5999), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2178), 2, sym_file_descriptor, - ACTIONS(13322), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13391), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(2176), 13, 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_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_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [283086] = 3, - ACTIONS(71), 1, - sym_comment, - 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), 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, - [283112] = 3, + [311617] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5886), 7, + ACTIONS(4945), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310949,22 +340039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5888), 11, + ACTIONS(4947), 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, - [283138] = 3, + [311643] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12129), 7, + ACTIONS(2180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310972,7 +340062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12127), 11, + ACTIONS(2182), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310984,19 +340074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [283164] = 6, + [311669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(14440), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(14442), 1, sym__concat, - STATE(5527), 1, + STATE(5998), 1, aux_sym_concatenation_repeat1, - ACTIONS(4282), 2, + ACTIONS(6250), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 13, + ACTIONS(6248), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311010,19 +340100,19 @@ 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, + [311701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13256), 1, + ACTIONS(14440), 1, aux_sym_concatenation_token1, - ACTIONS(13258), 1, + ACTIONS(14442), 1, sym__concat, - STATE(5462), 1, + STATE(5999), 1, aux_sym_concatenation_repeat1, - ACTIONS(4439), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 13, + ACTIONS(2180), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311036,10 +340126,10 @@ 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, + [311733] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12123), 7, + ACTIONS(6378), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311047,8 +340137,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(6380), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -311058,37 +340149,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283254] = 6, - ACTIONS(3), 1, + [311759] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(13256), 1, - aux_sym_concatenation_token1, - ACTIONS(13397), 1, - sym__concat, - STATE(5483), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1227), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5056), 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(5058), 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, - [283286] = 3, + anon_sym_LT_LT_DASH, + [311785] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12103), 7, + ACTIONS(5726), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311096,8 +340183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12101), 11, + ACTIONS(5728), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -311107,33 +340195,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + [311811] = 3, + ACTIONS(71), 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, + ACTIONS(13211), 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(13209), 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, - aux_sym_concatenation_token1, - [283337] = 3, + [311837] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12531), 7, + ACTIONS(13505), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311141,7 +340229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12533), 10, + ACTIONS(13503), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311152,54 +340240,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283362] = 3, - ACTIONS(3), 1, + [311862] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13575), 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, - aux_sym_concatenation_token1, - [283387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 3, + ACTIONS(13573), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 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, - [283412] = 3, + anon_sym_LT_LT_DASH, + [311887] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12142), 7, + ACTIONS(13053), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311207,7 +340273,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(13051), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311218,32 +340284,32 @@ 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, - ACTIONS(3), 1, + [311912] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13392), 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(13390), 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, - [283462] = 3, + anon_sym_LT_LT_DASH, + [311937] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12363), 7, + ACTIONS(13402), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311251,7 +340317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12361), 10, + ACTIONS(13400), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311262,10 +340328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283487] = 3, + [311962] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12416), 7, + ACTIONS(13416), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311273,7 +340339,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(13414), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311284,10 +340350,10 @@ 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, + [311987] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12363), 7, + ACTIONS(13388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311295,7 +340361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12361), 10, + ACTIONS(13386), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311306,10 +340372,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283537] = 3, + [312012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14586), 1, + sym__special_character, + STATE(6086), 1, + aux_sym__literal_repeat1, + ACTIONS(6244), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(6242), 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, + [312041] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12123), 7, + ACTIONS(13388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311317,7 +340407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12121), 10, + ACTIONS(13386), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311328,10 +340418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283562] = 3, + [312066] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12457), 7, + ACTIONS(13486), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311339,7 +340429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12455), 10, + ACTIONS(13484), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311350,36 +340440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283587] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12105), 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(12107), 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, - [283612] = 3, + [312091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1344), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 14, + ACTIONS(1342), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311394,10 +340462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [283637] = 3, + [312116] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12391), 7, + ACTIONS(13194), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311405,7 +340473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12393), 10, + ACTIONS(13192), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311416,58 +340484,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283662] = 3, - ACTIONS(71), 1, + [312141] = 5, + ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(14586), 1, + sym__special_character, + STATE(6086), 1, + aux_sym__literal_repeat1, + ACTIONS(4943), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4941), 13, 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, - [283687] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12416), 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(12418), 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, - [283712] = 3, + anon_sym_LT_LT_LT, + [312170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(1316), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 14, + ACTIONS(1314), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311482,14 +340530,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, + [312195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 14, + ACTIONS(1261), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311504,10 +340552,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, + [312220] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12395), 7, + ACTIONS(5056), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311515,7 +340563,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(5058), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311526,10 +340574,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, + [312245] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12503), 7, + ACTIONS(13505), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311537,7 +340585,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(13503), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311548,10 +340596,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, + [312270] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12525), 7, + ACTIONS(6390), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311559,7 +340607,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(6392), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311570,61 +340618,14 @@ 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12349), 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(12347), 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, - [283862] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12489), 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(12487), 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, - [283887] = 5, + [312295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13399), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, + ACTIONS(1368), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 13, + ACTIONS(1366), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311638,32 +340639,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, + [312320] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12509), 7, + ACTIONS(13246), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311671,7 +340651,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(13244), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311682,14 +340662,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, + [312345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 3, + ACTIONS(1304), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 14, + ACTIONS(1302), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311704,14 +340684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [283991] = 3, + [312370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1286), 3, + ACTIONS(1324), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 14, + ACTIONS(1322), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311726,14 +340706,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, + [312395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 3, + ACTIONS(1312), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 14, + ACTIONS(1310), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311748,56 +340728,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, + [312420] = 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(13266), 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(13264), 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, + [312445] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12178), 7, + ACTIONS(13540), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311805,7 +340761,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(13538), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311816,14 +340772,14 @@ 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, + [312470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1308), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 14, + ACTIONS(1306), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311838,10 +340794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284145] = 3, + [312495] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12453), 7, + ACTIONS(13554), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311849,7 +340805,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(13552), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311860,10 +340816,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, + [312520] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12279), 7, + ACTIONS(13284), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311871,7 +340827,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(13282), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311882,10 +340838,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, + [312545] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(13250), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311893,7 +340849,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(13248), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311904,10 +340860,10 @@ 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, + [312570] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12295), 7, + ACTIONS(13497), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311915,7 +340871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12297), 10, + ACTIONS(13495), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311926,10 +340882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284245] = 3, + [312595] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12537), 7, + ACTIONS(13497), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311937,7 +340893,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(13495), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311948,10 +340904,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, + [312620] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 7, + ACTIONS(13336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311959,7 +340915,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(13334), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311970,10 +340926,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, + [312645] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12495), 7, + ACTIONS(13501), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311981,7 +340937,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(13499), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311992,10 +340948,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, + [312670] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12521), 7, + ACTIONS(13406), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312003,7 +340959,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(13404), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312014,10 +340970,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, + [312695] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12387), 7, + ACTIONS(13312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312025,7 +340981,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(13310), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312036,54 +340992,32 @@ 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, + [312720] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13328), 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, - aux_sym_concatenation_token1, - [284395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 3, + ACTIONS(13326), 10, 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_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, - [284420] = 3, + anon_sym_LT_LT_DASH, + [312745] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12434), 7, + ACTIONS(13480), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312091,7 +341025,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(13478), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312102,32 +341036,32 @@ 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, - ACTIONS(71), 1, + [312770] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12637), 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(12639), 10, + ACTIONS(1348), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, - [284470] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [312795] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12591), 7, + ACTIONS(13493), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312135,7 +341069,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(13491), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312146,10 +341080,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, + [312820] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12230), 7, + ACTIONS(13511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312157,7 +341091,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(13509), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312168,32 +341102,32 @@ 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, - ACTIONS(71), 1, + [312845] = 3, + 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), 10, + ACTIONS(1328), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1326), 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, - [284545] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [312870] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12641), 7, + ACTIONS(2176), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312201,7 +341135,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(2178), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312212,10 +341146,10 @@ 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, + [312895] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12244), 7, + ACTIONS(13575), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312223,7 +341157,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(13573), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312234,10 +341168,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, + [312920] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12355), 7, + ACTIONS(13227), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312245,7 +341179,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(13225), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312256,32 +341190,34 @@ 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, - ACTIONS(71), 1, + [312945] = 5, + ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(14586), 1, + sym__special_character, + STATE(6086), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5052), 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, - [284645] = 3, + anon_sym_LT_LT_LT, + [312974] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12411), 7, + ACTIONS(2180), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312289,7 +341225,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(2182), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312300,32 +341236,32 @@ 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, - ACTIONS(71), 1, + [312999] = 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), 10, + ACTIONS(1364), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1362), 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, - [284695] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [313024] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5856), 7, + ACTIONS(13340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312333,7 +341269,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(13338), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312344,10 +341280,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, + [313049] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12597), 7, + ACTIONS(13476), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312355,7 +341291,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(13474), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312366,10 +341302,34 @@ 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, + [313074] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14588), 1, + sym__special_character, + STATE(6086), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1370), 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, + [313103] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12353), 7, + ACTIONS(13515), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312377,7 +341337,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(13513), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312388,10 +341348,32 @@ 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, + [313128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1350), 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, + [313153] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12103), 7, + ACTIONS(13522), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312399,7 +341381,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(13520), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312410,10 +341392,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, + [313178] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(13522), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312421,7 +341403,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(13520), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312432,10 +341414,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, + [313203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1346), 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, + [313228] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2160), 7, + ACTIONS(13190), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312443,7 +341447,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(13188), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312454,10 +341458,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, + [313253] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12343), 7, + ACTIONS(13528), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312465,7 +341469,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(13526), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312476,10 +341480,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, + [313278] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12403), 7, + ACTIONS(13528), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312487,7 +341491,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(13526), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312498,10 +341502,10 @@ 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, + [313303] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(13536), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312509,7 +341513,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(13534), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312520,10 +341524,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, + [313328] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12577), 7, + ACTIONS(13376), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312531,7 +341535,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(13374), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312542,10 +341546,32 @@ 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, + [313353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1318), 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, + [313378] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2156), 7, + ACTIONS(13384), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312553,7 +341579,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(13382), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312564,41 +341590,58 @@ 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, - ACTIONS(3), 1, + [313403] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(5689), 2, + ACTIONS(13346), 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(13344), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5687), 13, 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, + [313428] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13031), 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(13029), 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, - [284999] = 5, + anon_sym_LT_LT_DASH, + [313453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(4282), 2, + ACTIONS(1332), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4280), 13, + ACTIONS(1330), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312612,10 +341655,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, + [313478] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12491), 7, + ACTIONS(4945), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312623,7 +341667,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(4947), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312634,14 +341678,36 @@ 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, + [313503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 14, + ACTIONS(1358), 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, + [313528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1354), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312656,10 +341722,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285078] = 3, + [313553] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12499), 7, + ACTIONS(13550), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312667,7 +341733,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(13548), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312678,17 +341744,14 @@ 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, + [313578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13402), 1, - sym__special_character, - STATE(5552), 1, - aux_sym__literal_repeat1, - ACTIONS(4309), 2, + ACTIONS(1336), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4307), 13, + ACTIONS(1334), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312702,10 +341765,11 @@ 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, + aux_sym_concatenation_token1, + [313603] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12561), 7, + ACTIONS(13563), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312713,7 +341777,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(13561), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312724,10 +341788,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, + [313628] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12426), 7, + ACTIONS(13563), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312735,7 +341799,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(13561), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312746,14 +341810,61 @@ 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, + [313653] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13567), 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(13565), 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, + [313678] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13567), 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(13565), 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, + [313703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(14586), 1, + sym__special_character, + STATE(6086), 1, + aux_sym__literal_repeat1, + ACTIONS(6250), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 14, + ACTIONS(6248), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312767,11 +341878,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, - [285207] = 3, + [313732] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12349), 7, + ACTIONS(13368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312779,7 +341889,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(13366), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312790,10 +341900,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, + [313757] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12375), 7, + ACTIONS(13571), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312801,7 +341911,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(13569), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312812,54 +341922,54 @@ 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, - ACTIONS(3), 1, + [313782] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13544), 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(13542), 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, - [285282] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [313807] = 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(13110), 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(13108), 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, + [313832] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12212), 7, + ACTIONS(6390), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312867,7 +341977,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(6392), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312878,14 +341988,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, + [313857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 3, + ACTIONS(1340), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 14, + ACTIONS(1338), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312900,13 +342010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285357] = 3, + [313882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 2, + ACTIONS(1273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1223), 14, + ACTIONS(1271), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312921,13 +342031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, sym__special_character, - [285381] = 3, + [313906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(5058), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4311), 13, + ACTIONS(5056), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312941,13 +342051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285404] = 3, + [313929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(2182), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2156), 13, + ACTIONS(2180), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312961,13 +342071,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [285427] = 3, + [313952] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(14595), 1, + sym_variable_name, + STATE(6983), 1, + sym_string, + ACTIONS(1249), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(14593), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14591), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [313983] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7168), 1, + anon_sym_DQUOTE, + ACTIONS(14595), 1, + sym_variable_name, + STATE(6983), 1, + sym_string, + ACTIONS(1237), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(14593), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14591), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [314014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, + ACTIONS(2178), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 13, + ACTIONS(2176), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -312981,13 +342139,13 @@ 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, + [314037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4947), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4437), 13, + ACTIONS(4945), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -313001,4460 +342159,4953 @@ 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, + [314060] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, - anon_sym_DQUOTE, - ACTIONS(13408), 1, - sym_variable_name, - STATE(6445), 1, - sym_string, - ACTIONS(1183), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(13406), 2, + ACTIONS(13602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13604), 1, + anon_sym_BQUOTE, + ACTIONS(13606), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14601), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13404), 8, + ACTIONS(14603), 1, + sym_variable_name, + STATE(3734), 1, + sym_subscript, + STATE(6933), 1, + sym_command_substitution, + ACTIONS(14599), 2, + anon_sym_DOLLAR, + anon_sym__, + ACTIONS(14597), 6, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_POUND, anon_sym_AT2, - anon_sym__, - [285504] = 9, + [314097] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, + ACTIONS(13602), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(13604), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(13606), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13414), 1, + ACTIONS(14609), 1, aux_sym__simple_variable_name_token1, - ACTIONS(13416), 1, + ACTIONS(14611), 1, sym_variable_name, - ACTIONS(13412), 2, + ACTIONS(14607), 2, anon_sym_DOLLAR, anon_sym__, - STATE(6305), 2, + STATE(6933), 2, sym_subscript, sym_command_substitution, - ACTIONS(13410), 6, + ACTIONS(14605), 6, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_POUND, anon_sym_AT2, - [285539] = 7, + [314132] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14617), 1, + anon_sym_DOLLAR, + ACTIONS(14619), 1, anon_sym_DQUOTE, - ACTIONS(13408), 1, - sym_variable_name, - STATE(6445), 1, - sym_string, - ACTIONS(1195), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(13406), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13404), 8, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6198), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [314172] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14631), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [285570] = 10, + ACTIONS(14633), 1, + anon_sym_DQUOTE, + STATE(6129), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [314212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12333), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(12335), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13422), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(13424), 1, - sym_variable_name, - STATE(3378), 1, - sym_subscript, - STATE(6305), 1, + ACTIONS(14635), 1, + anon_sym_DOLLAR, + ACTIONS(14637), 1, + anon_sym_DQUOTE, + STATE(6276), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - ACTIONS(13420), 2, + [314252] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14639), 1, anon_sym_DOLLAR, - anon_sym__, - ACTIONS(13418), 6, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AT2, - [285607] = 12, + ACTIONS(14641), 1, + anon_sym_DQUOTE, + STATE(6131), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [314292] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13430), 1, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14643), 1, anon_sym_DOLLAR, - ACTIONS(13432), 1, + ACTIONS(14645), 1, anon_sym_DQUOTE, - ACTIONS(13434), 1, + STATE(6276), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [314332] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5744), 1, + ACTIONS(14647), 1, + anon_sym_DOLLAR, + ACTIONS(14649), 1, + anon_sym_DQUOTE, + STATE(6133), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285647] = 12, + [314372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13444), 1, + ACTIONS(14651), 1, anon_sym_DOLLAR, - ACTIONS(13446), 1, + ACTIONS(14653), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285687] = 12, + [314412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13448), 1, + ACTIONS(14655), 1, anon_sym_DOLLAR, - ACTIONS(13450), 1, + ACTIONS(14657), 1, anon_sym_DQUOTE, - STATE(5622), 1, + STATE(6136), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285727] = 12, + [314452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13452), 1, + ACTIONS(14659), 1, anon_sym_DOLLAR, - ACTIONS(13454), 1, + ACTIONS(14661), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6139), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285767] = 12, + [314492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13456), 1, + ACTIONS(14663), 1, anon_sym_DOLLAR, - ACTIONS(13458), 1, + ACTIONS(14665), 1, anon_sym_DQUOTE, - STATE(5626), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285807] = 12, + [314532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13460), 1, + ACTIONS(14667), 1, anon_sym_DOLLAR, - ACTIONS(13462), 1, + ACTIONS(14669), 1, anon_sym_DQUOTE, - STATE(5641), 1, + STATE(6138), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285847] = 12, + [314572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13464), 1, + ACTIONS(14671), 1, anon_sym_DOLLAR, - ACTIONS(13466), 1, + ACTIONS(14673), 1, anon_sym_DQUOTE, - STATE(5653), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285887] = 12, + [314612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13468), 1, + ACTIONS(14675), 1, anon_sym_DOLLAR, - ACTIONS(13470), 1, + ACTIONS(14677), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285927] = 12, + [314652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13472), 1, + ACTIONS(14679), 1, anon_sym_DOLLAR, - ACTIONS(13474), 1, + ACTIONS(14681), 1, anon_sym_DQUOTE, - STATE(5628), 1, + STATE(6142), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [285967] = 12, + [314692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13476), 1, + ACTIONS(14683), 1, anon_sym_DOLLAR, - ACTIONS(13478), 1, + ACTIONS(14685), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286007] = 12, + [314732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13480), 1, + ACTIONS(14687), 1, anon_sym_DOLLAR, - ACTIONS(13482), 1, + ACTIONS(14689), 1, anon_sym_DQUOTE, - STATE(5630), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286047] = 12, + [314772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13484), 1, + ACTIONS(14691), 1, anon_sym_DOLLAR, - ACTIONS(13486), 1, + ACTIONS(14693), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286087] = 12, + [314812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13488), 1, + ACTIONS(14695), 1, anon_sym_DOLLAR, - ACTIONS(13490), 1, + ACTIONS(14697), 1, anon_sym_DQUOTE, - STATE(5632), 1, + STATE(6145), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286127] = 12, + [314852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13492), 1, + ACTIONS(14699), 1, anon_sym_DOLLAR, - ACTIONS(13494), 1, + ACTIONS(14701), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286167] = 12, + [314892] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13496), 1, + ACTIONS(14703), 1, anon_sym_DOLLAR, - ACTIONS(13498), 1, + ACTIONS(14705), 1, anon_sym_DQUOTE, - STATE(5634), 1, + STATE(6147), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286207] = 12, + [314932] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13500), 1, + ACTIONS(14707), 1, anon_sym_DOLLAR, - ACTIONS(13502), 1, + ACTIONS(14709), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286247] = 12, + [314972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13504), 1, + ACTIONS(14711), 1, anon_sym_DOLLAR, - ACTIONS(13506), 1, + ACTIONS(14713), 1, anon_sym_DQUOTE, - STATE(5637), 1, + STATE(6149), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286287] = 12, + [315012] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13508), 1, + ACTIONS(14715), 1, anon_sym_DOLLAR, - ACTIONS(13510), 1, + ACTIONS(14717), 1, anon_sym_DQUOTE, - STATE(5654), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286327] = 12, + [315052] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13512), 1, + ACTIONS(14719), 1, anon_sym_DOLLAR, - ACTIONS(13514), 1, + ACTIONS(14721), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6151), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286367] = 12, + [315092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13516), 1, + ACTIONS(14723), 1, anon_sym_DOLLAR, - ACTIONS(13518), 1, + ACTIONS(14725), 1, anon_sym_DQUOTE, - STATE(5639), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286407] = 12, + [315132] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13520), 1, + ACTIONS(14727), 1, anon_sym_DOLLAR, - ACTIONS(13522), 1, + ACTIONS(14729), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6153), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286447] = 12, + [315172] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13524), 1, + ACTIONS(14731), 1, anon_sym_DOLLAR, - ACTIONS(13526), 1, + ACTIONS(14733), 1, anon_sym_DQUOTE, - STATE(5642), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286487] = 12, + [315212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13528), 1, + ACTIONS(14735), 1, anon_sym_DOLLAR, - ACTIONS(13530), 1, + ACTIONS(14737), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6155), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286527] = 12, + [315252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13532), 1, + ACTIONS(14739), 1, anon_sym_DOLLAR, - ACTIONS(13534), 1, + ACTIONS(14741), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286567] = 12, + [315292] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13536), 1, + ACTIONS(14743), 1, anon_sym_DOLLAR, - ACTIONS(13538), 1, + ACTIONS(14745), 1, anon_sym_DQUOTE, - STATE(5644), 1, + STATE(6157), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286607] = 12, + [315332] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13540), 1, + ACTIONS(14747), 1, anon_sym_DOLLAR, - ACTIONS(13542), 1, + ACTIONS(14749), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286647] = 12, + [315372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13544), 1, + ACTIONS(14751), 1, anon_sym_DOLLAR, - ACTIONS(13546), 1, + ACTIONS(14753), 1, anon_sym_DQUOTE, - STATE(5646), 1, + STATE(6159), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286687] = 12, + [315412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13548), 1, + ACTIONS(14755), 1, anon_sym_DOLLAR, - ACTIONS(13550), 1, + ACTIONS(14757), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286727] = 12, + [315452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13552), 1, + ACTIONS(14759), 1, anon_sym_DOLLAR, - ACTIONS(13554), 1, + ACTIONS(14761), 1, anon_sym_DQUOTE, - STATE(5619), 1, + STATE(6161), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286767] = 12, + [315492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13556), 1, + ACTIONS(14763), 1, anon_sym_DOLLAR, - ACTIONS(13558), 1, + ACTIONS(14765), 1, anon_sym_DQUOTE, - STATE(5649), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286807] = 12, + [315532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13560), 1, + ACTIONS(14767), 1, anon_sym_DOLLAR, - ACTIONS(13562), 1, + ACTIONS(14769), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6163), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286847] = 12, + [315572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13564), 1, + ACTIONS(14771), 1, anon_sym_DOLLAR, - ACTIONS(13566), 1, + ACTIONS(14773), 1, anon_sym_DQUOTE, - STATE(5651), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286887] = 12, + [315612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13568), 1, + ACTIONS(14775), 1, anon_sym_DOLLAR, - ACTIONS(13570), 1, + ACTIONS(14777), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6165), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286927] = 12, + [315652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13572), 1, + ACTIONS(14779), 1, anon_sym_DOLLAR, - ACTIONS(13574), 1, + ACTIONS(14781), 1, anon_sym_DQUOTE, - STATE(5655), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [286967] = 12, + [315692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13576), 1, + ACTIONS(14783), 1, anon_sym_DOLLAR, - ACTIONS(13578), 1, + ACTIONS(14785), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6167), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287007] = 12, + [315732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13580), 1, + ACTIONS(14787), 1, anon_sym_DOLLAR, - ACTIONS(13582), 1, + ACTIONS(14789), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287047] = 12, + [315772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13584), 1, + ACTIONS(14791), 1, anon_sym_DOLLAR, - ACTIONS(13586), 1, + ACTIONS(14793), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6169), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287087] = 12, + [315812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13588), 1, + ACTIONS(14795), 1, anon_sym_DOLLAR, - ACTIONS(13590), 1, + ACTIONS(14797), 1, anon_sym_DQUOTE, - STATE(5657), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287127] = 12, + [315852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13592), 1, + ACTIONS(14799), 1, anon_sym_DOLLAR, - ACTIONS(13594), 1, + ACTIONS(14801), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6171), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287167] = 12, + [315892] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13596), 1, + ACTIONS(14803), 1, anon_sym_DOLLAR, - ACTIONS(13598), 1, + ACTIONS(14805), 1, anon_sym_DQUOTE, - STATE(5671), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287207] = 12, + [315932] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13600), 1, + ACTIONS(14807), 1, anon_sym_DOLLAR, - ACTIONS(13602), 1, + ACTIONS(14809), 1, anon_sym_DQUOTE, - STATE(5661), 1, + STATE(6188), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287247] = 12, + [315972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13604), 1, + ACTIONS(14811), 1, anon_sym_DOLLAR, - ACTIONS(13606), 1, + ACTIONS(14813), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6174), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287287] = 12, + [316012] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13608), 1, + ACTIONS(14815), 1, anon_sym_DOLLAR, - ACTIONS(13610), 1, + ACTIONS(14817), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287327] = 12, + [316052] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13612), 1, + ACTIONS(14819), 1, anon_sym_DOLLAR, - ACTIONS(13614), 1, + ACTIONS(14821), 1, anon_sym_DQUOTE, - STATE(5668), 1, + STATE(6176), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287367] = 12, + [316092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13616), 1, + ACTIONS(14823), 1, anon_sym_DOLLAR, - ACTIONS(13618), 1, + ACTIONS(14825), 1, anon_sym_DQUOTE, - STATE(5664), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287407] = 12, + [316132] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13620), 1, + ACTIONS(14827), 1, anon_sym_DOLLAR, - ACTIONS(13622), 1, + ACTIONS(14829), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6178), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287447] = 12, + [316172] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13624), 1, + ACTIONS(14831), 1, anon_sym_DOLLAR, - ACTIONS(13626), 1, + ACTIONS(14833), 1, anon_sym_DQUOTE, - STATE(5666), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287487] = 12, + [316212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13628), 1, + ACTIONS(14835), 1, anon_sym_DOLLAR, - ACTIONS(13630), 1, + ACTIONS(14837), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6180), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287527] = 12, + [316252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13632), 1, + ACTIONS(14839), 1, anon_sym_DOLLAR, - ACTIONS(13634), 1, + ACTIONS(14841), 1, anon_sym_DQUOTE, - STATE(5669), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287567] = 12, + [316292] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13636), 1, + ACTIONS(14843), 1, anon_sym_DOLLAR, - ACTIONS(13638), 1, + ACTIONS(14845), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6182), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287607] = 12, + [316332] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13640), 1, + ACTIONS(14847), 1, anon_sym_DOLLAR, - ACTIONS(13642), 1, + ACTIONS(14849), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287647] = 12, + [316372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13644), 1, + ACTIONS(14851), 1, anon_sym_DOLLAR, - ACTIONS(13646), 1, + ACTIONS(14853), 1, anon_sym_DQUOTE, - STATE(5672), 1, + STATE(6184), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287687] = 12, + [316412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13648), 1, + ACTIONS(14855), 1, anon_sym_DOLLAR, - ACTIONS(13650), 1, + ACTIONS(14857), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287727] = 12, + [316452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13652), 1, + ACTIONS(14859), 1, anon_sym_DOLLAR, - ACTIONS(13654), 1, + ACTIONS(14861), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6186), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287767] = 12, + [316492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13656), 1, + ACTIONS(14863), 1, anon_sym_DOLLAR, - ACTIONS(13658), 1, + ACTIONS(14865), 1, anon_sym_DQUOTE, - STATE(5674), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287807] = 12, + [316532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13660), 1, + ACTIONS(14867), 1, anon_sym_DOLLAR, - ACTIONS(13662), 1, + ACTIONS(14869), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6189), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287847] = 12, + [316572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13664), 1, + ACTIONS(14871), 1, anon_sym_DOLLAR, - ACTIONS(13666), 1, + ACTIONS(14873), 1, anon_sym_DQUOTE, - STATE(5686), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287887] = 12, + [316612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13668), 1, + ACTIONS(14875), 1, anon_sym_DOLLAR, - ACTIONS(13670), 1, + ACTIONS(14877), 1, anon_sym_DQUOTE, - STATE(5677), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287927] = 12, + [316652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13672), 1, + ACTIONS(14879), 1, anon_sym_DOLLAR, - ACTIONS(13674), 1, + ACTIONS(14881), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [287967] = 12, + [316692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13676), 1, + ACTIONS(14883), 1, anon_sym_DOLLAR, - ACTIONS(13678), 1, + ACTIONS(14885), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6194), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288007] = 12, + [316732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13680), 1, + ACTIONS(14887), 1, anon_sym_DOLLAR, - ACTIONS(13682), 1, + ACTIONS(14889), 1, anon_sym_DQUOTE, - STATE(5680), 1, + STATE(6193), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288047] = 12, + [316772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13684), 1, + ACTIONS(14891), 1, anon_sym_DOLLAR, - ACTIONS(13686), 1, + ACTIONS(14893), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288087] = 12, + [316812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13688), 1, + ACTIONS(14895), 1, anon_sym_DOLLAR, - ACTIONS(13690), 1, + ACTIONS(14897), 1, anon_sym_DQUOTE, - STATE(5682), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288127] = 12, + [316852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13692), 1, + ACTIONS(14899), 1, anon_sym_DOLLAR, - ACTIONS(13694), 1, + ACTIONS(14901), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6196), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288167] = 12, + [316892] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13696), 1, + ACTIONS(14903), 1, anon_sym_DOLLAR, - ACTIONS(13698), 1, + ACTIONS(14905), 1, anon_sym_DQUOTE, - STATE(5684), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288207] = 12, + [316932] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13700), 1, + ACTIONS(14907), 1, anon_sym_DOLLAR, - ACTIONS(13702), 1, + ACTIONS(14909), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6199), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288247] = 12, + [316972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13704), 1, + ACTIONS(14911), 1, anon_sym_DOLLAR, - ACTIONS(13706), 1, + ACTIONS(14913), 1, anon_sym_DQUOTE, - STATE(5687), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288287] = 12, + [317012] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13708), 1, + ACTIONS(14915), 1, anon_sym_DOLLAR, - ACTIONS(13710), 1, + ACTIONS(14917), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288327] = 12, + [317052] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13712), 1, + ACTIONS(14919), 1, anon_sym_DOLLAR, - ACTIONS(13714), 1, + ACTIONS(14921), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6202), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288367] = 12, + [317092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13716), 1, + ACTIONS(14923), 1, anon_sym_DOLLAR, - ACTIONS(13718), 1, + ACTIONS(14925), 1, anon_sym_DQUOTE, - STATE(5690), 1, + STATE(6204), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288407] = 12, + [317132] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13720), 1, + ACTIONS(14927), 1, anon_sym_DOLLAR, - ACTIONS(13722), 1, + ACTIONS(14929), 1, anon_sym_DQUOTE, - STATE(5759), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288447] = 12, + [317172] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13724), 1, + ACTIONS(14931), 1, anon_sym_DOLLAR, - ACTIONS(13726), 1, + ACTIONS(14933), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6217), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288487] = 12, + [317212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13728), 1, + ACTIONS(14935), 1, anon_sym_DOLLAR, - ACTIONS(13730), 1, + ACTIONS(14937), 1, anon_sym_DQUOTE, - STATE(5705), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288527] = 12, + [317252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13732), 1, + ACTIONS(14939), 1, anon_sym_DOLLAR, - ACTIONS(13734), 1, + ACTIONS(14941), 1, anon_sym_DQUOTE, - STATE(5694), 1, + STATE(6206), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288567] = 12, + [317292] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13736), 1, + ACTIONS(14943), 1, anon_sym_DOLLAR, - ACTIONS(13738), 1, + ACTIONS(14945), 1, anon_sym_DQUOTE, - STATE(5697), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288607] = 12, + [317332] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13740), 1, + ACTIONS(14947), 1, anon_sym_DOLLAR, - ACTIONS(13742), 1, + ACTIONS(14949), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6210), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288647] = 12, + [317372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13744), 1, + ACTIONS(14951), 1, anon_sym_DOLLAR, - ACTIONS(13746), 1, + ACTIONS(14953), 1, anon_sym_DQUOTE, - STATE(5696), 1, + STATE(6211), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288687] = 12, + [317412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13748), 1, + ACTIONS(14955), 1, anon_sym_DOLLAR, - ACTIONS(13750), 1, + ACTIONS(14957), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288727] = 12, + [317452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13752), 1, + ACTIONS(14959), 1, anon_sym_DOLLAR, - ACTIONS(13754), 1, + ACTIONS(14961), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288767] = 12, + [317492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13756), 1, + ACTIONS(14963), 1, anon_sym_DOLLAR, - ACTIONS(13758), 1, + ACTIONS(14965), 1, anon_sym_DQUOTE, - STATE(5699), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288807] = 12, + [317532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13760), 1, + ACTIONS(14967), 1, anon_sym_DOLLAR, - ACTIONS(13762), 1, + ACTIONS(14969), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6213), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288847] = 12, + [317572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13764), 1, + ACTIONS(14971), 1, anon_sym_DOLLAR, - ACTIONS(13766), 1, + ACTIONS(14973), 1, anon_sym_DQUOTE, - STATE(5702), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288887] = 12, + [317612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13768), 1, + ACTIONS(14975), 1, anon_sym_DOLLAR, - ACTIONS(13770), 1, + ACTIONS(14977), 1, anon_sym_DQUOTE, - STATE(5725), 1, + STATE(6218), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288927] = 12, + [317652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13772), 1, + ACTIONS(14979), 1, anon_sym_DOLLAR, - ACTIONS(13774), 1, + ACTIONS(14981), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [288967] = 12, + [317692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13776), 1, + ACTIONS(14983), 1, anon_sym_DOLLAR, - ACTIONS(13778), 1, + ACTIONS(14985), 1, anon_sym_DQUOTE, - STATE(5620), 1, + STATE(6295), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289007] = 12, + [317732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13780), 1, + ACTIONS(14987), 1, anon_sym_DOLLAR, - ACTIONS(13782), 1, + ACTIONS(14989), 1, anon_sym_DQUOTE, - STATE(5706), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289047] = 12, + [317772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13784), 1, + ACTIONS(14991), 1, anon_sym_DOLLAR, - ACTIONS(13786), 1, + ACTIONS(14993), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289087] = 12, + [317812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13788), 1, + ACTIONS(14995), 1, anon_sym_DOLLAR, - ACTIONS(13790), 1, + ACTIONS(14997), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289127] = 12, + [317852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13792), 1, + ACTIONS(14999), 1, anon_sym_DOLLAR, - ACTIONS(13794), 1, + ACTIONS(15001), 1, anon_sym_DQUOTE, - STATE(5708), 1, + STATE(6223), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289167] = 12, + [317892] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13796), 1, + ACTIONS(15003), 1, anon_sym_DOLLAR, - ACTIONS(13798), 1, + ACTIONS(15005), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6222), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289207] = 12, + [317932] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13800), 1, + ACTIONS(15007), 1, anon_sym_DOLLAR, - ACTIONS(13802), 1, + ACTIONS(15009), 1, anon_sym_DQUOTE, - STATE(5710), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289247] = 12, + [317972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13804), 1, + ACTIONS(15011), 1, + anon_sym_DOLLAR, + ACTIONS(15013), 1, + anon_sym_DQUOTE, + STATE(6276), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318012] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15015), 1, + anon_sym_DOLLAR, + ACTIONS(15017), 1, + anon_sym_DQUOTE, + STATE(6226), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318052] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15019), 1, + anon_sym_DOLLAR, + ACTIONS(15021), 1, + anon_sym_DQUOTE, + STATE(6227), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318092] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15023), 1, + anon_sym_DOLLAR, + ACTIONS(15025), 1, + anon_sym_DQUOTE, + STATE(6276), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318132] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15027), 1, + anon_sym_DOLLAR, + ACTIONS(15029), 1, + anon_sym_DQUOTE, + STATE(6276), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318172] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15031), 1, + anon_sym_DOLLAR, + ACTIONS(15033), 1, + anon_sym_DQUOTE, + STATE(6229), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318212] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15035), 1, + anon_sym_DOLLAR, + ACTIONS(15037), 1, + anon_sym_DQUOTE, + STATE(6276), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318252] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15039), 1, + anon_sym_DOLLAR, + ACTIONS(15041), 1, + anon_sym_DQUOTE, + STATE(6231), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318292] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15043), 1, + anon_sym_DOLLAR, + ACTIONS(15045), 1, + anon_sym_DQUOTE, + STATE(6276), 1, + aux_sym_string_repeat1, + STATE(6601), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [318332] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(14615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(14621), 1, + sym_string_content, + ACTIONS(14623), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14625), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14627), 1, + anon_sym_BQUOTE, + ACTIONS(14629), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15047), 1, anon_sym_DOLLAR, - ACTIONS(13806), 1, + ACTIONS(15049), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6238), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289287] = 12, + [318372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13808), 1, + ACTIONS(15051), 1, anon_sym_DOLLAR, - ACTIONS(13810), 1, + ACTIONS(15053), 1, anon_sym_DQUOTE, - STATE(5716), 1, + STATE(6234), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289327] = 12, + [318412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13812), 1, + ACTIONS(15055), 1, anon_sym_DOLLAR, - ACTIONS(13814), 1, + ACTIONS(15057), 1, anon_sym_DQUOTE, - STATE(5713), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289367] = 12, + [318452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13816), 1, + ACTIONS(15059), 1, anon_sym_DOLLAR, - ACTIONS(13818), 1, + ACTIONS(15061), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6237), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289407] = 12, + [318492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13820), 1, + ACTIONS(15063), 1, anon_sym_DOLLAR, - ACTIONS(13822), 1, + ACTIONS(15065), 1, anon_sym_DQUOTE, - STATE(5715), 1, + STATE(6259), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289447] = 12, + [318532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13824), 1, + ACTIONS(15067), 1, anon_sym_DOLLAR, - ACTIONS(13826), 1, + ACTIONS(15069), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289487] = 12, + [318572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13828), 1, + ACTIONS(15071), 1, anon_sym_DOLLAR, - ACTIONS(13830), 1, + ACTIONS(15073), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289527] = 12, + [318612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13832), 1, + ACTIONS(15075), 1, anon_sym_DOLLAR, - ACTIONS(13834), 1, + ACTIONS(15077), 1, anon_sym_DQUOTE, - STATE(5719), 1, + STATE(6141), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289567] = 12, + [318652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13836), 1, + ACTIONS(15079), 1, anon_sym_DOLLAR, - ACTIONS(13838), 1, + ACTIONS(15081), 1, anon_sym_DQUOTE, - STATE(5721), 1, + STATE(6244), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289607] = 12, + [318692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13840), 1, + ACTIONS(15083), 1, anon_sym_DOLLAR, - ACTIONS(13842), 1, + ACTIONS(15085), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6209), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289647] = 12, + [318732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13844), 1, + ACTIONS(15087), 1, anon_sym_DOLLAR, - ACTIONS(13846), 1, + ACTIONS(15089), 1, anon_sym_DQUOTE, - STATE(5723), 1, + STATE(6243), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289687] = 12, + [318772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13848), 1, + ACTIONS(15091), 1, anon_sym_DOLLAR, - ACTIONS(13850), 1, + ACTIONS(15093), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289727] = 12, + [318812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13852), 1, + ACTIONS(15095), 1, anon_sym_DOLLAR, - ACTIONS(13854), 1, + ACTIONS(15097), 1, anon_sym_DQUOTE, - STATE(5727), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289767] = 12, + [318852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13856), 1, + ACTIONS(15099), 1, anon_sym_DOLLAR, - ACTIONS(13858), 1, + ACTIONS(15101), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6248), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289807] = 12, + [318892] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13860), 1, + ACTIONS(15103), 1, anon_sym_DOLLAR, - ACTIONS(13862), 1, + ACTIONS(15105), 1, anon_sym_DQUOTE, - STATE(5726), 1, + STATE(6247), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289847] = 12, + [318932] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13864), 1, + ACTIONS(15107), 1, anon_sym_DOLLAR, - ACTIONS(13866), 1, + ACTIONS(15109), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289887] = 12, + [318972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13868), 1, + ACTIONS(15111), 1, anon_sym_DOLLAR, - ACTIONS(13870), 1, + ACTIONS(15113), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289927] = 12, + [319012] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13872), 1, + ACTIONS(15115), 1, anon_sym_DOLLAR, - ACTIONS(13874), 1, + ACTIONS(15117), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6252), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [289967] = 12, + [319052] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13876), 1, + ACTIONS(15119), 1, anon_sym_DOLLAR, - ACTIONS(13878), 1, + ACTIONS(15121), 1, anon_sym_DQUOTE, - STATE(5729), 1, + STATE(6251), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290007] = 12, + [319092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13880), 1, + ACTIONS(15123), 1, anon_sym_DOLLAR, - ACTIONS(13882), 1, + ACTIONS(15125), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290047] = 12, + [319132] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13884), 1, + ACTIONS(15127), 1, anon_sym_DOLLAR, - ACTIONS(13886), 1, + ACTIONS(15129), 1, anon_sym_DQUOTE, - STATE(5731), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290087] = 12, + [319172] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13888), 1, + ACTIONS(15131), 1, anon_sym_DOLLAR, - ACTIONS(13890), 1, + ACTIONS(15133), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6255), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290127] = 12, + [319212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13892), 1, + ACTIONS(15135), 1, anon_sym_DOLLAR, - ACTIONS(13894), 1, + ACTIONS(15137), 1, anon_sym_DQUOTE, - STATE(5733), 1, + STATE(6256), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290167] = 12, + [319252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13896), 1, + ACTIONS(15139), 1, anon_sym_DOLLAR, - ACTIONS(13898), 1, + ACTIONS(15141), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290207] = 12, + [319292] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13900), 1, + ACTIONS(15143), 1, anon_sym_DOLLAR, - ACTIONS(13902), 1, + ACTIONS(15145), 1, anon_sym_DQUOTE, - STATE(5735), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290247] = 12, + [319332] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13904), 1, + ACTIONS(15147), 1, anon_sym_DOLLAR, - ACTIONS(13906), 1, + ACTIONS(15149), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6258), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290287] = 12, + [319372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13908), 1, + ACTIONS(15151), 1, anon_sym_DOLLAR, - ACTIONS(13910), 1, + ACTIONS(15153), 1, anon_sym_DQUOTE, - STATE(5738), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290327] = 12, + [319412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13912), 1, + ACTIONS(15155), 1, anon_sym_DOLLAR, - ACTIONS(13914), 1, + ACTIONS(15157), 1, anon_sym_DQUOTE, - STATE(5740), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290367] = 12, + [319452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13916), 1, + ACTIONS(15159), 1, anon_sym_DOLLAR, - ACTIONS(13918), 1, + ACTIONS(15161), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6261), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290407] = 12, + [319492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13920), 1, + ACTIONS(15163), 1, anon_sym_DOLLAR, - ACTIONS(13922), 1, + ACTIONS(15165), 1, anon_sym_DQUOTE, - STATE(5752), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290447] = 12, + [319532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13924), 1, + ACTIONS(15167), 1, anon_sym_DOLLAR, - ACTIONS(13926), 1, + ACTIONS(15169), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6263), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290487] = 12, + [319572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13928), 1, + ACTIONS(15171), 1, anon_sym_DOLLAR, - ACTIONS(13930), 1, + ACTIONS(15173), 1, anon_sym_DQUOTE, - STATE(5742), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290527] = 12, + [319612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13932), 1, + ACTIONS(15175), 1, anon_sym_DOLLAR, - ACTIONS(13934), 1, + ACTIONS(15177), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6269), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290567] = 12, + [319652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13936), 1, + ACTIONS(15179), 1, anon_sym_DOLLAR, - ACTIONS(13938), 1, + ACTIONS(15181), 1, anon_sym_DQUOTE, - STATE(5746), 1, + STATE(6266), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290607] = 12, + [319692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13940), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13943), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13946), 1, - anon_sym_DOLLAR, - ACTIONS(13949), 1, - anon_sym_DQUOTE, - ACTIONS(13951), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13954), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13957), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13960), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13963), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5744), 1, + ACTIONS(15183), 1, + anon_sym_DOLLAR, + ACTIONS(15185), 1, + anon_sym_DQUOTE, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290647] = 12, + [319732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13966), 1, + ACTIONS(15187), 1, anon_sym_DOLLAR, - ACTIONS(13968), 1, + ACTIONS(15189), 1, anon_sym_DQUOTE, - STATE(5748), 1, + STATE(6268), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290687] = 12, + [319772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13970), 1, + ACTIONS(15191), 1, anon_sym_DOLLAR, - ACTIONS(13972), 1, + ACTIONS(15193), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290727] = 12, + [319812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13974), 1, + ACTIONS(15195), 1, anon_sym_DOLLAR, - ACTIONS(13976), 1, + ACTIONS(15197), 1, anon_sym_DQUOTE, - STATE(5750), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290767] = 12, + [319852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13978), 1, + ACTIONS(15199), 1, anon_sym_DOLLAR, - ACTIONS(13980), 1, + ACTIONS(15201), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6271), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290807] = 12, + [319892] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13982), 1, + ACTIONS(15203), 1, anon_sym_DOLLAR, - ACTIONS(13984), 1, + ACTIONS(15205), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290847] = 12, + [319932] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13986), 1, + ACTIONS(15207), 1, anon_sym_DOLLAR, - ACTIONS(13988), 1, + ACTIONS(15209), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6275), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290887] = 12, + [319972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13990), 1, + ACTIONS(15211), 1, anon_sym_DOLLAR, - ACTIONS(13992), 1, + ACTIONS(15213), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(6274), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290927] = 12, + [320012] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13994), 1, + ACTIONS(15215), 1, anon_sym_DOLLAR, - ACTIONS(13996), 1, + ACTIONS(15217), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [290967] = 12, + [320052] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13998), 1, + ACTIONS(15219), 1, anon_sym_DOLLAR, - ACTIONS(14000), 1, + ACTIONS(15221), 1, anon_sym_DQUOTE, - STATE(5756), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291007] = 12, + [320092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(15223), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(15226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(15229), 1, + anon_sym_DOLLAR, + ACTIONS(15232), 1, + anon_sym_DQUOTE, + ACTIONS(15234), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(15237), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(15240), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(15243), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(15246), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14002), 1, - anon_sym_DOLLAR, - ACTIONS(14004), 1, - anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291047] = 12, + [320132] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14006), 1, + ACTIONS(15249), 1, anon_sym_DOLLAR, - ACTIONS(14008), 1, + ACTIONS(15251), 1, anon_sym_DQUOTE, - STATE(5757), 1, + STATE(6279), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291087] = 12, + [320172] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14010), 1, + ACTIONS(15253), 1, anon_sym_DOLLAR, - ACTIONS(14012), 1, + ACTIONS(15255), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6281), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291127] = 12, + [320212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14014), 1, + ACTIONS(15257), 1, anon_sym_DOLLAR, - ACTIONS(14016), 1, + ACTIONS(15259), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291167] = 12, + [320252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14018), 1, + ACTIONS(15261), 1, anon_sym_DOLLAR, - ACTIONS(14020), 1, + ACTIONS(15263), 1, anon_sym_DQUOTE, - STATE(5761), 1, + STATE(6215), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291207] = 12, + [320292] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14022), 1, + ACTIONS(15265), 1, anon_sym_DOLLAR, - ACTIONS(14024), 1, + ACTIONS(15267), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291247] = 12, + [320332] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14026), 1, + ACTIONS(15269), 1, anon_sym_DOLLAR, - ACTIONS(14028), 1, + ACTIONS(15271), 1, anon_sym_DQUOTE, - STATE(5764), 1, + STATE(6283), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291287] = 12, + [320372] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14030), 1, + ACTIONS(15273), 1, anon_sym_DOLLAR, - ACTIONS(14032), 1, + ACTIONS(15275), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291327] = 12, + [320412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14034), 1, + ACTIONS(15277), 1, anon_sym_DOLLAR, - ACTIONS(14036), 1, + ACTIONS(15279), 1, anon_sym_DQUOTE, - STATE(5771), 1, + STATE(6286), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291367] = 12, + [320452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14038), 1, + ACTIONS(15281), 1, anon_sym_DOLLAR, - ACTIONS(14040), 1, + ACTIONS(15283), 1, anon_sym_DQUOTE, - STATE(5765), 1, + STATE(6190), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291407] = 12, + [320492] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14042), 1, + ACTIONS(15285), 1, anon_sym_DOLLAR, - ACTIONS(14044), 1, + ACTIONS(15287), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291447] = 12, + [320532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14046), 1, + ACTIONS(15289), 1, anon_sym_DOLLAR, - ACTIONS(14048), 1, + ACTIONS(15291), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6291), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291487] = 12, + [320572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14050), 1, + ACTIONS(15293), 1, anon_sym_DOLLAR, - ACTIONS(14052), 1, + ACTIONS(15295), 1, anon_sym_DQUOTE, - STATE(5767), 1, + STATE(6289), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291527] = 12, + [320612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14054), 1, + ACTIONS(15297), 1, anon_sym_DOLLAR, - ACTIONS(14056), 1, + ACTIONS(15299), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291567] = 12, + [320652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14058), 1, + ACTIONS(15301), 1, anon_sym_DOLLAR, - ACTIONS(14060), 1, + ACTIONS(15303), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6293), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291607] = 12, + [320692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14062), 1, + ACTIONS(15305), 1, anon_sym_DOLLAR, - ACTIONS(14064), 1, + ACTIONS(15307), 1, anon_sym_DQUOTE, - STATE(5770), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291647] = 12, + [320732] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14066), 1, + ACTIONS(15309), 1, anon_sym_DOLLAR, - ACTIONS(14068), 1, + ACTIONS(15311), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6143), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291687] = 12, + [320772] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14070), 1, + ACTIONS(15313), 1, anon_sym_DOLLAR, - ACTIONS(14072), 1, + ACTIONS(15315), 1, anon_sym_DQUOTE, - STATE(5744), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291727] = 12, + [320812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14074), 1, + ACTIONS(15317), 1, anon_sym_DOLLAR, - ACTIONS(14076), 1, + ACTIONS(15319), 1, anon_sym_DQUOTE, - STATE(5660), 1, + STATE(6219), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291767] = 12, + [320852] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13426), 1, + ACTIONS(14613), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(13428), 1, + ACTIONS(14615), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13434), 1, + ACTIONS(14621), 1, sym_string_content, - ACTIONS(13436), 1, + ACTIONS(14623), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13438), 1, + ACTIONS(14625), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13440), 1, + ACTIONS(14627), 1, anon_sym_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(14629), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14078), 1, + ACTIONS(15321), 1, anon_sym_DOLLAR, - ACTIONS(14080), 1, + ACTIONS(15323), 1, anon_sym_DQUOTE, - STATE(5678), 1, + STATE(6276), 1, aux_sym_string_repeat1, - STATE(6063), 4, + STATE(6601), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [291807] = 6, + [320892] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15025), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [320919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15333), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [320946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 1, + anon_sym_DQUOTE, + ACTIONS(4602), 1, + sym_variable_name, + STATE(2292), 1, + sym_string, + ACTIONS(4600), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4598), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [320973] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14741), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321000] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15337), 1, + anon_sym_LT_LT, + ACTIONS(15343), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15345), 1, + anon_sym_LT_LT_LT, + ACTIONS(15341), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15339), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15335), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [321029] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15349), 1, + anon_sym_LT_LT, + ACTIONS(15355), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15357), 1, + anon_sym_LT_LT_LT, + ACTIONS(15353), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15351), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15347), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [321058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13502), 1, + ACTIONS(14913), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3182), 1, + anon_sym_DQUOTE, + ACTIONS(7731), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4766), 1, + sym_string, + ACTIONS(7729), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7727), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317463,19 +347114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291834] = 6, + [321112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13494), 1, + ACTIONS(14917), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317484,19 +347135,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291861] = 6, + [321139] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15361), 1, + anon_sym_LT_LT, + ACTIONS(15367), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15369), 1, + anon_sym_LT_LT_LT, + ACTIONS(15365), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15363), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15359), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [321168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14090), 1, + ACTIONS(15371), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317505,19 +347178,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291888] = 6, + [321195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15373), 1, anon_sym_DQUOTE, - ACTIONS(9626), 1, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321222] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3785), 1, + anon_sym_DQUOTE, + ACTIONS(4182), 1, sym_variable_name, - STATE(5125), 1, + STATE(1983), 1, + sym_string, + ACTIONS(4180), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4178), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15375), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321276] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3555), 1, + anon_sym_DQUOTE, + ACTIONS(8036), 1, + sym_variable_name, + STATE(4895), 1, sym_string, - ACTIONS(9624), 2, + ACTIONS(8034), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9620), 8, + ACTIONS(8032), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317526,41 +347262,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291915] = 7, + [321303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14957), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321330] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_DQUOTE, + ACTIONS(4718), 1, + sym_variable_name, + STATE(2034), 1, + sym_string, + ACTIONS(4716), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4714), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321357] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15377), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321384] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14929), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14749), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321438] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15379), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321465] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2119), 1, + anon_sym_DQUOTE, + ACTIONS(2123), 1, + sym_variable_name, + STATE(1129), 1, + sym_string, + ACTIONS(2121), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2117), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321492] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15381), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5732), 1, + anon_sym_DQUOTE, + ACTIONS(5736), 1, + sym_variable_name, + STATE(2901), 1, + sym_string, + ACTIONS(5734), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5730), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321546] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14937), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321573] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4495), 1, + sym_variable_name, + STATE(2253), 1, + sym_string, + ACTIONS(4493), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4491), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15383), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321627] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14945), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321654] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(15349), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(15355), 1, anon_sym_LT_LT_DASH, - ACTIONS(14102), 1, + ACTIONS(15391), 1, anon_sym_LT_LT_LT, - ACTIONS(14098), 2, + ACTIONS(15389), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, + ACTIONS(15387), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14092), 5, + ACTIONS(15385), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [291944] = 6, + [321683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13622), 1, + ACTIONS(8329), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(8333), 1, + sym_variable_name, + STATE(4937), 1, + sym_string, + ACTIONS(8331), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8327), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321710] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15393), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317569,19 +347599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291971] = 6, + [321737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14104), 1, + ACTIONS(15395), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317590,19 +347620,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [291998] = 6, + [321764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(5740), 1, anon_sym_DQUOTE, - ACTIONS(8294), 1, + ACTIONS(5744), 1, sym_variable_name, - STATE(4874), 1, + STATE(3074), 1, sym_string, - ACTIONS(8292), 2, + ACTIONS(5742), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5738), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321791] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1508), 1, + anon_sym_DQUOTE, + ACTIONS(2651), 1, + sym_variable_name, + STATE(1320), 1, + sym_string, + ACTIONS(2649), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2647), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321818] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_DQUOTE, + ACTIONS(3341), 1, + sym_variable_name, + STATE(1476), 1, + sym_string, + ACTIONS(3339), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(3335), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321845] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14757), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321872] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14653), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [321899] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14961), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8290), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317611,19 +347746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292025] = 6, + [321926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14106), 1, + ACTIONS(15397), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317632,19 +347767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292052] = 6, + [321953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13630), 1, + ACTIONS(14965), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317653,19 +347788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292079] = 6, + [321980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13454), 1, + ACTIONS(2526), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2988), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1570), 1, + sym_string, + ACTIONS(2986), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2984), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317674,41 +347809,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, + [322007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14116), 1, + ACTIONS(15399), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317717,19 +347830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292162] = 6, + [322034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13638), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15401), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317738,19 +347851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292189] = 6, + [322061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, - anon_sym_DQUOTE, - ACTIONS(3980), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1912), 1, - sym_string, - ACTIONS(3978), 2, + ACTIONS(15403), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3976), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317759,19 +347872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292216] = 6, + [322088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13642), 1, + ACTIONS(5284), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(5288), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2777), 1, + sym_string, + ACTIONS(5286), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5282), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317780,19 +347893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292243] = 6, + [322115] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13606), 1, + ACTIONS(14765), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317801,19 +347914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292270] = 6, + [322142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13650), 1, + ACTIONS(10022), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(10026), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5754), 1, + sym_string, + ACTIONS(10024), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(10020), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317822,19 +347935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292297] = 6, + [322169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14973), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14118), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317843,19 +347956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292324] = 6, + [322196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(14693), 1, anon_sym_DQUOTE, - ACTIONS(3817), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1777), 1, - sym_string, - ACTIONS(3815), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3813), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317864,19 +347977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292351] = 6, + [322223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14120), 1, + ACTIONS(15405), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317885,19 +347998,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292378] = 6, + [322250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14981), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14122), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317906,19 +348019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292405] = 6, + [322277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14124), 1, + ACTIONS(15407), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317927,41 +348040,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, + [322304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13654), 1, + ACTIONS(14689), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317970,19 +348061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292488] = 6, + [322331] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3598), 1, + ACTIONS(4021), 1, anon_sym_DQUOTE, - ACTIONS(4054), 1, + ACTIONS(4025), 1, sym_variable_name, - STATE(1986), 1, + STATE(1788), 1, sym_string, - ACTIONS(4052), 2, + ACTIONS(4023), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4050), 8, + ACTIONS(4019), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -317991,19 +348082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292515] = 6, + [322358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14773), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14134), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318012,19 +348103,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292542] = 6, + [322385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(14989), 1, anon_sym_DQUOTE, - ACTIONS(13408), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(6445), 1, - sym_string, - ACTIONS(13406), 2, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [322412] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15409), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13404), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318033,19 +348145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292569] = 6, + [322439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13662), 1, + ACTIONS(14993), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318054,19 +348166,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292596] = 6, + [322466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14136), 1, + ACTIONS(15411), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318075,19 +348187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292623] = 6, + [322493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 1, + ACTIONS(15323), 1, anon_sym_DQUOTE, - ACTIONS(4625), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(2404), 1, - sym_string, - ACTIONS(4623), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4619), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318096,19 +348208,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292650] = 6, + [322520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14138), 1, + ACTIONS(15413), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318117,19 +348229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292677] = 6, + [322547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13514), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15415), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318138,19 +348250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292704] = 6, + [322574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, - anon_sym_DQUOTE, - ACTIONS(5198), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(2456), 1, - sym_string, - ACTIONS(5196), 2, + ACTIONS(15417), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5192), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318159,19 +348271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292731] = 6, + [322601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13446), 1, + ACTIONS(5174), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(5178), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2893), 1, + sym_string, + ACTIONS(5176), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5172), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318180,19 +348292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292758] = 6, + [322628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13674), 1, + ACTIONS(2352), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4678), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1848), 1, + sym_string, + ACTIONS(4676), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4674), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318201,19 +348313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292785] = 6, + [322655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14781), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14140), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318222,19 +348334,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292812] = 6, + [322682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14142), 1, + ACTIONS(15419), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318243,19 +348355,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292839] = 6, + [322709] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15349), 1, + anon_sym_LT_LT, + ACTIONS(15355), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15427), 1, + anon_sym_LT_LT_LT, + ACTIONS(15425), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15423), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15421), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [322738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(15009), 1, anon_sym_DQUOTE, - ACTIONS(4951), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(2777), 1, - sym_string, - ACTIONS(4949), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4945), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318264,19 +348398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292866] = 6, + [322765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13686), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15429), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318285,19 +348419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292893] = 6, + [322792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15013), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14144), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318306,19 +348440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292920] = 6, + [322819] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9610), 1, + ACTIONS(1855), 1, anon_sym_DQUOTE, - ACTIONS(9614), 1, + ACTIONS(4045), 1, sym_variable_name, - STATE(5321), 1, + STATE(1497), 1, sym_string, - ACTIONS(9612), 2, + ACTIONS(4043), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9608), 8, + ACTIONS(4041), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318327,19 +348461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292947] = 6, + [322846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13522), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15431), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318348,19 +348482,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [292974] = 6, + [322873] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13694), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15433), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318369,19 +348503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293001] = 6, + [322900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14146), 1, + ACTIONS(15435), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318390,19 +348524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293028] = 6, + [322927] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14148), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(4489), 1, + sym_variable_name, + STATE(2093), 1, + sym_string, + ACTIONS(4487), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4485), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318411,19 +348545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293055] = 6, + [322954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, + ACTIONS(14789), 1, anon_sym_DQUOTE, - ACTIONS(4763), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(2498), 1, - sym_string, - ACTIONS(4761), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4757), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318432,19 +348566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293082] = 6, + [322981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13530), 1, + ACTIONS(9345), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(9349), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5705), 1, + sym_string, + ACTIONS(9347), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(9343), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318453,19 +348587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293109] = 6, + [323008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13702), 1, + ACTIONS(2111), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2115), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(964), 1, + sym_string, + ACTIONS(2113), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2109), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318474,19 +348608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293136] = 6, + [323035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15029), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14150), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318495,19 +348629,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293163] = 6, + [323062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14152), 1, + ACTIONS(15437), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318516,19 +348650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293190] = 6, + [323089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13710), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15439), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318537,19 +348671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293217] = 6, + [323116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8452), 1, + ACTIONS(14701), 1, anon_sym_DQUOTE, - ACTIONS(8456), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(5176), 1, - sym_string, - ACTIONS(8454), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8450), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318558,19 +348692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293244] = 6, + [323143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13714), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15441), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318579,19 +348713,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293271] = 6, + [323170] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15349), 1, + anon_sym_LT_LT, + ACTIONS(15355), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15449), 1, + anon_sym_LT_LT_LT, + ACTIONS(15447), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15445), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15443), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [323199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13534), 1, + ACTIONS(8368), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(8372), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4598), 1, + sym_string, + ACTIONS(8370), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(8366), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318600,19 +348756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293298] = 6, + [323226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14797), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14154), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318621,19 +348777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293325] = 6, + [323253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(2263), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1246), 1, - sym_string, - ACTIONS(2261), 2, + ACTIONS(15451), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2259), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318642,19 +348798,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293352] = 6, + [323280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 1, + ACTIONS(15037), 1, anon_sym_DQUOTE, - ACTIONS(7595), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(4267), 1, - sym_string, - ACTIONS(7593), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7589), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318663,19 +348819,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293379] = 6, + [323307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13470), 1, + ACTIONS(14637), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318684,19 +348840,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293406] = 6, + [323334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14156), 1, + ACTIONS(15453), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318705,19 +348861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293433] = 6, + [323361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13726), 1, + ACTIONS(1649), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2637), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1348), 1, + sym_string, + ACTIONS(2635), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2633), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318726,19 +348882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293460] = 6, + [323388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14158), 1, + ACTIONS(15455), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318747,19 +348903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293487] = 6, + [323415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 1, + ACTIONS(11017), 1, anon_sym_DQUOTE, - ACTIONS(1193), 1, + ACTIONS(11021), 1, sym_variable_name, - STATE(470), 1, + STATE(5755), 1, sym_string, - ACTIONS(1189), 2, + ACTIONS(11019), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1185), 8, + ACTIONS(11015), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318768,19 +348924,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293514] = 6, + [323442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14160), 1, + ACTIONS(15457), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318789,19 +348945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293541] = 6, + [323469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15045), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14162), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318810,19 +348966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293568] = 6, + [323496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9998), 1, - anon_sym_DQUOTE, - ACTIONS(10002), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(5275), 1, - sym_string, - ACTIONS(10000), 2, + ACTIONS(15459), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9996), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318831,19 +348987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293595] = 6, + [323523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14164), 1, + ACTIONS(15461), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318852,19 +349008,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293622] = 6, + [323550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(14805), 1, anon_sym_DQUOTE, - ACTIONS(4145), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [323577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_DQUOTE, + ACTIONS(4039), 1, sym_variable_name, - STATE(1694), 1, + STATE(1678), 1, sym_string, - ACTIONS(4143), 2, + ACTIONS(4037), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4141), 8, + ACTIONS(4033), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318873,19 +349050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293649] = 6, + [323604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(2909), 1, anon_sym_DQUOTE, - ACTIONS(3624), 1, + ACTIONS(4303), 1, sym_variable_name, - STATE(1625), 1, + STATE(1910), 1, sym_string, - ACTIONS(3622), 2, + ACTIONS(4301), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3618), 8, + ACTIONS(4299), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318894,19 +349071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293676] = 6, + [323631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13542), 1, + ACTIONS(15057), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318915,19 +349092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293703] = 6, + [323658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13742), 1, + ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(8645), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5353), 1, + sym_string, + ACTIONS(8643), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(8641), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318936,19 +349113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293730] = 6, + [323685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14166), 1, + ACTIONS(15463), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318957,19 +349134,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293757] = 6, + [323712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14170), 1, + ACTIONS(2386), 1, anon_sym_DQUOTE, - ACTIONS(14174), 1, + ACTIONS(4712), 1, sym_variable_name, - STATE(6671), 1, + STATE(1708), 1, sym_string, - ACTIONS(14172), 2, + ACTIONS(4710), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14168), 8, + ACTIONS(4708), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318978,19 +349155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293784] = 6, + [323739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13750), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15465), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -318999,19 +349176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293811] = 6, + [323766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14176), 1, + ACTIONS(10985), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(10989), 1, + sym_variable_name, + STATE(5639), 1, + sym_string, + ACTIONS(10987), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(10983), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319020,19 +349197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293838] = 6, + [323793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15069), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14178), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319041,19 +349218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293865] = 6, + [323820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, + ACTIONS(14881), 1, anon_sym_DQUOTE, - ACTIONS(5713), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(3346), 1, - sym_string, - ACTIONS(5711), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5709), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319062,19 +349239,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293892] = 6, + [323847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(15073), 1, anon_sym_DQUOTE, - ACTIONS(2103), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1087), 1, - sym_string, - ACTIONS(2101), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2097), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319083,19 +349260,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293919] = 6, + [323874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13754), 1, + ACTIONS(14817), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319104,19 +349281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293946] = 6, + [323901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14180), 1, + ACTIONS(15467), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319125,41 +349302,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [293973] = 7, + [323928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15469), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [323955] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(15349), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(15355), 1, anon_sym_LT_LT_DASH, - ACTIONS(14188), 1, + ACTIONS(15477), 1, anon_sym_LT_LT_LT, - ACTIONS(14186), 2, + ACTIONS(15475), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, + ACTIONS(15473), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14182), 5, + ACTIONS(15471), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [294002] = 6, + [323984] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13762), 1, + ACTIONS(15481), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15485), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(7226), 1, + sym_string, + ACTIONS(15483), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15479), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319168,19 +349366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294029] = 6, + [324011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13550), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15487), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319189,19 +349387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294056] = 6, + [324038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14190), 1, + ACTIONS(3353), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(4590), 1, + sym_variable_name, + STATE(2129), 1, + sym_string, + ACTIONS(4588), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4586), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319210,19 +349408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294083] = 6, + [324065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 1, + ACTIONS(14709), 1, anon_sym_DQUOTE, - ACTIONS(11749), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(5555), 1, - sym_string, - ACTIONS(11747), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11745), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319231,19 +349429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294110] = 6, + [324092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7484), 1, + ACTIONS(14825), 1, anon_sym_DQUOTE, - ACTIONS(7488), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(4380), 1, - sym_string, - ACTIONS(7486), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7482), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319252,19 +349450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294137] = 6, + [324119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13578), 1, + ACTIONS(15097), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319273,19 +349471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294164] = 6, + [324146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13678), 1, + ACTIONS(15093), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319294,19 +349492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294191] = 6, + [324173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13774), 1, + ACTIONS(14645), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319315,19 +349513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294218] = 6, + [324200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14873), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14192), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319336,19 +349534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294245] = 6, + [324227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14194), 1, + ACTIONS(15489), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319357,19 +349555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294272] = 6, + [324254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14196), 1, + ACTIONS(15491), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319378,19 +349576,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294299] = 6, + [324281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(1605), 1, anon_sym_DQUOTE, - ACTIONS(1682), 1, + ACTIONS(2663), 1, sym_variable_name, - STATE(857), 1, + STATE(1376), 1, sym_string, - ACTIONS(1680), 2, + ACTIONS(2661), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1676), 8, + ACTIONS(2659), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319399,19 +349597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294326] = 6, + [324308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_DQUOTE, - ACTIONS(7601), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(4349), 1, - sym_string, - ACTIONS(7599), 2, + ACTIONS(15493), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7597), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319420,19 +349618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294353] = 6, + [324335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13786), 1, + ACTIONS(6270), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(6498), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(3701), 1, + sym_string, + ACTIONS(6496), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(6494), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319441,19 +349639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294380] = 6, + [324362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13432), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15495), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319462,19 +349660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294407] = 6, + [324389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13790), 1, + ACTIONS(15109), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319483,19 +349681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294434] = 6, + [324416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14833), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14198), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319504,19 +349702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294461] = 6, + [324443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14200), 1, + ACTIONS(15497), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319525,40 +349723,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294488] = 6, + [324470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, + ACTIONS(15113), 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(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__, - [294515] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14202), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319567,19 +349744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294542] = 6, + [324497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13798), 1, + ACTIONS(1472), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2304), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1118), 1, + sym_string, + ACTIONS(2302), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2300), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319588,19 +349765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294569] = 6, + [324524] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14204), 1, + ACTIONS(15499), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319609,19 +349786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294596] = 6, + [324551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10006), 1, + ACTIONS(7084), 1, anon_sym_DQUOTE, - ACTIONS(10010), 1, + ACTIONS(7088), 1, sym_variable_name, - STATE(5422), 1, + STATE(3753), 1, sym_string, - ACTIONS(10008), 2, + ACTIONS(7086), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(10004), 8, + ACTIONS(7082), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319630,40 +349807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294623] = 6, + [324578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13806), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 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__, - [294650] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13562), 1, + ACTIONS(15501), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319672,19 +349828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294677] = 6, + [324605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(6438), 1, anon_sym_DQUOTE, - ACTIONS(5490), 1, + ACTIONS(12809), 1, sym_variable_name, - STATE(2462), 1, + STATE(6055), 1, sym_string, - ACTIONS(5488), 2, + ACTIONS(12807), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5484), 8, + ACTIONS(12805), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319693,40 +349849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294704] = 6, + [324632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14206), 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__, - [294731] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13478), 1, + ACTIONS(15503), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319735,19 +349870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294758] = 6, + [324659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(4200), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, + ACTIONS(8281), 1, sym_variable_name, - STATE(2581), 1, + STATE(4553), 1, sym_string, - ACTIONS(5176), 2, + ACTIONS(8279), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5172), 8, + ACTIONS(8277), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319756,19 +349891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294785] = 6, + [324686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13818), 1, + ACTIONS(15125), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319777,40 +349912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294812] = 6, + [324713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14208), 1, + ACTIONS(15129), 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__, - [294839] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14210), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319819,40 +349933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294866] = 6, + [324740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 1, + ACTIONS(14841), 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__, - [294893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14212), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319861,19 +349954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294920] = 6, + [324767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13830), 1, + ACTIONS(14717), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319882,19 +349975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294947] = 6, + [324794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13826), 1, + ACTIONS(15157), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319903,19 +349996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [294974] = 6, + [324821] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14214), 1, + ACTIONS(15505), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319924,19 +350017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295001] = 6, + [324848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13570), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15507), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319945,19 +350038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295028] = 6, + [324875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(1673), 1, anon_sym_DQUOTE, - ACTIONS(2785), 1, + ACTIONS(1677), 1, sym_variable_name, - STATE(1143), 1, + STATE(892), 1, sym_string, - ACTIONS(2783), 2, + ACTIONS(1675), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2779), 8, + ACTIONS(1671), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319966,19 +350059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295055] = 6, + [324902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14216), 1, + ACTIONS(15509), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -319987,19 +350080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295082] = 6, + [324929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(5095), 1, anon_sym_DQUOTE, - ACTIONS(2221), 1, + ACTIONS(5099), 1, sym_variable_name, - STATE(983), 1, + STATE(2674), 1, sym_string, - ACTIONS(2219), 2, + ACTIONS(5097), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2215), 8, + ACTIONS(5093), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320008,19 +350101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295109] = 6, + [324956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14218), 1, + ACTIONS(3671), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(7850), 1, + sym_variable_name, + STATE(4968), 1, + sym_string, + ACTIONS(7848), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7846), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320029,19 +350122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295136] = 6, + [324983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13842), 1, + ACTIONS(15141), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320050,19 +350143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295163] = 6, + [325010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14849), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14220), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320071,19 +350164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295190] = 6, + [325037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14222), 1, + ACTIONS(15511), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320092,19 +350185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295217] = 6, + [325064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(15145), 1, anon_sym_DQUOTE, - ACTIONS(5355), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(2736), 1, - sym_string, - ACTIONS(5353), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5349), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320113,19 +350206,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295244] = 6, + [325091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 1, + ACTIONS(5960), 1, anon_sym_DQUOTE, - ACTIONS(3421), 1, + ACTIONS(5964), 1, sym_variable_name, - STATE(1202), 1, + STATE(3326), 1, sym_string, - ACTIONS(3419), 2, + ACTIONS(5962), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3417), 8, + ACTIONS(5958), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320134,19 +350227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295271] = 6, + [325118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13850), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15513), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320155,41 +350248,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, + [325145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13858), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15515), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320198,19 +350269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295354] = 6, + [325172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15153), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14236), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320219,19 +350290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295381] = 6, + [325199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 1, + ACTIONS(3385), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(4237), 1, sym_variable_name, - STATE(1404), 1, + STATE(2035), 1, sym_string, - ACTIONS(3425), 2, + ACTIONS(4235), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3423), 8, + ACTIONS(4233), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320240,19 +350311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295408] = 6, + [325226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13866), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15517), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320261,19 +350332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295435] = 6, + [325253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14857), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14238), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320282,19 +350353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295462] = 6, + [325280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13870), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15519), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320303,19 +350374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295489] = 6, + [325307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13874), 1, + ACTIONS(10579), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(10583), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5960), 1, + sym_string, + ACTIONS(10581), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(10577), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320324,19 +350395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295516] = 6, + [325334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14240), 1, + ACTIONS(15521), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320345,19 +350416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295543] = 6, + [325361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 1, + ACTIONS(15165), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(890), 1, - sym_string, - ACTIONS(1765), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1763), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320366,19 +350437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295570] = 6, + [325388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14242), 1, + ACTIONS(15523), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320387,19 +350458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295597] = 6, + [325415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14244), 1, + ACTIONS(15525), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320408,40 +350479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295624] = 6, + [325442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13882), 1, + ACTIONS(5618), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 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__, - [295651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(5622), 1, sym_variable_name, - ACTIONS(14246), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + STATE(2927), 1, + sym_string, + ACTIONS(5620), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5616), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320450,19 +350500,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295678] = 6, + [325469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(14725), 1, anon_sym_DQUOTE, - ACTIONS(3433), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1473), 1, - sym_string, - ACTIONS(3431), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3429), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320471,19 +350521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295705] = 6, + [325496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13890), 1, + ACTIONS(14685), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320492,19 +350542,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295732] = 6, + [325523] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14024), 1, + ACTIONS(15173), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320513,19 +350563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295759] = 6, + [325550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14865), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14248), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320534,19 +350584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295786] = 6, + [325577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3127), 1, - anon_sym_DQUOTE, - ACTIONS(7190), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(4397), 1, - sym_string, - ACTIONS(7188), 2, + ACTIONS(15527), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7186), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320555,19 +350605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295813] = 6, + [325604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13898), 1, + ACTIONS(1241), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(1247), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(518), 1, + sym_string, + ACTIONS(1243), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(1239), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320576,19 +350626,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295840] = 6, + [325631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13582), 1, + ACTIONS(7959), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(7963), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(4639), 1, + sym_string, + ACTIONS(7961), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(7957), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320597,19 +350647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295867] = 6, + [325658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14250), 1, + ACTIONS(10186), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(10190), 1, + sym_variable_name, + STATE(5779), 1, + sym_string, + ACTIONS(10188), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(10184), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320618,19 +350668,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295894] = 6, + [325685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(1255), 1, anon_sym_DQUOTE, - ACTIONS(2793), 1, + ACTIONS(1259), 1, sym_variable_name, - STATE(1340), 1, + STATE(529), 1, sym_string, - ACTIONS(2791), 2, + ACTIONS(1257), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2789), 8, + ACTIONS(1253), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320639,19 +350689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295921] = 6, + [325712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13906), 1, + ACTIONS(15185), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320660,19 +350710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295948] = 6, + [325739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14252), 1, + ACTIONS(15529), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320681,19 +350731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [295975] = 6, + [325766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 1, - anon_sym_DQUOTE, - ACTIONS(6820), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(4240), 1, - sym_string, - ACTIONS(6818), 2, + ACTIONS(15531), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6816), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320702,19 +350752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296002] = 6, + [325793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 1, + ACTIONS(2978), 1, anon_sym_DQUOTE, - ACTIONS(4251), 1, + ACTIONS(2982), 1, sym_variable_name, - STATE(2251), 1, + STATE(1347), 1, sym_string, - ACTIONS(4249), 2, + ACTIONS(2980), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4245), 8, + ACTIONS(2976), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320723,19 +350773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296029] = 6, + [325820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13338), 1, - anon_sym_DQUOTE, - ACTIONS(13342), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(6110), 1, - sym_string, - ACTIONS(13340), 2, + ACTIONS(15533), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13336), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320744,19 +350794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296056] = 6, + [325847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(15193), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320765,19 +350815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296083] = 6, + [325874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13926), 1, + ACTIONS(4109), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(8325), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(5079), 1, + sym_string, + ACTIONS(8323), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(8321), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320786,41 +350836,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, + [325901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14262), 1, + ACTIONS(15535), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320829,19 +350857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296166] = 6, + [325928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 1, + ACTIONS(1693), 1, anon_sym_DQUOTE, - ACTIONS(1761), 1, + ACTIONS(3409), 1, sym_variable_name, - STATE(898), 1, + STATE(1413), 1, sym_string, - ACTIONS(1759), 2, + ACTIONS(3407), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1755), 8, + ACTIONS(3405), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320850,19 +350878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296193] = 6, + [325955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14264), 1, + ACTIONS(2294), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(2298), 1, + sym_variable_name, + STATE(1210), 1, + sym_string, + ACTIONS(2296), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2292), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320871,19 +350899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296220] = 6, + [325982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13934), 1, + ACTIONS(15197), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320892,19 +350920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296247] = 6, + [326009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14266), 1, + ACTIONS(15537), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320913,19 +350941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296274] = 6, + [326036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14268), 1, + ACTIONS(15539), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320934,19 +350962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296301] = 6, + [326063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7265), 1, + ACTIONS(5970), 1, anon_sym_DQUOTE, - ACTIONS(7269), 1, + ACTIONS(5974), 1, sym_variable_name, - STATE(4167), 1, + STATE(2871), 1, sym_string, - ACTIONS(7267), 2, + ACTIONS(5972), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7263), 8, + ACTIONS(5968), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320955,19 +350983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296328] = 6, + [326090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13586), 1, + ACTIONS(14877), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320976,19 +351004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296355] = 6, + [326117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13486), 1, + ACTIONS(15205), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -320997,40 +351025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296382] = 6, + [326144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13972), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 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__, - [296409] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1201), 1, + ACTIONS(15541), 1, anon_sym_DQUOTE, - ACTIONS(1205), 1, - sym_variable_name, - STATE(516), 1, - sym_string, - ACTIONS(1203), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1199), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321039,19 +351046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296436] = 6, + [326171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14270), 1, + ACTIONS(15543), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321060,19 +351067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296463] = 6, + [326198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14272), 1, + ACTIONS(5952), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(5956), 1, + sym_variable_name, + STATE(3112), 1, + sym_string, + ACTIONS(5954), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(5950), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321081,19 +351088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296490] = 6, + [326225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14274), 1, + ACTIONS(15545), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321102,19 +351109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296517] = 6, + [326252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 1, + ACTIONS(15217), 1, anon_sym_DQUOTE, - ACTIONS(3986), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1710), 1, - sym_string, - ACTIONS(3984), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3982), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321123,19 +351130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296544] = 6, + [326279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1296), 1, - sym_string, - ACTIONS(3439), 2, + ACTIONS(15547), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3435), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321144,19 +351151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296571] = 6, + [326306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13980), 1, + ACTIONS(15221), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321165,19 +351172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296598] = 6, + [326333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3905), 1, + ACTIONS(4097), 1, sym_variable_name, - STATE(1724), 1, + STATE(1967), 1, sym_string, - ACTIONS(3903), 2, + ACTIONS(4095), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3901), 8, + ACTIONS(4093), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321186,19 +351193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296625] = 6, + [326360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14276), 1, + ACTIONS(15549), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321207,19 +351214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296652] = 6, + [326387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13996), 1, + ACTIONS(2566), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(3415), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1448), 1, + sym_string, + ACTIONS(3413), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3411), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321228,19 +351235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296679] = 6, + [326414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13988), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15551), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321249,19 +351256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296706] = 6, + [326441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14278), 1, + ACTIONS(15553), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321270,19 +351277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296733] = 6, + [326468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(260), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(5664), 1, sym_variable_name, - STATE(1336), 1, + STATE(2559), 1, sym_string, - ACTIONS(3807), 2, + ACTIONS(5662), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3805), 8, + ACTIONS(5660), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321291,19 +351298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296760] = 6, + [326495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(260), 1, - anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(2219), 1, - sym_string, - ACTIONS(4955), 2, + ACTIONS(15555), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4953), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321312,19 +351319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296787] = 6, + [326522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15259), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14280), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321333,19 +351340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296814] = 6, + [326549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(4793), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4797), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2614), 1, + sym_string, + ACTIONS(4795), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4791), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321354,19 +351361,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296841] = 6, + [326576] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15349), 1, + anon_sym_LT_LT, + ACTIONS(15355), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15563), 1, + anon_sym_LT_LT_LT, + ACTIONS(15561), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15559), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15557), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [326605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14282), 1, + ACTIONS(15565), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321375,19 +351404,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296868] = 6, + [326632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14284), 1, + ACTIONS(15567), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321396,19 +351425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296895] = 6, + [326659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(4049), 1, anon_sym_DQUOTE, - ACTIONS(3889), 1, + ACTIONS(4053), 1, sym_variable_name, - STATE(1503), 1, + STATE(1901), 1, sym_string, - ACTIONS(3887), 2, + ACTIONS(4051), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3885), 8, + ACTIONS(4047), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321417,19 +351446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [296922] = 6, + [326686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14012), 1, + ACTIONS(14733), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321438,41 +351467,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, + [326713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14016), 1, + ACTIONS(15267), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321481,40 +351488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297005] = 6, + [326740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14298), 1, + ACTIONS(14893), 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__, - [297032] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14300), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321523,19 +351509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297059] = 6, + [326767] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1432), 1, anon_sym_DQUOTE, - ACTIONS(2025), 1, + ACTIONS(2050), 1, sym_variable_name, - STATE(1012), 1, + STATE(954), 1, sym_string, - ACTIONS(2023), 2, + ACTIONS(2048), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2021), 8, + ACTIONS(2046), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321544,19 +351530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297086] = 6, + [326794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13594), 1, + ACTIONS(14677), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321565,19 +351551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297113] = 6, + [326821] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, + ACTIONS(15275), 1, anon_sym_DQUOTE, - ACTIONS(3974), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1616), 1, - sym_string, - ACTIONS(3972), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3970), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321586,19 +351572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297140] = 6, + [326848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14032), 1, + ACTIONS(14897), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321607,40 +351593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297167] = 6, + [326875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 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(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__, - [297194] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 1, + ACTIONS(15569), 1, anon_sym_DQUOTE, - ACTIONS(4048), 1, - sym_variable_name, - STATE(2111), 1, - sym_string, - ACTIONS(4046), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4042), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321649,19 +351614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297221] = 6, + [326902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14302), 1, + ACTIONS(15571), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321670,19 +351635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297248] = 6, + [326929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 1, + ACTIONS(4574), 1, anon_sym_DQUOTE, - ACTIONS(3913), 1, + ACTIONS(4578), 1, sym_variable_name, - STATE(1657), 1, + STATE(2530), 1, sym_string, - ACTIONS(3911), 2, + ACTIONS(4576), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3907), 8, + ACTIONS(4572), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321691,19 +351656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297275] = 6, + [326956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_DQUOTE, - ACTIONS(3803), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1839), 1, - sym_string, - ACTIONS(3801), 2, + ACTIONS(15573), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3799), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321712,19 +351677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297302] = 6, + [326983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14304), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(3498), 1, + sym_variable_name, + STATE(1850), 1, + sym_string, + ACTIONS(3496), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3494), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321733,19 +351698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297329] = 6, + [327010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14044), 1, + ACTIONS(14501), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(14505), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(6660), 1, + sym_string, + ACTIONS(14503), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(14499), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321754,19 +351719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297356] = 6, + [327037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15287), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14306), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321775,41 +351740,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297383] = 7, + [327064] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(14310), 1, + ACTIONS(15577), 1, anon_sym_LT_LT, - ACTIONS(14316), 1, + ACTIONS(15583), 1, anon_sym_LT_LT_DASH, - ACTIONS(14318), 1, + ACTIONS(15585), 1, anon_sym_LT_LT_LT, - ACTIONS(14314), 2, + ACTIONS(15581), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, + ACTIONS(15579), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14308), 5, + ACTIONS(15575), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [297412] = 6, + [327093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14320), 1, + ACTIONS(15587), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321818,19 +351783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297439] = 6, + [327120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14048), 1, + ACTIONS(2286), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(2290), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1112), 1, + sym_string, + ACTIONS(2288), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(2284), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321839,19 +351804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297466] = 6, + [327147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14322), 1, + ACTIONS(15589), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321860,19 +351825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297493] = 6, + [327174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14060), 1, + ACTIONS(4069), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4584), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(2543), 1, + sym_string, + ACTIONS(4582), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4580), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321881,19 +351846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297520] = 6, + [327201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 1, + ACTIONS(7168), 1, anon_sym_DQUOTE, - ACTIONS(7480), 1, + ACTIONS(14595), 1, sym_variable_name, - STATE(4595), 1, + STATE(6983), 1, sym_string, - ACTIONS(7478), 2, + ACTIONS(14593), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7476), 8, + ACTIONS(14591), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321902,19 +351867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297547] = 6, + [327228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, + ACTIONS(15299), 1, anon_sym_DQUOTE, - ACTIONS(7420), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(4218), 1, - sym_string, - ACTIONS(7418), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7416), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321923,19 +351888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297574] = 6, + [327255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14056), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15591), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321944,19 +351909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297601] = 6, + [327282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(15307), 1, anon_sym_DQUOTE, - ACTIONS(4931), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(2500), 1, - sym_string, - ACTIONS(4929), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4925), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321965,19 +351930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297628] = 6, + [327309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14324), 1, + ACTIONS(15593), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321986,19 +351951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297655] = 6, + [327336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(4552), 1, anon_sym_DQUOTE, - ACTIONS(3115), 1, + ACTIONS(8378), 1, sym_variable_name, - STATE(1528), 1, + STATE(4638), 1, sym_string, - ACTIONS(3113), 2, + ACTIONS(8376), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3111), 8, + ACTIONS(8374), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322007,19 +351972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297682] = 6, + [327363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14326), 1, + ACTIONS(2830), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(3303), 1, + sym_variable_name, + STATE(1854), 1, + sym_string, + ACTIONS(3301), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3299), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322028,19 +351993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297709] = 6, + [327390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14072), 1, + ACTIONS(14905), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322049,19 +352014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297736] = 6, + [327417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14068), 1, + ACTIONS(2316), 1, anon_sym_DQUOTE, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, + ACTIONS(4686), 1, sym_variable_name, - ACTIONS(14086), 2, + STATE(1705), 1, + sym_string, + ACTIONS(4684), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(4682), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322070,19 +352035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297763] = 6, + [327444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6344), 1, + ACTIONS(15315), 1, anon_sym_DQUOTE, - ACTIONS(6348), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(3422), 1, - sym_string, - ACTIONS(6346), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6342), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322091,19 +352056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297790] = 6, + [327471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3316), 1, + ACTIONS(14673), 1, anon_sym_DQUOTE, - ACTIONS(3938), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(1838), 1, - sym_string, - ACTIONS(3936), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3934), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322112,19 +352077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297817] = 6, + [327498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13610), 1, - anon_sym_DQUOTE, - ACTIONS(14084), 1, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14086), 2, + ACTIONS(15595), 1, + anon_sym_DQUOTE, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322133,19 +352098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297844] = 6, + [327525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 1, - sym_variable_name, - ACTIONS(14328), 1, + ACTIONS(3315), 1, anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(3973), 1, + sym_variable_name, + STATE(1949), 1, + sym_string, + ACTIONS(3971), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(3969), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322154,19 +352119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297871] = 6, + [327552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(14997), 1, anon_sym_DQUOTE, - ACTIONS(7275), 1, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, sym_variable_name, - STATE(4355), 1, - sym_string, - ACTIONS(7273), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7271), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322175,19 +352140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297898] = 6, + [327579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14665), 1, + anon_sym_DQUOTE, + ACTIONS(15327), 1, sym_string_content, - ACTIONS(14088), 1, + ACTIONS(15331), 1, sym_variable_name, - ACTIONS(14330), 1, - anon_sym_DQUOTE, - ACTIONS(14086), 2, + ACTIONS(15329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14082), 8, + ACTIONS(15325), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322196,92 +352161,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [297925] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - 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, - [297951] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14094), 1, - anon_sym_LT_LT, - ACTIONS(14100), 1, - anon_sym_LT_LT_DASH, - 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, - [297977] = 6, + [327606] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(15599), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(15605), 1, anon_sym_LT_LT_DASH, - ACTIONS(14258), 2, + ACTIONS(15603), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14256), 3, + ACTIONS(15601), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14254), 5, + ACTIONS(15597), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298003] = 6, + [327632] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(15577), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(15583), 1, anon_sym_LT_LT_DASH, - ACTIONS(14130), 2, + ACTIONS(15581), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(15579), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(15575), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298029] = 3, + [327658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1360), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 11, + ACTIONS(1358), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -322293,12 +352218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, aux_sym__simple_variable_name_token1, - [298049] = 3, + [327678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1356), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 11, + ACTIONS(1354), 11, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -322310,208 +352235,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, aux_sym__simple_variable_name_token1, - [298069] = 6, + [327698] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14094), 1, + ACTIONS(15349), 1, anon_sym_LT_LT, - ACTIONS(14100), 1, + ACTIONS(15355), 1, anon_sym_LT_LT_DASH, - ACTIONS(14186), 2, + ACTIONS(15475), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, + ACTIONS(15473), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14182), 5, + ACTIONS(15471), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298095] = 6, + [327724] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(15349), 1, anon_sym_LT_LT, - ACTIONS(14340), 1, + ACTIONS(15355), 1, anon_sym_LT_LT_DASH, - ACTIONS(14338), 2, + ACTIONS(15353), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14336), 3, + ACTIONS(15351), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14332), 5, + ACTIONS(15347), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298121] = 6, + [327750] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14226), 1, + ACTIONS(15349), 1, anon_sym_LT_LT, - ACTIONS(14232), 1, + ACTIONS(15355), 1, anon_sym_LT_LT_DASH, - ACTIONS(14230), 2, + ACTIONS(15447), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14228), 3, + ACTIONS(15445), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14224), 5, + ACTIONS(15443), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298147] = 6, + [327776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15327), 1, + sym_string_content, + ACTIONS(15331), 1, + sym_variable_name, + ACTIONS(15329), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [327800] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14288), 1, + ACTIONS(15361), 1, anon_sym_LT_LT, - ACTIONS(14294), 1, + ACTIONS(15367), 1, anon_sym_LT_LT_DASH, - ACTIONS(14292), 2, + ACTIONS(15365), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14290), 3, + ACTIONS(15363), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14286), 5, + ACTIONS(15359), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298173] = 5, - ACTIONS(3), 1, + [327826] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(14084), 1, - sym_string_content, - ACTIONS(14088), 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__, - [298197] = 6, + ACTIONS(15349), 1, + anon_sym_LT_LT, + ACTIONS(15355), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15561), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15559), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15557), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [327852] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14310), 1, + ACTIONS(15349), 1, anon_sym_LT_LT, - ACTIONS(14316), 1, + ACTIONS(15355), 1, anon_sym_LT_LT_DASH, - ACTIONS(14314), 2, + ACTIONS(15389), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, + ACTIONS(15387), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14308), 5, + ACTIONS(15385), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298223] = 5, + [327878] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14348), 1, - anon_sym_LT_LT_LT, - ACTIONS(14346), 2, + ACTIONS(15349), 1, + anon_sym_LT_LT, + ACTIONS(15355), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15425), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14344), 3, + ACTIONS(15423), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14342), 5, + ACTIONS(15421), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298246] = 9, + [327904] = 6, 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(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, + ACTIONS(15337), 1, + anon_sym_LT_LT, + ACTIONS(15343), 1, + anon_sym_LT_LT_DASH, + ACTIONS(15341), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15339), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15335), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [327930] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14114), 1, + ACTIONS(15613), 1, anon_sym_LT_LT_LT, - ACTIONS(14112), 2, + ACTIONS(15611), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14110), 3, + ACTIONS(15609), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14108), 5, + ACTIONS(15607), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298300] = 3, + [327953] = 9, 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, + ACTIONS(15615), 1, + anon_sym_DOLLAR, + ACTIONS(15617), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(15619), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(15621), 1, + anon_sym_BQUOTE, + ACTIONS(15623), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15625), 1, + sym_heredoc_content, + ACTIONS(15627), 1, + sym_heredoc_end, + STATE(6583), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [327984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14372), 1, + ACTIONS(15633), 1, sym_variable_name, - ACTIONS(14370), 2, + ACTIONS(15631), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14368), 8, + ACTIONS(15629), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322520,51 +352471,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298340] = 5, + [328005] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14380), 1, + ACTIONS(15641), 1, anon_sym_LT_LT_LT, - ACTIONS(14378), 2, + ACTIONS(15639), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14376), 3, + ACTIONS(15637), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14374), 5, + ACTIONS(15635), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298363] = 5, + [328028] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14388), 1, + ACTIONS(15649), 1, + anon_sym_LT_LT_LT, + ACTIONS(15647), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15645), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15643), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [328051] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15657), 1, anon_sym_LT_LT_LT, - ACTIONS(14386), 2, + ACTIONS(15655), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14384), 3, + ACTIONS(15653), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14382), 5, + ACTIONS(15651), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298386] = 4, + [328074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14394), 1, + ACTIONS(15663), 1, sym_variable_name, - ACTIONS(14392), 2, + ACTIONS(15661), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14390), 8, + ACTIONS(15659), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322573,397 +352542,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298407] = 5, + [328095] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14396), 1, + ACTIONS(15671), 1, anon_sym_LT_LT_LT, - ACTIONS(14338), 2, + ACTIONS(15669), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14336), 3, + ACTIONS(15667), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14332), 5, + ACTIONS(15665), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298430] = 5, + [328118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15677), 1, + sym_variable_name, + ACTIONS(15675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15673), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [328139] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14404), 1, + ACTIONS(15391), 1, anon_sym_LT_LT_LT, - ACTIONS(14402), 2, + ACTIONS(15389), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14400), 3, + ACTIONS(15387), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14398), 5, + ACTIONS(15385), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298453] = 5, + [328162] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15679), 1, + anon_sym_RBRACE3, + ACTIONS(15681), 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, + [328181] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14412), 1, + ACTIONS(15689), 1, anon_sym_LT_LT_LT, - ACTIONS(14410), 2, + ACTIONS(15687), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14408), 3, + ACTIONS(15685), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14406), 5, + ACTIONS(15683), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298476] = 9, + [328204] = 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(15697), 1, + anon_sym_LT_LT_LT, + ACTIONS(15695), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15693), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15691), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [328227] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14296), 1, + ACTIONS(15449), 1, anon_sym_LT_LT_LT, - ACTIONS(14292), 2, + ACTIONS(15447), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14290), 3, + ACTIONS(15445), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14286), 5, + ACTIONS(15443), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298551] = 5, + [328250] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14188), 1, + ACTIONS(15563), 1, anon_sym_LT_LT_LT, - ACTIONS(14186), 2, + ACTIONS(15561), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14184), 3, + ACTIONS(15559), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14182), 5, + ACTIONS(15557), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298574] = 5, + [328273] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14102), 1, + ACTIONS(15427), 1, anon_sym_LT_LT_LT, - ACTIONS(14098), 2, + ACTIONS(15425), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14096), 3, + ACTIONS(15423), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14092), 5, + ACTIONS(15421), 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, + [328296] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14446), 1, + ACTIONS(15699), 1, anon_sym_LT_LT_LT, - ACTIONS(14444), 2, + ACTIONS(15603), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14442), 3, + ACTIONS(15601), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14440), 5, + ACTIONS(15597), 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, + [328319] = 5, 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, + ACTIONS(15707), 1, + anon_sym_LT_LT_LT, + ACTIONS(15705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15701), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [328342] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14260), 1, + ACTIONS(15715), 1, anon_sym_LT_LT_LT, - ACTIONS(14258), 2, + ACTIONS(15713), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14256), 3, + ACTIONS(15711), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14254), 5, + ACTIONS(15709), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298737] = 5, + [328365] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14318), 1, + ACTIONS(15477), 1, anon_sym_LT_LT_LT, - ACTIONS(14314), 2, + ACTIONS(15475), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14312), 3, + ACTIONS(15473), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14308), 5, + ACTIONS(15471), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298760] = 5, + [328388] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14470), 1, + ACTIONS(15723), 1, anon_sym_LT_LT_LT, - ACTIONS(14468), 2, + ACTIONS(15721), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14466), 3, + ACTIONS(15719), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14464), 5, + ACTIONS(15717), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298783] = 5, + [328411] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14478), 1, + ACTIONS(15731), 1, anon_sym_LT_LT_LT, - ACTIONS(14476), 2, + ACTIONS(15729), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14474), 3, + ACTIONS(15727), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14472), 5, + ACTIONS(15725), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298806] = 5, + [328434] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14132), 1, + ACTIONS(15739), 1, anon_sym_LT_LT_LT, - ACTIONS(14130), 2, + ACTIONS(15737), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(15735), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(15733), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298829] = 5, + [328457] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14486), 1, + ACTIONS(15747), 1, anon_sym_LT_LT_LT, - ACTIONS(14484), 2, + ACTIONS(15745), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14482), 3, + ACTIONS(15743), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14480), 5, + ACTIONS(15741), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298852] = 5, + [328480] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14494), 1, + ACTIONS(15755), 1, anon_sym_LT_LT_LT, - ACTIONS(14492), 2, + ACTIONS(15753), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14490), 3, + ACTIONS(15751), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14488), 5, + ACTIONS(15749), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298875] = 5, + [328503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15761), 1, + sym_variable_name, + ACTIONS(15759), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15757), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [328524] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15763), 1, + anon_sym_DOLLAR, + ACTIONS(15766), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(15769), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(15772), 1, + anon_sym_BQUOTE, + ACTIONS(15775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15778), 1, + sym_heredoc_content, + ACTIONS(15781), 1, + sym_heredoc_end, + STATE(6583), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [328555] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14502), 1, + ACTIONS(15789), 1, anon_sym_LT_LT_LT, - ACTIONS(14500), 2, + ACTIONS(15787), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14498), 3, + ACTIONS(15785), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14496), 5, + ACTIONS(15783), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298898] = 4, + [328578] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15615), 1, + anon_sym_DOLLAR, + ACTIONS(15617), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(15619), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(15621), 1, + anon_sym_BQUOTE, + ACTIONS(15623), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15791), 1, + sym_heredoc_content, + ACTIONS(15793), 1, + sym_heredoc_end, + STATE(6558), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [328609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14508), 1, + ACTIONS(15485), 1, sym_variable_name, - ACTIONS(14506), 2, + ACTIONS(15483), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14504), 8, + ACTIONS(15479), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -322972,158 +352959,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [298919] = 5, + [328630] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14516), 1, + ACTIONS(15357), 1, anon_sym_LT_LT_LT, - ACTIONS(14514), 2, + ACTIONS(15353), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14512), 3, + ACTIONS(15351), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14510), 5, + ACTIONS(15347), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298942] = 5, + [328653] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14524), 1, + ACTIONS(15585), 1, anon_sym_LT_LT_LT, - ACTIONS(14522), 2, + ACTIONS(15581), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14520), 3, + ACTIONS(15579), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14518), 5, + ACTIONS(15575), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298965] = 5, + [328676] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14532), 1, + ACTIONS(15801), 1, anon_sym_LT_LT_LT, - ACTIONS(14530), 2, + ACTIONS(15799), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14528), 3, + ACTIONS(15797), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14526), 5, + ACTIONS(15795), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [298988] = 4, - ACTIONS(3), 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, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym__, - [299009] = 5, + [328699] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14546), 1, + ACTIONS(15809), 1, anon_sym_LT_LT_LT, - ACTIONS(14544), 2, + ACTIONS(15807), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14542), 3, + ACTIONS(15805), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14540), 5, + ACTIONS(15803), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299032] = 5, + [328722] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14554), 1, + ACTIONS(15817), 1, anon_sym_LT_LT_LT, - ACTIONS(14552), 2, + ACTIONS(15815), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14550), 3, + ACTIONS(15813), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14548), 5, + ACTIONS(15811), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299055] = 5, + [328745] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14562), 1, + ACTIONS(15369), 1, anon_sym_LT_LT_LT, - ACTIONS(14560), 2, + ACTIONS(15365), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14558), 3, + ACTIONS(15363), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14556), 5, + ACTIONS(15359), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299078] = 5, + [328768] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14570), 1, + ACTIONS(15825), 1, anon_sym_LT_LT_LT, - ACTIONS(14568), 2, + ACTIONS(15823), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14566), 3, + ACTIONS(15821), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14564), 5, + ACTIONS(15819), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299101] = 4, + [328791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14576), 1, + ACTIONS(15831), 1, sym_variable_name, - ACTIONS(14574), 2, + ACTIONS(15829), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14572), 8, + ACTIONS(15827), 8, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -323132,105 +353102,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_AT2, anon_sym__, - [299122] = 5, + [328812] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14584), 1, + ACTIONS(15839), 1, anon_sym_LT_LT_LT, - ACTIONS(14582), 2, + ACTIONS(15837), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14580), 3, + ACTIONS(15835), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14578), 5, + ACTIONS(15833), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [299145] = 8, - ACTIONS(71), 1, + [328835] = 4, + ACTIONS(3), 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(4551), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [299173] = 8, + ACTIONS(15845), 1, + sym_variable_name, + ACTIONS(15843), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15841), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [328856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15851), 1, + sym_variable_name, + ACTIONS(15849), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15847), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [328877] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(14600), 1, - anon_sym_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, - STATE(5310), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [299201] = 8, + ACTIONS(15859), 1, + anon_sym_LT_LT_LT, + ACTIONS(15857), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(15855), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(15853), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [328900] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15865), 1, + sym_variable_name, + ACTIONS(15863), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(15861), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym__, + [328921] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15869), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - STATE(4537), 4, + STATE(5387), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299229] = 3, + [328949] = 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, - [299247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, + ACTIONS(15881), 1, sym__concat, - ACTIONS(1304), 9, + ACTIONS(15879), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323240,127 +353224,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299265] = 8, + [328967] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14610), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14612), 1, + ACTIONS(15869), 1, anon_sym_LPAREN, - ACTIONS(14614), 1, - anon_sym_if, - ACTIONS(14616), 1, - anon_sym_LBRACE, - ACTIONS(14618), 1, - anon_sym_LBRACK, - ACTIONS(14620), 1, - anon_sym_LBRACK_LBRACK, - STATE(4330), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [299293] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14610), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(14614), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14622), 1, - anon_sym_LPAREN, - STATE(4452), 4, + STATE(5119), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299321] = 8, + [328995] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15869), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - STATE(4588), 4, + STATE(5015), 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, + [329023] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(15883), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14602), 1, + ACTIONS(15885), 1, + anon_sym_LPAREN, + ACTIONS(15887), 1, anon_sym_if, - ACTIONS(14604), 1, + ACTIONS(15889), 1, anon_sym_LBRACE, - ACTIONS(14606), 1, + ACTIONS(15891), 1, anon_sym_LBRACK, - ACTIONS(14608), 1, + ACTIONS(15893), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14624), 1, - anon_sym_LPAREN, - STATE(5292), 4, + STATE(4771), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299395] = 8, + [329051] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15895), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15897), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15899), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15901), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15903), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15905), 1, anon_sym_LBRACK_LBRACK, - STATE(4744), 4, + STATE(4936), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299423] = 3, + [329079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14628), 1, + ACTIONS(1360), 1, sym__concat, - ACTIONS(14626), 9, + ACTIONS(1358), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323370,112 +353319,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299441] = 8, + [329097] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15869), 1, + anon_sym_LPAREN, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14630), 1, - anon_sym_LPAREN, - STATE(4534), 4, + STATE(5017), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299469] = 8, + [329125] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15883), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14634), 1, + ACTIONS(15885), 1, anon_sym_LPAREN, - ACTIONS(14636), 1, + ACTIONS(15887), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(15889), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(15891), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(15893), 1, anon_sym_LBRACK_LBRACK, - STATE(4286), 4, + STATE(4660), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299497] = 8, + [329153] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14598), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14602), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14604), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14606), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14608), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14624), 1, + ACTIONS(15907), 1, anon_sym_LPAREN, - STATE(5325), 4, + STATE(5056), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299525] = 8, + [329181] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15869), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - STATE(4561), 4, + STATE(5071), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299553] = 8, + [329209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 1, + sym__concat, + ACTIONS(1338), 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, + [329227] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14634), 1, + ACTIONS(15869), 1, anon_sym_LPAREN, - ACTIONS(14636), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - STATE(4288), 4, + STATE(5073), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299581] = 3, + [329255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14644), 1, + ACTIONS(1344), 1, sym__concat, - ACTIONS(13949), 9, + ACTIONS(1342), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323485,142 +353449,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299599] = 3, - ACTIONS(3), 1, + [329273] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 1, - sym__concat, - ACTIONS(1296), 9, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(15909), 1, anon_sym_DQUOTE, - sym_string_content, + ACTIONS(15911), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(15913), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(15915), 1, anon_sym_BQUOTE, + ACTIONS(15917), 1, anon_sym_DOLLAR_BQUOTE, - [299617] = 8, + ACTIONS(5762), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + STATE(7051), 3, + sym_string, + sym_expansion, + sym_command_substitution, + [329301] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15681), 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, + [329317] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15919), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15921), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15923), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15925), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15927), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15929), 1, anon_sym_LBRACK_LBRACK, - STATE(4554), 4, + STATE(5887), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299645] = 8, + [329345] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14610), 1, + ACTIONS(15895), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14614), 1, + ACTIONS(15897), 1, + anon_sym_LPAREN, + ACTIONS(15899), 1, anon_sym_if, - ACTIONS(14616), 1, + ACTIONS(15901), 1, anon_sym_LBRACE, - ACTIONS(14618), 1, + ACTIONS(15903), 1, anon_sym_LBRACK, - ACTIONS(14620), 1, + ACTIONS(15905), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14622), 1, + STATE(4850), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [329373] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15867), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15869), 1, anon_sym_LPAREN, - STATE(4478), 4, + ACTIONS(15871), 1, + anon_sym_if, + ACTIONS(15873), 1, + anon_sym_LBRACE, + ACTIONS(15875), 1, + anon_sym_LBRACK, + ACTIONS(15877), 1, + anon_sym_LBRACK_LBRACK, + STATE(5386), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299673] = 8, + [329401] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14646), 1, + ACTIONS(15931), 1, anon_sym_LPAREN, - STATE(5164), 4, + STATE(5728), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299701] = 8, + [329429] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15869), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - STATE(5168), 4, + STATE(5751), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1270), 1, - sym__concat, - ACTIONS(1268), 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, - [299747] = 8, + [329457] = 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(15867), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15869), 1, + anon_sym_LPAREN, + ACTIONS(15871), 1, + anon_sym_if, + ACTIONS(15873), 1, + anon_sym_LBRACE, + ACTIONS(15875), 1, + anon_sym_LBRACK, + ACTIONS(15877), 1, + anon_sym_LBRACK_LBRACK, + STATE(5647), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [329485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 1, + ACTIONS(1348), 1, sym__concat, - ACTIONS(1288), 9, + ACTIONS(1346), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323630,52 +353618,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299793] = 8, + [329503] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14658), 1, + ACTIONS(15933), 1, anon_sym_LPAREN, - STATE(4556), 4, + STATE(5170), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299821] = 8, + [329531] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15869), 1, + anon_sym_LPAREN, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14660), 1, - anon_sym_LPAREN, - STATE(4733), 4, + STATE(5207), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299849] = 3, + [329559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(1312), 1, sym__concat, - ACTIONS(1292), 9, + ACTIONS(1310), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323685,32 +353673,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299867] = 8, + [329577] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14636), 1, + ACTIONS(15869), 1, + anon_sym_LPAREN, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14638), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14640), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14662), 1, - anon_sym_LPAREN, - STATE(4186), 4, + STATE(5208), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299895] = 3, + [329605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 1, + sym__concat, + ACTIONS(1350), 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, + [329623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 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, + [329641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 1, + ACTIONS(1308), 1, sym__concat, - ACTIONS(1260), 9, + ACTIONS(1306), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323720,12 +353738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299913] = 3, + [329659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(15935), 1, sym__concat, - ACTIONS(1276), 9, + ACTIONS(15232), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323735,104 +353753,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [299931] = 8, + [329677] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15869), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - STATE(4742), 4, + STATE(5177), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [299959] = 2, + [329705] = 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(15883), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15887), 1, + anon_sym_if, + ACTIONS(15889), 1, + anon_sym_LBRACE, + ACTIONS(15891), 1, + anon_sym_LBRACK, + ACTIONS(15893), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15937), 1, + anon_sym_LPAREN, + STATE(4755), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [329733] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15919), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15921), 1, + anon_sym_LPAREN, + ACTIONS(15923), 1, + anon_sym_if, + ACTIONS(15925), 1, + anon_sym_LBRACE, + ACTIONS(15927), 1, + anon_sym_LBRACK, + ACTIONS(15929), 1, + anon_sym_LBRACK_LBRACK, + STATE(5901), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [329761] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14590), 1, + ACTIONS(15871), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15873), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15875), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15877), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14664), 1, + ACTIONS(15939), 1, anon_sym_LPAREN, - STATE(4550), 4, + STATE(5090), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300003] = 8, + [329789] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15871), 1, + anon_sym_if, + ACTIONS(15873), 1, + anon_sym_LBRACE, + ACTIONS(15875), 1, + anon_sym_LBRACK, + ACTIONS(15877), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15941), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + STATE(5006), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [329817] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15895), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15899), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15901), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15903), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15905), 1, anon_sym_LBRACK_LBRACK, - STATE(4599), 4, + ACTIONS(15943), 1, + anon_sym_LPAREN, + STATE(4934), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300031] = 8, + [329845] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14586), 1, + ACTIONS(15867), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14588), 1, + ACTIONS(15871), 1, + anon_sym_if, + ACTIONS(15873), 1, + anon_sym_LBRACE, + ACTIONS(15875), 1, + anon_sym_LBRACK, + ACTIONS(15877), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15945), 1, anon_sym_LPAREN, - ACTIONS(14590), 1, + STATE(5378), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [329873] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15919), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15923), 1, anon_sym_if, - ACTIONS(14592), 1, + ACTIONS(15925), 1, anon_sym_LBRACE, - ACTIONS(14594), 1, + ACTIONS(15927), 1, anon_sym_LBRACK, - ACTIONS(14596), 1, + ACTIONS(15929), 1, anon_sym_LBRACK_LBRACK, - STATE(5169), 4, + ACTIONS(15947), 1, + anon_sym_LPAREN, + STATE(5791), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [300059] = 2, + [329901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13949), 9, + ACTIONS(1356), 1, + sym__concat, + ACTIONS(1354), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323842,48 +353928,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, - ACTIONS(14668), 1, - sym__concat, - STATE(6101), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1223), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - sym__special_character, - [300097] = 10, + [329919] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(14670), 1, + ACTIONS(15949), 1, anon_sym_SLASH, - ACTIONS(14672), 1, + ACTIONS(15951), 1, anon_sym_DQUOTE, - ACTIONS(14674), 1, + ACTIONS(15953), 1, anon_sym_RBRACE3, - ACTIONS(14676), 1, + ACTIONS(15955), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(14678), 1, + ACTIONS(15957), 1, anon_sym_BQUOTE, - ACTIONS(14680), 1, + ACTIONS(15959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14682), 1, + ACTIONS(15961), 1, sym__regex_no_slash, - STATE(6543), 1, + STATE(7186), 1, sym_string, - STATE(6638), 1, + STATE(7200), 1, sym_command_substitution, - [300128] = 2, + [329950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14684), 9, + ACTIONS(15963), 9, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -323893,355 +353962,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [300143] = 7, + [329965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(1273), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(15967), 1, sym__concat, - ACTIONS(14686), 1, - anon_sym_in, - ACTIONS(14690), 1, - aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + STATE(6659), 1, aux_sym_concatenation_repeat1, - ACTIONS(14688), 3, + ACTIONS(1271), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300167] = 8, + sym__special_character, + [329988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, - anon_sym_RPAREN, - ACTIONS(14694), 1, + ACTIONS(15232), 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, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [330003] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(8496), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(8498), 1, aux_sym_number_token2, - ACTIONS(14704), 1, + ACTIONS(15969), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14706), 1, + ACTIONS(15971), 1, aux_sym__simple_variable_name_token1, - STATE(6151), 1, + STATE(6665), 1, sym__expansion_max_length_binary_expression, - STATE(6128), 3, + STATE(6702), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [300217] = 7, + [330027] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15965), 1, + aux_sym_concatenation_token1, + ACTIONS(15967), 1, + sym__concat, + ACTIONS(15973), 1, + anon_sym_in, + ACTIONS(15977), 1, + aux_sym_heredoc_redirect_token1, + STATE(6652), 1, + aux_sym_concatenation_repeat1, + ACTIONS(15975), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [330051] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15965), 1, + aux_sym_concatenation_token1, + ACTIONS(15967), 1, + sym__concat, + ACTIONS(15979), 1, + anon_sym_in, + ACTIONS(15983), 1, + aux_sym_heredoc_redirect_token1, + STATE(6659), 1, + aux_sym_concatenation_repeat1, + ACTIONS(15981), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [330075] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(15967), 1, sym__concat, - ACTIONS(14708), 1, + ACTIONS(15985), 1, anon_sym_in, - ACTIONS(14712), 1, + ACTIONS(15989), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6652), 1, aux_sym_concatenation_repeat1, - ACTIONS(14710), 3, + ACTIONS(15987), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300241] = 8, + [330099] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14714), 1, + ACTIONS(15991), 1, anon_sym_RPAREN, - ACTIONS(14717), 1, + ACTIONS(15993), 1, anon_sym_DQUOTE, - ACTIONS(14720), 1, + ACTIONS(15995), 1, sym_raw_string, - ACTIONS(14723), 1, + ACTIONS(15997), 1, anon_sym_RBRACE3, - ACTIONS(14725), 1, + ACTIONS(15999), 1, aux_sym__expansion_regex_token1, - ACTIONS(14728), 1, + ACTIONS(16001), 1, sym_regex, - STATE(6097), 2, + STATE(6651), 2, sym_string, aux_sym__expansion_regex_repeat1, - [300267] = 6, + [330125] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14731), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14734), 1, + ACTIONS(15967), 1, sym__concat, - STATE(6098), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1213), 4, + ACTIONS(16003), 1, anon_sym_in, + ACTIONS(16007), 1, + aux_sym_heredoc_redirect_token1, + STATE(6659), 1, + aux_sym_concatenation_repeat1, + ACTIONS(16005), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300289] = 6, + [330149] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14737), 1, + ACTIONS(15967), 1, sym__concat, - STATE(6098), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1207), 4, + ACTIONS(16009), 1, anon_sym_in, + ACTIONS(16013), 1, + aux_sym_heredoc_redirect_token1, + STATE(6652), 1, + aux_sym_concatenation_repeat1, + ACTIONS(16011), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300311] = 8, + [330173] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 1, + ACTIONS(16015), 1, anon_sym_RPAREN, - ACTIONS(14694), 1, + ACTIONS(16018), 1, anon_sym_DQUOTE, - ACTIONS(14700), 1, - aux_sym__expansion_regex_token1, - ACTIONS(14739), 1, + ACTIONS(16021), 1, sym_raw_string, - ACTIONS(14741), 1, + ACTIONS(16024), 1, anon_sym_RBRACE3, - ACTIONS(14743), 1, + ACTIONS(16026), 1, + aux_sym__expansion_regex_token1, + ACTIONS(16029), 1, sym_regex, - STATE(6094), 2, + STATE(6651), 2, sym_string, aux_sym__expansion_regex_repeat1, - [300337] = 6, + [330199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1229), 1, + ACTIONS(1277), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14666), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14745), 1, + ACTIONS(16032), 1, sym__concat, - STATE(6098), 1, + STATE(6656), 1, aux_sym_concatenation_repeat1, - ACTIONS(1227), 4, + ACTIONS(1275), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300359] = 7, + [330221] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(15967), 1, sym__concat, - ACTIONS(14747), 1, + ACTIONS(16034), 1, anon_sym_in, - ACTIONS(14751), 1, + ACTIONS(16038), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6659), 1, aux_sym_concatenation_repeat1, - ACTIONS(14749), 3, + ACTIONS(16036), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300383] = 7, + [330245] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15991), 1, + anon_sym_RPAREN, + ACTIONS(15993), 1, + anon_sym_DQUOTE, + ACTIONS(15999), 1, + aux_sym__expansion_regex_token1, + ACTIONS(16040), 1, + sym_raw_string, + ACTIONS(16042), 1, + anon_sym_RBRACE3, + ACTIONS(16044), 1, + sym_regex, + STATE(6648), 2, + sym_string, + aux_sym__expansion_regex_repeat1, + [330271] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(15967), 1, sym__concat, - ACTIONS(14753), 1, + ACTIONS(16046), 1, anon_sym_in, - ACTIONS(14757), 1, + ACTIONS(16050), 1, + aux_sym_heredoc_redirect_token1, + STATE(6652), 1, + aux_sym_concatenation_repeat1, + ACTIONS(16048), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [330295] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, + ACTIONS(16052), 1, + aux_sym_concatenation_token1, + ACTIONS(16055), 1, + sym__concat, + STATE(6656), 1, aux_sym_concatenation_repeat1, - ACTIONS(14755), 3, + ACTIONS(1261), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300407] = 7, + [330317] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(8496), 1, aux_sym_number_token1, - ACTIONS(7776), 1, + ACTIONS(8498), 1, aux_sym_number_token2, - ACTIONS(14704), 1, + ACTIONS(15969), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14759), 1, + ACTIONS(16058), 1, aux_sym__simple_variable_name_token1, - STATE(6151), 1, + STATE(6665), 1, sym__expansion_max_length_binary_expression, - STATE(6130), 3, + STATE(6667), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [300431] = 7, + [330341] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(15967), 1, sym__concat, - ACTIONS(14761), 1, + ACTIONS(16060), 1, anon_sym_in, - ACTIONS(14765), 1, + ACTIONS(16064), 1, aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6659), 1, aux_sym_concatenation_repeat1, - ACTIONS(14763), 3, + ACTIONS(16062), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300455] = 7, + [330365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, - ACTIONS(14668), 1, - sym__concat, - ACTIONS(14767), 1, - anon_sym_in, - ACTIONS(14771), 1, + ACTIONS(1283), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14769), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [300479] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14666), 1, + ACTIONS(15965), 1, aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(16066), 1, sym__concat, - ACTIONS(14773), 1, - anon_sym_in, - ACTIONS(14777), 1, - aux_sym_heredoc_redirect_token1, - STATE(6101), 1, + STATE(6656), 1, aux_sym_concatenation_repeat1, - ACTIONS(14775), 3, + ACTIONS(1281), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300503] = 7, + [330387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14666), 1, - aux_sym_concatenation_token1, - ACTIONS(14668), 1, + ACTIONS(1368), 2, sym__concat, - ACTIONS(14779), 1, - anon_sym_in, - ACTIONS(14783), 1, aux_sym_heredoc_redirect_token1, - STATE(6099), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14781), 3, + ACTIONS(1366), 5, + anon_sym_in, 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, + aux_sym_concatenation_token1, + [330402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1254), 2, + ACTIONS(1360), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1252), 5, + ACTIONS(1358), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300555] = 3, - ACTIONS(71), 1, - sym_comment, - 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, - [300570] = 6, + [330417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14708), 1, - anon_sym_in, - ACTIONS(14712), 1, + ACTIONS(1312), 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(1310), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300591] = 3, + aux_sym_concatenation_token1, + [330432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(1352), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 5, + ACTIONS(1350), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300606] = 2, - 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, - [300619] = 2, + [330447] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1344), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324249,10 +354323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300632] = 2, + [330460] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(16068), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324260,170 +354334,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300645] = 6, + [330473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14773), 1, + ACTIONS(16003), 1, anon_sym_in, - ACTIONS(14777), 1, + ACTIONS(16007), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, + ACTIONS(16070), 1, sym__special_character, - STATE(6121), 1, + STATE(6700), 1, aux_sym__literal_repeat1, - ACTIONS(14775), 3, + ACTIONS(16005), 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, + [330494] = 2, 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(16072), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [330507] = 4, 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, - [300711] = 5, + ACTIONS(16076), 1, + anon_sym_COLON, + ACTIONS(16078), 1, + anon_sym_RBRACE3, + ACTIONS(16074), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [330524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 1, + ACTIONS(1304), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14787), 1, - sym__special_character, - STATE(6121), 1, - aux_sym__literal_repeat1, - ACTIONS(1316), 4, + ACTIONS(1302), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300730] = 3, + aux_sym_concatenation_token1, + [330539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1332), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 5, + ACTIONS(1330), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300745] = 3, + [330554] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [330567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1250), 2, + ACTIONS(1324), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1248), 5, + ACTIONS(1322), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300760] = 3, + [330582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 2, + ACTIONS(1344), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 5, + ACTIONS(1342), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300775] = 3, + [330597] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16080), 1, + anon_sym_COLON, + ACTIONS(16082), 1, + anon_sym_RBRACE3, + ACTIONS(16068), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [330614] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOLLAR, + ACTIONS(1356), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [330629] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [330642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1356), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, + ACTIONS(1354), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300790] = 3, + [330657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 2, + ACTIONS(1320), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 5, + ACTIONS(1318), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300805] = 3, + [330672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1348), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, + ACTIONS(1346), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300820] = 3, + [330687] = 3, 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(1346), 1, + anon_sym_DOLLAR, + ACTIONS(1348), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [330702] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [300848] = 2, + ACTIONS(1342), 1, + anon_sym_DOLLAR, + ACTIONS(1344), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [330717] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14790), 7, + ACTIONS(1348), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324431,124 +354539,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [300861] = 3, - ACTIONS(3), 1, + [330730] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1256), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [300876] = 3, + ACTIONS(1338), 1, + anon_sym_DOLLAR, + ACTIONS(1340), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [330745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1262), 2, + ACTIONS(1348), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1260), 5, + ACTIONS(1346), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300891] = 6, + [330760] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14747), 1, + ACTIONS(16034), 1, anon_sym_in, - ACTIONS(14751), 1, + ACTIONS(16038), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, + ACTIONS(16070), 1, sym__special_character, - STATE(6121), 1, + STATE(6700), 1, aux_sym__literal_repeat1, - ACTIONS(14749), 3, + ACTIONS(16036), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [300912] = 3, + [330781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1270), 2, + ACTIONS(1316), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1268), 5, + ACTIONS(1314), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300927] = 4, + [330796] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14796), 1, + ACTIONS(1352), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_COLON, - ACTIONS(14798), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + [330809] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [300944] = 6, + anon_sym_COLON, + anon_sym_RBRACE3, + [330822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14761), 1, + ACTIONS(15979), 1, anon_sym_in, - ACTIONS(14765), 1, + ACTIONS(15983), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14785), 1, + ACTIONS(16070), 1, sym__special_character, - STATE(6121), 1, + STATE(6700), 1, aux_sym__literal_repeat1, - ACTIONS(14763), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [300965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1284), 5, - anon_sym_in, + ACTIONS(15981), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [300980] = 3, + [330843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 2, + ACTIONS(1263), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1213), 5, + ACTIONS(1261), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [300995] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1274), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [301008] = 2, + [330858] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 7, + ACTIONS(1348), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -324556,17104 +354650,18258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [301021] = 3, + [330871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 2, + ACTIONS(1328), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 5, + ACTIONS(1326), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301036] = 3, + [330886] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 1, + anon_sym_DOLLAR, + ACTIONS(1348), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [330901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1290), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1288), 5, + ACTIONS(16060), 1, anon_sym_in, + ACTIONS(16064), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16070), 1, + sym__special_character, + STATE(6700), 1, + aux_sym__literal_repeat1, + ACTIONS(16062), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [301051] = 3, + [330922] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 1, + anon_sym_DOLLAR, + ACTIONS(1352), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [330937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1266), 2, + ACTIONS(1336), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1264), 5, + ACTIONS(1334), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301066] = 3, + [330952] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1358), 1, anon_sym_DOLLAR, - ACTIONS(1278), 6, + ACTIONS(1360), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [301081] = 3, + [330967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1282), 2, + ACTIONS(1364), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1280), 5, + ACTIONS(1362), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301096] = 3, + [330982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 2, + ACTIONS(1308), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 5, + ACTIONS(1306), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301111] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14802), 1, - anon_sym_COLON, - ACTIONS(14804), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [301128] = 3, - ACTIONS(71), 1, + [330997] = 5, + ACTIONS(3), 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(1372), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16084), 1, + sym__special_character, + STATE(6700), 1, + aux_sym__literal_repeat1, + ACTIONS(1370), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [331016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1340), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 5, + ACTIONS(1338), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [301158] = 3, + [331031] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1288), 1, - anon_sym_DOLLAR, - ACTIONS(1290), 6, - sym_heredoc_content, - sym_heredoc_end, + ACTIONS(16087), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(16072), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [331046] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13663), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(13665), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(13667), 1, + anon_sym_BQUOTE, + ACTIONS(13669), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3561), 2, + sym_expansion, + sym_command_substitution, + [331066] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10911), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10913), 1, anon_sym_BQUOTE, + ACTIONS(10915), 1, anon_sym_DOLLAR_BQUOTE, - [301173] = 2, + ACTIONS(16089), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1807), 2, + sym_expansion, + sym_command_substitution, + [331086] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14800), 7, + ACTIONS(16091), 1, + anon_sym_RBRACE3, + ACTIONS(16074), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [301186] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14808), 1, - anon_sym_RPAREN, - STATE(6303), 1, - aux_sym_concatenation_repeat1, - STATE(6614), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [301206] = 6, + [331100] = 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(9005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(9009), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(9011), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(16093), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2795), 2, + sym_expansion, + sym_command_substitution, + [331120] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14814), 1, + ACTIONS(10879), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10881), 1, + anon_sym_BQUOTE, + ACTIONS(10883), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16095), 1, anon_sym_DOLLAR_LPAREN, - STATE(1090), 2, + STATE(3666), 2, sym_expansion, sym_command_substitution, - [301246] = 6, + [331140] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(324), 1, + ACTIONS(717), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(328), 1, + ACTIONS(721), 1, anon_sym_BQUOTE, - ACTIONS(330), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14816), 1, + ACTIONS(16097), 1, anon_sym_DOLLAR_LPAREN, - STATE(1069), 2, + STATE(978), 2, sym_expansion, sym_command_substitution, - [301266] = 6, + [331160] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9696), 1, + ACTIONS(9430), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9698), 1, + ACTIONS(9432), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9434), 1, anon_sym_BQUOTE, - ACTIONS(9700), 1, + ACTIONS(9436), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14818), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1807), 2, + STATE(3499), 2, sym_expansion, sym_command_substitution, - [301286] = 3, + [331180] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16101), 1, + anon_sym_COMMA, + ACTIONS(16103), 1, + aux_sym_heredoc_redirect_token1, + STATE(5209), 1, + sym__c_terminator, + STATE(6873), 1, + aux_sym__for_body_repeat1, + ACTIONS(16099), 2, + anon_sym_SEMI, + anon_sym_AMP, + [331200] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16105), 1, + anon_sym_fi, + ACTIONS(16107), 1, + anon_sym_elif, + ACTIONS(16109), 1, + anon_sym_else, + STATE(8021), 1, + sym_else_clause, + STATE(6869), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [331220] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14820), 1, + ACTIONS(16111), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(16074), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301300] = 6, + [331234] = 7, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16113), 1, + anon_sym_SEMI, + ACTIONS(16115), 1, + anon_sym_do, + STATE(5126), 1, + sym_do_group, + STATE(5127), 1, + sym_compound_statement, + [331256] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16101), 1, + anon_sym_COMMA, + ACTIONS(16119), 1, + aux_sym_heredoc_redirect_token1, + STATE(4582), 1, + sym__c_terminator, + STATE(6873), 1, + aux_sym__for_body_repeat1, + ACTIONS(16117), 2, + anon_sym_SEMI, + anon_sym_AMP, + [331276] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(385), 1, + ACTIONS(8745), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(391), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5375), 1, + ACTIONS(8749), 1, anon_sym_BQUOTE, - ACTIONS(14822), 1, + ACTIONS(8751), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16121), 1, anon_sym_DOLLAR_LPAREN, - STATE(2525), 2, + STATE(4727), 2, sym_expansion, sym_command_substitution, - [301320] = 3, - ACTIONS(71), 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, + [331296] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(11003), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4084), 1, + ACTIONS(11005), 1, anon_sym_BQUOTE, - ACTIONS(4086), 1, + ACTIONS(11007), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14826), 1, + ACTIONS(16123), 1, anon_sym_DOLLAR_LPAREN, - STATE(2511), 2, + STATE(1331), 2, sym_expansion, sym_command_substitution, - [301354] = 3, - ACTIONS(71), 1, + [331316] = 3, + ACTIONS(3), 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, + ACTIONS(1273), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1271), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + sym__special_character, + [331330] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7518), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7520), 1, + ACTIONS(11065), 1, anon_sym_BQUOTE, - ACTIONS(7522), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14830), 1, + ACTIONS(16125), 1, anon_sym_DOLLAR_LPAREN, - STATE(6402), 2, + STATE(4674), 2, sym_expansion, sym_command_substitution, - [301388] = 6, + [331350] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(9506), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4558), 1, + ACTIONS(9510), 1, anon_sym_BQUOTE, - ACTIONS(4560), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14832), 1, + ACTIONS(16127), 1, anon_sym_DOLLAR_LPAREN, - STATE(2601), 2, + STATE(5726), 2, sym_expansion, sym_command_substitution, - [301408] = 6, + [331370] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8386), 1, + ACTIONS(11841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8390), 1, + ACTIONS(11843), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(11845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14834), 1, + ACTIONS(16129), 1, anon_sym_DOLLAR_LPAREN, - STATE(4393), 2, + STATE(6101), 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, + [331390] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8653), 1, + ACTIONS(9071), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8657), 1, + ACTIONS(9075), 1, anon_sym_BQUOTE, - ACTIONS(8659), 1, + ACTIONS(9077), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14838), 1, + ACTIONS(16131), 1, anon_sym_DOLLAR_LPAREN, - STATE(5144), 2, + STATE(1611), 2, sym_expansion, sym_command_substitution, - [301462] = 6, + [331410] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4645), 1, + ACTIONS(531), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, - anon_sym_BQUOTE, - ACTIONS(4651), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14840), 1, + ACTIONS(6002), 1, + anon_sym_BQUOTE, + ACTIONS(16133), 1, anon_sym_DOLLAR_LPAREN, - STATE(2755), 2, + STATE(2878), 2, sym_expansion, sym_command_substitution, - [301482] = 6, - ACTIONS(3), 1, + [331430] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(14846), 1, - aux_sym_heredoc_redirect_token1, - STATE(4520), 1, - sym__c_terminator, - STATE(6361), 1, - aux_sym__for_body_repeat1, - ACTIONS(14842), 2, - anon_sym_SEMI, - anon_sym_AMP, - [301502] = 6, + ACTIONS(16107), 1, + anon_sym_elif, + ACTIONS(16109), 1, + anon_sym_else, + ACTIONS(16135), 1, + anon_sym_fi, + STATE(7558), 1, + sym_else_clause, + STATE(6869), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [331450] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10502), 1, + ACTIONS(5262), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10504), 1, + ACTIONS(5266), 1, anon_sym_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(5268), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14848), 1, + ACTIONS(16137), 1, anon_sym_DOLLAR_LPAREN, - STATE(4395), 2, + STATE(3021), 2, sym_expansion, sym_command_substitution, - [301522] = 6, + [331470] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9912), 1, + ACTIONS(9235), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9916), 1, + ACTIONS(9237), 1, anon_sym_BQUOTE, - ACTIONS(9918), 1, + ACTIONS(9239), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14850), 1, + ACTIONS(16139), 1, anon_sym_DOLLAR_LPAREN, - STATE(2339), 2, + STATE(1636), 2, sym_expansion, sym_command_substitution, - [301542] = 3, + [331490] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(16141), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(16068), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301556] = 6, + [331504] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(667), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(16143), 1, + anon_sym_SEMI, + ACTIONS(16145), 1, + anon_sym_do, + STATE(5434), 1, + sym_do_group, + STATE(5435), 1, + sym_compound_statement, + [331526] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13734), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10156), 1, + ACTIONS(13736), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13738), 1, anon_sym_BQUOTE, - ACTIONS(10158), 1, + ACTIONS(13740), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14854), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1413), 2, + STATE(3194), 2, sym_expansion, sym_command_substitution, - [301576] = 3, + [331546] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(16147), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(16068), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301590] = 3, + [331560] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(416), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(420), 1, + anon_sym_BQUOTE, + ACTIONS(422), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16149), 1, + anon_sym_DOLLAR_LPAREN, + STATE(903), 2, + sym_expansion, + sym_command_substitution, + [331580] = 6, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16151), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1083), 2, + sym_expansion, + sym_command_substitution, + [331600] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(16153), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(16074), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301604] = 3, + [331614] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13302), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13304), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13306), 1, + anon_sym_BQUOTE, + ACTIONS(13308), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3516), 2, + sym_expansion, + sym_command_substitution, + [331634] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11759), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11761), 1, + anon_sym_BQUOTE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16155), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1809), 2, + sym_expansion, + sym_command_substitution, + [331654] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14856), 1, + ACTIONS(16157), 1, anon_sym_RBRACE3, - ACTIONS(14800), 5, + ACTIONS(16074), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301618] = 7, - 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, + [331668] = 3, 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(16159), 1, + anon_sym_RBRACE3, + ACTIONS(16068), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [331682] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12313), 1, + ACTIONS(10789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12315), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12317), 1, + ACTIONS(10791), 1, anon_sym_BQUOTE, - ACTIONS(12319), 1, + ACTIONS(10793), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3215), 2, + ACTIONS(16161), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1993), 2, sym_expansion, sym_command_substitution, - [301700] = 6, + [331702] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7952), 1, + ACTIONS(10727), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7956), 1, + ACTIONS(10729), 1, anon_sym_BQUOTE, - ACTIONS(7958), 1, + ACTIONS(10731), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14872), 1, + ACTIONS(16163), 1, anon_sym_DOLLAR_LPAREN, - STATE(4261), 2, + STATE(1172), 2, sym_expansion, sym_command_substitution, - [301720] = 6, + [331722] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(16107), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(16109), 1, anon_sym_else, - ACTIONS(14874), 1, + ACTIONS(16165), 1, anon_sym_fi, - STATE(7187), 1, + STATE(7817), 1, sym_else_clause, - STATE(6335), 2, + STATE(6869), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [301740] = 6, + [331742] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8617), 1, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16169), 1, + anon_sym_RPAREN, + STATE(6843), 1, + aux_sym_concatenation_repeat1, + STATE(7048), 1, + aux_sym_case_item_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + [331762] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9548), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8619), 1, + ACTIONS(9550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8621), 1, + ACTIONS(9552), 1, anon_sym_BQUOTE, - ACTIONS(8623), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3092), 2, + STATE(3522), 2, sym_expansion, sym_command_substitution, - [301760] = 6, + [331782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16101), 1, + anon_sym_COMMA, + ACTIONS(16175), 1, + aux_sym_heredoc_redirect_token1, + STATE(5145), 1, + sym__c_terminator, + STATE(6776), 1, + aux_sym__for_body_repeat1, + ACTIONS(16173), 2, + anon_sym_SEMI, + anon_sym_AMP, + [331802] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16101), 1, + anon_sym_COMMA, + ACTIONS(16179), 1, + aux_sym_heredoc_redirect_token1, + STATE(5206), 1, + sym__c_terminator, + STATE(6873), 1, + aux_sym__for_body_repeat1, + ACTIONS(16177), 2, + anon_sym_SEMI, + anon_sym_AMP, + [331822] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10052), 1, + ACTIONS(5792), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10054), 1, + ACTIONS(5796), 1, anon_sym_BQUOTE, - ACTIONS(10056), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14876), 1, + ACTIONS(16181), 1, anon_sym_DOLLAR_LPAREN, - STATE(904), 2, + STATE(3312), 2, sym_expansion, sym_command_substitution, - [301780] = 6, + [331842] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10306), 1, + ACTIONS(10955), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10308), 1, + ACTIONS(10957), 1, anon_sym_BQUOTE, - ACTIONS(10310), 1, + ACTIONS(10959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14878), 1, + ACTIONS(16183), 1, anon_sym_DOLLAR_LPAREN, - STATE(1856), 2, + STATE(2066), 2, sym_expansion, sym_command_substitution, - [301800] = 6, + [331862] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10448), 1, + ACTIONS(8821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10450), 1, + ACTIONS(8825), 1, anon_sym_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14880), 1, + ACTIONS(16185), 1, anon_sym_DOLLAR_LPAREN, - STATE(4384), 2, + STATE(1681), 2, sym_expansion, sym_command_substitution, - [301820] = 6, + [331882] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9844), 1, + ACTIONS(10681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9846), 1, + ACTIONS(10683), 1, anon_sym_BQUOTE, - ACTIONS(9848), 1, + ACTIONS(10685), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14882), 1, + ACTIONS(16187), 1, anon_sym_DOLLAR_LPAREN, - STATE(1758), 2, + STATE(968), 2, sym_expansion, sym_command_substitution, - [301840] = 6, + [331902] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7844), 1, + ACTIONS(362), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(16189), 1, + anon_sym_SEMI, + ACTIONS(16191), 1, + anon_sym_do, + STATE(5234), 1, + sym_do_group, + STATE(5368), 1, + sym_compound_statement, + [331924] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8711), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7848), 1, + ACTIONS(8713), 1, anon_sym_BQUOTE, - ACTIONS(7850), 1, + ACTIONS(8715), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14884), 1, + ACTIONS(16193), 1, anon_sym_DOLLAR_LPAREN, - STATE(2450), 2, + STATE(1711), 2, sym_expansion, sym_command_substitution, - [301860] = 6, + [331944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(16101), 1, anon_sym_COMMA, - ACTIONS(14888), 1, + ACTIONS(16197), 1, aux_sym_heredoc_redirect_token1, - STATE(4671), 1, + STATE(5151), 1, sym__c_terminator, - STATE(6227), 1, + STATE(6710), 1, aux_sym__for_body_repeat1, - ACTIONS(14886), 2, + ACTIONS(16195), 2, anon_sym_SEMI, anon_sym_AMP, - [301880] = 6, + [331964] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12093), 1, + ACTIONS(11941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12095), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12097), 1, + ACTIONS(11943), 1, anon_sym_BQUOTE, - ACTIONS(12099), 1, + ACTIONS(11945), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3117), 2, + ACTIONS(16199), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5021), 2, sym_expansion, sym_command_substitution, - [301900] = 6, + [331984] = 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, + ACTIONS(16107), 1, + anon_sym_elif, + ACTIONS(16109), 1, + anon_sym_else, + ACTIONS(16201), 1, + anon_sym_fi, + STATE(7629), 1, + sym_else_clause, + STATE(6869), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [332004] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1167), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1169), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6538), 1, + anon_sym_BQUOTE, + ACTIONS(16203), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2576), 2, + sym_expansion, + sym_command_substitution, + [332024] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(16157), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(16074), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [301934] = 6, + [332038] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8022), 1, + ACTIONS(5702), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8024), 1, + ACTIONS(5706), 1, anon_sym_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(5708), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14894), 1, + ACTIONS(16205), 1, anon_sym_DOLLAR_LPAREN, - STATE(1563), 2, + STATE(5865), 2, sym_expansion, sym_command_substitution, - [301954] = 6, + [332058] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10334), 1, + ACTIONS(10833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10338), 1, + ACTIONS(10835), 1, anon_sym_BQUOTE, - ACTIONS(10340), 1, + ACTIONS(10837), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14896), 1, + ACTIONS(16207), 1, anon_sym_DOLLAR_LPAREN, - STATE(6145), 2, + STATE(2005), 2, sym_expansion, sym_command_substitution, - [301974] = 7, + [332078] = 6, 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, + ACTIONS(10975), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10977), 1, + anon_sym_BQUOTE, + ACTIONS(10979), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16209), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1684), 2, + sym_expansion, + sym_command_substitution, + [332098] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10418), 1, + ACTIONS(16107), 1, + anon_sym_elif, + ACTIONS(16109), 1, + anon_sym_else, + ACTIONS(16211), 1, + anon_sym_fi, + STATE(7753), 1, + sym_else_clause, + STATE(6869), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [332118] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10420), 1, + ACTIONS(6092), 1, anon_sym_BQUOTE, - ACTIONS(10422), 1, + ACTIONS(6094), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14902), 1, + ACTIONS(16213), 1, anon_sym_DOLLAR_LPAREN, - STATE(4647), 2, + STATE(5934), 2, sym_expansion, sym_command_substitution, - [302016] = 6, + [332138] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9772), 1, + ACTIONS(16215), 1, + anon_sym_RBRACE3, + ACTIONS(16068), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [332152] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11305), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(11307), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(11309), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14904), 1, + ACTIONS(16217), 1, anon_sym_DOLLAR_LPAREN, - STATE(1025), 2, + STATE(2131), 2, sym_expansion, sym_command_substitution, - [302036] = 6, + [332172] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, - anon_sym_SLASH, - ACTIONS(14910), 1, + ACTIONS(16219), 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, + ACTIONS(16068), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [332186] = 6, ACTIONS(71), 1, sym_comment, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1225), 3, - anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [302072] = 6, + ACTIONS(12059), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12061), 1, + anon_sym_BQUOTE, + ACTIONS(12063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16221), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4798), 2, + sym_expansion, + sym_command_substitution, + [332206] = 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(11417), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11419), 1, + anon_sym_BQUOTE, + ACTIONS(11421), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16223), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4907), 2, + sym_expansion, + sym_command_substitution, + [332226] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(16107), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(16109), 1, anon_sym_else, - ACTIONS(14916), 1, + ACTIONS(16225), 1, anon_sym_fi, - STATE(7430), 1, + STATE(7697), 1, sym_else_clause, - STATE(6335), 2, + STATE(6869), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [302112] = 6, + [332246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1326), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [332260] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9940), 1, + ACTIONS(9037), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9942), 1, + ACTIONS(9039), 1, anon_sym_BQUOTE, - ACTIONS(9944), 1, + ACTIONS(9041), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14918), 1, + ACTIONS(16227), 1, anon_sym_DOLLAR_LPAREN, - STATE(1493), 2, + STATE(1799), 2, sym_expansion, sym_command_substitution, - [302132] = 6, + [332280] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(9159), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8088), 1, + ACTIONS(9163), 1, anon_sym_BQUOTE, - ACTIONS(8090), 1, + ACTIONS(9165), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14920), 1, + ACTIONS(16229), 1, anon_sym_DOLLAR_LPAREN, - STATE(5340), 2, + STATE(4823), 2, sym_expansion, sym_command_substitution, - [302152] = 6, + [332300] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9984), 1, + ACTIONS(10541), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9986), 1, + ACTIONS(10543), 1, anon_sym_BQUOTE, - ACTIONS(9988), 1, + ACTIONS(10545), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14922), 1, + ACTIONS(16231), 1, anon_sym_DOLLAR_LPAREN, - STATE(1152), 2, + STATE(1379), 2, sym_expansion, sym_command_substitution, - [302172] = 6, - ACTIONS(71), 1, + [332320] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14924), 1, + ACTIONS(1336), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1334), 4, anon_sym_RPAREN, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - STATE(6518), 1, - aux_sym_case_item_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - [302192] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14892), 1, + 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, - [302206] = 6, + [332334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, - anon_sym_COMMA, - ACTIONS(14928), 1, - aux_sym_heredoc_redirect_token1, - STATE(4660), 1, - sym__c_terminator, - STATE(6361), 1, - aux_sym__for_body_repeat1, - ACTIONS(14926), 2, - anon_sym_SEMI, - anon_sym_AMP, - [302226] = 6, + ACTIONS(1364), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1362), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [332348] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5402), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4855), 1, + ACTIONS(5406), 1, anon_sym_BQUOTE, - ACTIONS(4857), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14930), 1, + ACTIONS(16233), 1, anon_sym_DOLLAR_LPAREN, - STATE(5204), 2, + STATE(3106), 2, sym_expansion, sym_command_substitution, - [302246] = 3, + [332368] = 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(16167), 1, + anon_sym_PIPE, + ACTIONS(16235), 1, + anon_sym_RPAREN, + STATE(6894), 1, + aux_sym_concatenation_repeat1, + STATE(7096), 1, + aux_sym_case_item_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + [332388] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(4927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(4931), 1, anon_sym_BQUOTE, - ACTIONS(4825), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14934), 1, + ACTIONS(16237), 1, anon_sym_DOLLAR_LPAREN, - STATE(2796), 2, + STATE(2843), 2, sym_expansion, sym_command_substitution, - [302280] = 6, + [332408] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9734), 1, + ACTIONS(9109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9736), 1, + ACTIONS(9113), 1, anon_sym_BQUOTE, - ACTIONS(9738), 1, + ACTIONS(9115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14936), 1, + ACTIONS(16239), 1, anon_sym_DOLLAR_LPAREN, - STATE(1714), 2, + STATE(1797), 2, sym_expansion, sym_command_substitution, - [302300] = 6, + [332428] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16101), 1, + anon_sym_COMMA, + ACTIONS(16243), 1, + aux_sym_heredoc_redirect_token1, + STATE(4991), 1, + sym__c_terminator, + STATE(6873), 1, + aux_sym__for_body_repeat1, + ACTIONS(16241), 2, + anon_sym_SEMI, + anon_sym_AMP, + [332448] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(2669), 1, + ACTIONS(8951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2673), 1, + ACTIONS(8955), 1, anon_sym_BQUOTE, - ACTIONS(2675), 1, + ACTIONS(8957), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14938), 1, + ACTIONS(16245), 1, anon_sym_DOLLAR_LPAREN, - STATE(2272), 2, + STATE(1660), 2, sym_expansion, sym_command_substitution, - [302320] = 6, + [332468] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10800), 1, + ACTIONS(11219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10802), 1, + ACTIONS(11223), 1, anon_sym_BQUOTE, - ACTIONS(10804), 1, + ACTIONS(11225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14940), 1, + ACTIONS(16247), 1, anon_sym_DOLLAR_LPAREN, - STATE(1881), 2, + STATE(6670), 2, sym_expansion, sym_command_substitution, - [302340] = 6, + [332488] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10214), 1, + ACTIONS(10707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10216), 1, + ACTIONS(10709), 1, anon_sym_BQUOTE, - ACTIONS(10218), 1, + ACTIONS(10711), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14942), 1, + ACTIONS(16249), 1, anon_sym_DOLLAR_LPAREN, - STATE(4484), 2, + STATE(2207), 2, sym_expansion, sym_command_substitution, - [302360] = 6, + [332508] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16101), 1, + anon_sym_COMMA, + ACTIONS(16253), 1, + aux_sym_heredoc_redirect_token1, + STATE(4589), 1, + sym__c_terminator, + STATE(6714), 1, + aux_sym__for_body_repeat1, + ACTIONS(16251), 2, + anon_sym_SEMI, + anon_sym_AMP, + [332528] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16255), 1, + anon_sym_RPAREN, + STATE(6843), 1, + aux_sym_concatenation_repeat1, + STATE(7130), 1, + aux_sym_case_item_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + [332548] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5111), 1, + ACTIONS(5876), 1, anon_sym_BQUOTE, - ACTIONS(5113), 1, + ACTIONS(5878), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14944), 1, + ACTIONS(16257), 1, anon_sym_DOLLAR_LPAREN, - STATE(5260), 2, + STATE(5898), 2, sym_expansion, sym_command_substitution, - [302380] = 6, + [332568] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9884), 1, + ACTIONS(10929), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9886), 1, + ACTIONS(10931), 1, anon_sym_BQUOTE, - ACTIONS(9888), 1, + ACTIONS(10933), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14946), 1, + ACTIONS(16259), 1, anon_sym_DOLLAR_LPAREN, - STATE(3329), 2, + STATE(1536), 2, sym_expansion, sym_command_substitution, - [302400] = 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, - [302414] = 6, + [332588] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9796), 1, + ACTIONS(8883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9798), 1, + ACTIONS(8887), 1, anon_sym_BQUOTE, - ACTIONS(9800), 1, + ACTIONS(8889), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14948), 1, + ACTIONS(16261), 1, anon_sym_DOLLAR_LPAREN, - STATE(4747), 2, + STATE(5762), 2, sym_expansion, sym_command_substitution, - [302434] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(147), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(14950), 1, - anon_sym_SEMI, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5536), 1, - sym_do_group, - STATE(5544), 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, + [332608] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9638), 1, + ACTIONS(8915), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9640), 1, + ACTIONS(8917), 1, anon_sym_BQUOTE, - ACTIONS(9642), 1, + ACTIONS(8919), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14956), 1, + ACTIONS(16263), 1, anon_sym_DOLLAR_LPAREN, - STATE(1388), 2, + STATE(1821), 2, sym_expansion, sym_command_substitution, - [302496] = 6, + [332628] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8426), 1, + ACTIONS(8147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8430), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(8432), 1, + ACTIONS(8151), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2745), 2, + ACTIONS(16265), 1, + anon_sym_DOLLAR_LPAREN, + STATE(6950), 2, sym_expansion, sym_command_substitution, - [302516] = 6, + [332648] = 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(8619), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8623), 1, + anon_sym_BQUOTE, + ACTIONS(8625), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16267), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1282), 2, + sym_expansion, + sym_command_substitution, + [332668] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(16167), 1, anon_sym_PIPE, - ACTIONS(14960), 1, + ACTIONS(16269), 1, anon_sym_RPAREN, - STATE(6303), 1, + STATE(6894), 1, aux_sym_concatenation_repeat1, - STATE(6458), 1, + STATE(7085), 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, + ACTIONS(16171), 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, + [332688] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12475), 1, + ACTIONS(5308), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12479), 1, + ACTIONS(5312), 1, anon_sym_BQUOTE, - ACTIONS(12481), 1, + ACTIONS(5314), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2882), 2, + ACTIONS(16271), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5648), 2, sym_expansion, sym_command_substitution, - [302610] = 6, - ACTIONS(3), 1, + [332708] = 3, + ACTIONS(71), 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, + ACTIONS(16157), 1, + anon_sym_RBRACE3, + ACTIONS(16074), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [332722] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10378), 1, + ACTIONS(833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10380), 1, + ACTIONS(837), 1, anon_sym_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(839), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14972), 1, + ACTIONS(16273), 1, anon_sym_DOLLAR_LPAREN, - STATE(1540), 2, + STATE(1227), 2, sym_expansion, sym_command_substitution, - [302650] = 6, + [332742] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14864), 1, + ACTIONS(16107), 1, anon_sym_elif, - ACTIONS(14866), 1, + ACTIONS(16109), 1, anon_sym_else, - ACTIONS(14974), 1, + ACTIONS(16275), 1, anon_sym_fi, - STATE(6734), 1, + STATE(7663), 1, sym_else_clause, - STATE(6335), 2, + STATE(6869), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [302670] = 6, + [332762] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7882), 1, + ACTIONS(9207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7886), 1, + ACTIONS(9209), 1, anon_sym_BQUOTE, - ACTIONS(7888), 1, + ACTIONS(9211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14976), 1, + ACTIONS(16277), 1, anon_sym_DOLLAR_LPAREN, - STATE(1650), 2, + STATE(1288), 2, sym_expansion, sym_command_substitution, - [302690] = 6, + [332782] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10246), 1, + ACTIONS(11871), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10248), 1, + ACTIONS(11873), 1, anon_sym_BQUOTE, - ACTIONS(10250), 1, + ACTIONS(11875), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14978), 1, + ACTIONS(16279), 1, anon_sym_DOLLAR_LPAREN, - STATE(4248), 2, + STATE(2160), 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, - 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, + [332802] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10614), 1, + ACTIONS(10855), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10616), 1, + ACTIONS(10857), 1, anon_sym_BQUOTE, - ACTIONS(10618), 1, + ACTIONS(10859), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14986), 1, + ACTIONS(16281), 1, anon_sym_DOLLAR_LPAREN, - STATE(5546), 2, + STATE(5242), 2, sym_expansion, sym_command_substitution, - [302764] = 6, + [332822] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1121), 1, + ACTIONS(8783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1123), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5755), 1, + ACTIONS(8787), 1, anon_sym_BQUOTE, - ACTIONS(14988), 1, + ACTIONS(8789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(16283), 1, anon_sym_DOLLAR_LPAREN, - STATE(2236), 2, + STATE(4555), 2, sym_expansion, sym_command_substitution, - [302784] = 6, + [332842] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16107), 1, + anon_sym_elif, + ACTIONS(16109), 1, + anon_sym_else, + ACTIONS(16285), 1, + anon_sym_fi, + STATE(7722), 1, + sym_else_clause, + STATE(6869), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [332862] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10528), 1, + ACTIONS(10603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10530), 1, + ACTIONS(10605), 1, anon_sym_BQUOTE, - ACTIONS(10532), 1, + ACTIONS(10607), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14990), 1, + ACTIONS(16287), 1, anon_sym_DOLLAR_LPAREN, - STATE(4177), 2, + STATE(1435), 2, sym_expansion, sym_command_substitution, - [302804] = 6, + [332882] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8585), 1, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16289), 1, + anon_sym_RPAREN, + STATE(6843), 1, + aux_sym_concatenation_repeat1, + STATE(7128), 1, + aux_sym_case_item_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + [332902] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16291), 1, + anon_sym_RPAREN, + STATE(6894), 1, + aux_sym_concatenation_repeat1, + STATE(7058), 1, + aux_sym_case_item_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + [332922] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8683), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8685), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3177), 2, + ACTIONS(16293), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3772), 2, sym_expansion, sym_command_substitution, - [302824] = 6, + [332942] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8130), 1, + ACTIONS(1109), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8134), 1, + ACTIONS(1113), 1, anon_sym_BQUOTE, - ACTIONS(8136), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14992), 1, + ACTIONS(16295), 1, anon_sym_DOLLAR_LPAREN, - STATE(1168), 2, + STATE(2470), 2, sym_expansion, sym_command_substitution, - [302844] = 3, + [332962] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14994), 1, + ACTIONS(16297), 1, anon_sym_RBRACE3, - ACTIONS(14794), 5, + ACTIONS(16074), 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, + [332976] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5335), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5339), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15000), 1, + ACTIONS(16299), 1, anon_sym_DOLLAR_LPAREN, - STATE(5450), 2, + STATE(2056), 2, sym_expansion, sym_command_substitution, - [302898] = 6, + [332996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14844), 1, + ACTIONS(16101), 1, anon_sym_COMMA, - ACTIONS(15004), 1, + ACTIONS(16303), 1, aux_sym_heredoc_redirect_token1, - STATE(4644), 1, + STATE(5098), 1, sym__c_terminator, - STATE(6168), 1, + STATE(6743), 1, aux_sym__for_body_repeat1, - ACTIONS(15002), 2, + ACTIONS(16301), 2, anon_sym_SEMI, anon_sym_AMP, - [302918] = 6, + [333016] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(717), 1, + ACTIONS(10753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(721), 1, + ACTIONS(10755), 1, anon_sym_BQUOTE, - ACTIONS(723), 1, + ACTIONS(10757), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15006), 1, + ACTIONS(16305), 1, anon_sym_DOLLAR_LPAREN, - STATE(914), 2, + STATE(1961), 2, sym_expansion, sym_command_substitution, - [302938] = 6, + [333036] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(123), 1, + ACTIONS(10655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, + ACTIONS(10659), 1, anon_sym_BQUOTE, - ACTIONS(129), 1, + ACTIONS(10661), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15008), 1, + ACTIONS(16307), 1, anon_sym_DOLLAR_LPAREN, - STATE(477), 2, + STATE(2718), 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, + [333056] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(16167), 1, anon_sym_PIPE, - ACTIONS(15010), 1, + ACTIONS(16309), 1, anon_sym_RPAREN, - STATE(6383), 1, + STATE(6894), 1, aux_sym_concatenation_repeat1, - STATE(6575), 1, + STATE(7152), 1, aux_sym_case_item_repeat1, - ACTIONS(14810), 2, + ACTIONS(16171), 2, sym__concat, aux_sym_concatenation_token1, - [302992] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14864), 1, - anon_sym_elif, - ACTIONS(14866), 1, - anon_sym_else, - ACTIONS(15012), 1, - anon_sym_fi, - STATE(7030), 1, - sym_else_clause, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [303012] = 6, + [333076] = 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, + ACTIONS(16311), 1, + anon_sym_SLASH, + ACTIONS(16315), 1, + anon_sym_RBRACE3, + ACTIONS(16317), 1, + sym__expansion_word, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 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, + [333096] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14676), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14678), 1, - anon_sym_BQUOTE, - ACTIONS(14680), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14704), 1, - anon_sym_DOLLAR_LBRACE, - STATE(6140), 2, - sym_expansion, - sym_command_substitution, - [303066] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8274), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8276), 1, - anon_sym_BQUOTE, - ACTIONS(8278), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(15018), 1, + ACTIONS(9321), 1, anon_sym_DOLLAR_LPAREN, - STATE(1333), 2, - sym_expansion, - sym_command_substitution, - [303086] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5232), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5236), 1, + ACTIONS(9323), 1, anon_sym_BQUOTE, - ACTIONS(5238), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15020), 1, - anon_sym_DOLLAR_LPAREN, - STATE(5290), 2, + STATE(3069), 2, sym_expansion, sym_command_substitution, - [303106] = 3, + [333116] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15022), 1, - anon_sym_RBRACE3, - ACTIONS(14800), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(16319), 1, anon_sym_SLASH, - anon_sym_PERCENT, - [303120] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8316), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8320), 1, - anon_sym_BQUOTE, - ACTIONS(8322), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(15024), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1495), 2, - sym_expansion, - sym_command_substitution, - [303140] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(461), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, - anon_sym_BQUOTE, - ACTIONS(467), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(15026), 1, - anon_sym_DOLLAR_LPAREN, - STATE(812), 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, + ACTIONS(16321), 1, anon_sym_RBRACE3, - [303174] = 6, + ACTIONS(16323), 1, + sym__expansion_word, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + [333136] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8204), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8208), 1, + ACTIONS(207), 1, anon_sym_BQUOTE, - ACTIONS(8210), 1, + ACTIONS(209), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15028), 1, + ACTIONS(16325), 1, anon_sym_DOLLAR_LPAREN, - STATE(4241), 2, + STATE(546), 2, sym_expansion, sym_command_substitution, - [303194] = 6, + [333156] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8170), 1, + ACTIONS(11511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8172), 1, + ACTIONS(11513), 1, anon_sym_BQUOTE, - ACTIONS(8174), 1, + ACTIONS(11515), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15030), 1, + ACTIONS(16327), 1, anon_sym_DOLLAR_LPAREN, - STATE(1173), 2, + STATE(4637), 2, sym_expansion, sym_command_substitution, - [303214] = 6, + [333176] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9716), 1, + ACTIONS(12175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9718), 1, + ACTIONS(12177), 1, anon_sym_BQUOTE, - ACTIONS(9720), 1, + ACTIONS(12179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15032), 1, + ACTIONS(16329), 1, anon_sym_DOLLAR_LPAREN, - STATE(2021), 2, + STATE(1633), 2, sym_expansion, sym_command_substitution, - [303234] = 6, + [333196] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1055), 1, + ACTIONS(123), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(127), 1, anon_sym_BQUOTE, - ACTIONS(1061), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15034), 1, + ACTIONS(16331), 1, anon_sym_DOLLAR_LPAREN, - STATE(1985), 2, + STATE(508), 2, sym_expansion, sym_command_substitution, - [303254] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACE, + [333216] = 3, 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, + ACTIONS(16333), 1, + anon_sym_RBRACE3, + ACTIONS(16074), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [333230] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(9658), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, - anon_sym_BQUOTE, - ACTIONS(9662), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(15040), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1262), 2, - sym_expansion, - sym_command_substitution, - [303296] = 6, + ACTIONS(16335), 1, + anon_sym_RBRACE3, + ACTIONS(16068), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [333244] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8242), 1, + ACTIONS(324), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8246), 1, + ACTIONS(328), 1, anon_sym_BQUOTE, - ACTIONS(8248), 1, + ACTIONS(330), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15042), 1, + ACTIONS(16337), 1, anon_sym_DOLLAR_LPAREN, - STATE(1439), 2, + STATE(1225), 2, sym_expansion, sym_command_substitution, - [303316] = 6, + [333264] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7990), 1, + ACTIONS(4515), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7994), 1, + ACTIONS(4519), 1, anon_sym_BQUOTE, - ACTIONS(7996), 1, + ACTIONS(4521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15044), 1, + ACTIONS(16339), 1, anon_sym_DOLLAR_LPAREN, - STATE(3406), 2, + STATE(2897), 2, sym_expansion, sym_command_substitution, - [303336] = 3, + [333284] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15046), 1, + ACTIONS(16297), 1, anon_sym_RBRACE3, - ACTIONS(14800), 5, + ACTIONS(16074), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [303350] = 6, + [333298] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9752), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9754), 1, + ACTIONS(10773), 1, anon_sym_BQUOTE, - ACTIONS(9756), 1, + ACTIONS(10775), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15048), 1, + ACTIONS(16341), 1, anon_sym_DOLLAR_LPAREN, - STATE(1554), 2, + STATE(2448), 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, + [333318] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9814), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9816), 1, + ACTIONS(11117), 1, anon_sym_BQUOTE, - ACTIONS(9818), 1, + ACTIONS(11119), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15054), 1, + ACTIONS(16343), 1, anon_sym_DOLLAR_LPAREN, - STATE(2008), 2, + STATE(4603), 2, sym_expansion, sym_command_substitution, - [303410] = 6, + [333338] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7918), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, + ACTIONS(15955), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(15957), 1, anon_sym_BQUOTE, - ACTIONS(7922), 1, + ACTIONS(15959), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15056), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1633), 2, + ACTIONS(15969), 1, + anon_sym_DOLLAR_LBRACE, + STATE(6688), 2, sym_expansion, sym_command_substitution, - [303430] = 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, + [333358] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4339), 1, + ACTIONS(5482), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4343), 1, + ACTIONS(5486), 1, anon_sym_BQUOTE, - ACTIONS(4345), 1, + ACTIONS(5488), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15060), 1, + ACTIONS(16345), 1, anon_sym_DOLLAR_LPAREN, - STATE(2463), 2, + STATE(3070), 2, sym_expansion, sym_command_substitution, - [303470] = 3, + [333378] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16347), 1, + anon_sym_SLASH, + ACTIONS(16349), 1, + anon_sym_RBRACE3, + ACTIONS(16351), 1, + sym__expansion_word, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + [333398] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16353), 1, + anon_sym_RPAREN, + STATE(6843), 1, + aux_sym_concatenation_repeat1, + STATE(7056), 1, + aux_sym_case_item_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + [333418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15064), 2, + ACTIONS(16357), 2, sym_regex, aux_sym__expansion_regex_token1, - ACTIONS(15062), 4, + ACTIONS(16355), 4, anon_sym_RPAREN, anon_sym_DQUOTE, sym_raw_string, anon_sym_RBRACE3, - [303484] = 6, + [333432] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6843), 1, + aux_sym_concatenation_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1273), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [333448] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16297), 1, + anon_sym_RBRACE3, + ACTIONS(16074), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [333462] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(10815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5031), 1, + ACTIONS(10817), 1, anon_sym_BQUOTE, - ACTIONS(5033), 1, + ACTIONS(10819), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15066), 1, + ACTIONS(16359), 1, anon_sym_DOLLAR_LPAREN, - STATE(2860), 2, + STATE(2499), 2, sym_expansion, sym_command_substitution, - [303504] = 6, + [333482] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(203), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(2808), 1, anon_sym_BQUOTE, - ACTIONS(209), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(15068), 1, + ACTIONS(16361), 1, anon_sym_DOLLAR_LPAREN, - STATE(506), 2, + STATE(2556), 2, sym_expansion, sym_command_substitution, - [303524] = 5, + [333502] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(147), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(163), 1, + anon_sym_LBRACE, + ACTIONS(16363), 1, + anon_sym_SEMI, + ACTIONS(16365), 1, + anon_sym_do, + STATE(6037), 1, + sym_compound_statement, + STATE(6053), 1, + sym_do_group, + [333524] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(6018), 1, + sym__heredoc_body, + STATE(6019), 1, + sym__simple_heredoc_body, + STATE(7618), 1, + sym_heredoc_body, + [333543] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(8041), 1, + sym_heredoc_body, + STATE(5101), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [333560] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + STATE(6931), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [333575] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(5287), 1, + sym__heredoc_body, + STATE(5288), 1, + sym__simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + [333594] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(6107), 1, + sym__heredoc_body, + STATE(6108), 1, + sym__simple_heredoc_body, + STATE(7659), 1, + sym_heredoc_body, + [333613] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(6109), 1, + sym__heredoc_body, + STATE(6110), 1, + sym__simple_heredoc_body, + STATE(7659), 1, + sym_heredoc_body, + [333632] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + STATE(6931), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [333647] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(7659), 1, + sym_heredoc_body, + STATE(6113), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [333664] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(6038), 1, + sym__simple_heredoc_body, + STATE(6079), 1, + sym__heredoc_body, + STATE(7659), 1, + sym_heredoc_body, + [333683] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(5342), 1, + sym__heredoc_body, + STATE(5343), 1, + sym__simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + [333702] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16171), 1, + aux_sym_concatenation_token1, + ACTIONS(16381), 1, + sym__concat, + STATE(6928), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1283), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [333719] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(6043), 1, + sym__heredoc_body, + STATE(6045), 1, + sym__simple_heredoc_body, + STATE(7659), 1, + sym_heredoc_body, + [333738] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(5148), 1, + sym__heredoc_body, + STATE(5150), 1, + sym__simple_heredoc_body, + STATE(8041), 1, + sym_heredoc_body, + [333757] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(5039), 1, + sym__heredoc_body, + STATE(5050), 1, + sym__simple_heredoc_body, + STATE(8041), 1, + sym_heredoc_body, + [333776] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(7618), 1, + sym_heredoc_body, + STATE(6003), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [333793] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(5512), 1, + sym__heredoc_body, + STATE(5513), 1, + sym__simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + [333812] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16385), 1, + sym__concat, + ACTIONS(7458), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [333825] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(5190), 1, + sym__heredoc_body, + STATE(5191), 1, + sym__simple_heredoc_body, + STATE(8041), 1, + sym_heredoc_body, + [333844] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(5515), 1, + sym__heredoc_body, + STATE(5516), 1, + sym__simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + [333863] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(147), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(163), 1, + anon_sym_LBRACE, + ACTIONS(16365), 1, + anon_sym_do, + STATE(6066), 1, + sym_do_group, + STATE(6067), 1, + sym_compound_statement, + [333882] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16387), 1, + sym__concat, + ACTIONS(7464), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [333895] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15070), 1, + ACTIONS(1348), 5, + sym__concat, + sym__expansion_word, anon_sym_SLASH, - ACTIONS(15072), 1, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6309), 1, + [333906] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + STATE(5498), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [333923] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + STATE(5312), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [333940] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6857), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(16389), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(16391), 2, sym__concat, aux_sym_concatenation_token1, - [303541] = 3, + [333955] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + STATE(5517), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [333972] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + STATE(6931), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [333987] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16394), 1, + anon_sym_in, + ACTIONS(16398), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16396), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [334002] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(5520), 1, + sym__heredoc_body, + STATE(5521), 1, + sym__simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + [334021] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(5291), 1, + sym__heredoc_body, + STATE(5297), 1, + sym__simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + [334040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15985), 1, + anon_sym_in, + ACTIONS(15989), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15987), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [334055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16400), 1, + anon_sym_in, + ACTIONS(16404), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16402), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [334070] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16169), 1, + anon_sym_RPAREN, + ACTIONS(16406), 1, + sym__special_character, + STATE(6945), 1, + aux_sym__literal_repeat1, + STATE(7093), 1, + aux_sym_case_item_repeat1, + [334089] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(8041), 1, + sym_heredoc_body, + STATE(5135), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334106] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(7618), 1, + sym_heredoc_body, + STATE(6005), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334123] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(5499), 1, + sym__heredoc_body, + STATE(5503), 1, + sym__simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + [334142] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16410), 1, + anon_sym_elif, + ACTIONS(16408), 2, + anon_sym_fi, + anon_sym_else, + STATE(6869), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [334157] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15074), 1, + ACTIONS(16413), 1, + anon_sym_SLASH, + ACTIONS(16415), 1, + anon_sym_RBRACE3, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, sym__concat, - ACTIONS(6651), 4, + aux_sym_concatenation_token1, + [334174] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8639), 1, + anon_sym_RBRACE3, + STATE(6913), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [334189] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16417), 1, + anon_sym_RBRACE3, + STATE(6931), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, + [334204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16421), 1, + anon_sym_COMMA, + ACTIONS(16424), 1, + aux_sym_heredoc_redirect_token1, + STATE(6873), 1, + aux_sym__for_body_repeat1, + ACTIONS(16419), 2, + anon_sym_SEMI, + anon_sym_AMP, + [334221] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16311), 1, + anon_sym_SLASH, + ACTIONS(16315), 1, anon_sym_RBRACE3, - [303554] = 4, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + [334238] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(16426), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6931), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303569] = 6, + [334253] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(7618), 1, + sym_heredoc_body, + STATE(6008), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334270] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + STATE(5298), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334287] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + STATE(5482), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334304] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(5313), 1, + sym__heredoc_body, + STATE(5314), 1, + sym__simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + [334323] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(16167), 1, anon_sym_PIPE, - ACTIONS(14890), 1, + ACTIONS(16289), 1, anon_sym_RPAREN, - ACTIONS(15078), 1, + ACTIONS(16406), 1, sym__special_character, - STATE(6394), 1, + STATE(6945), 1, aux_sym__literal_repeat1, - STATE(6622), 1, + STATE(7089), 1, aux_sym_case_item_repeat1, - [303588] = 5, + [334342] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(7659), 1, + sym_heredoc_body, + STATE(6114), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334359] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(362), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(384), 1, + anon_sym_LBRACE, + ACTIONS(16191), 1, + anon_sym_do, + STATE(5319), 1, + sym_do_group, + STATE(5355), 1, + sym_compound_statement, + [334378] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + STATE(6931), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [334393] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(6009), 1, + sym__heredoc_body, + STATE(6010), 1, + sym__simple_heredoc_body, + STATE(7618), 1, + sym_heredoc_body, + [334412] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(5428), 1, + sym__heredoc_body, + STATE(5429), 1, + sym__simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + [334431] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16428), 1, + sym__concat, + ACTIONS(7428), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [334444] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(6011), 1, + sym__heredoc_body, + STATE(6012), 1, + sym__simple_heredoc_body, + STATE(7618), 1, + sym_heredoc_body, + [334463] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(7618), 1, + sym_heredoc_body, + STATE(6013), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334480] = 6, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16115), 1, + anon_sym_do, + STATE(5121), 1, + sym_do_group, + STATE(5137), 1, + sym_compound_statement, + [334499] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(7618), 1, + sym_heredoc_body, + STATE(6015), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334516] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(6016), 1, + sym__heredoc_body, + STATE(6017), 1, + sym__simple_heredoc_body, + STATE(7618), 1, + sym_heredoc_body, + [334535] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16430), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(16087), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [334548] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(7618), 1, + sym_heredoc_body, + STATE(6020), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334565] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16171), 1, + aux_sym_concatenation_token1, + ACTIONS(16432), 1, + sym__concat, + STATE(6928), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1277), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [334582] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(6021), 1, + sym__heredoc_body, + STATE(6022), 1, + sym__simple_heredoc_body, + STATE(7618), 1, + sym_heredoc_body, + [334601] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [334612] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16434), 1, + anon_sym_SLASH, + ACTIONS(16436), 1, + anon_sym_RBRACE3, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + [334629] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16347), 1, + anon_sym_SLASH, + ACTIONS(16349), 1, + anon_sym_RBRACE3, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + [334646] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16367), 1, + sym_simple_heredoc_body, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + STATE(6023), 1, + sym__heredoc_body, + STATE(6024), 1, + sym__simple_heredoc_body, + STATE(7618), 1, + sym_heredoc_body, + [334665] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + STATE(5491), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334682] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + STATE(5426), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334699] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, + sym_simple_heredoc_body, + STATE(5507), 1, + sym__heredoc_body, + STATE(5508), 1, + sym__simple_heredoc_body, + STATE(7847), 1, + sym_heredoc_body, + [334718] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(5141), 1, + sym__heredoc_body, + STATE(5144), 1, + sym__simple_heredoc_body, + STATE(8041), 1, + sym_heredoc_body, + [334737] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(8041), 1, + sym_heredoc_body, + STATE(5168), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334754] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16438), 1, + anon_sym_SLASH, + ACTIONS(16440), 1, + anon_sym_RBRACE3, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + [334771] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16319), 1, + anon_sym_SLASH, + ACTIONS(16321), 1, + anon_sym_RBRACE3, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + [334788] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + STATE(5286), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334805] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + STATE(5256), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334822] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + STATE(6931), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [334837] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [334848] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16383), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, + STATE(7847), 1, + sym_heredoc_body, + STATE(5510), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [334865] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(7267), 1, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(7659), 1, sym_heredoc_body, - STATE(4962), 2, + STATE(6073), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303605] = 5, + [334882] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16442), 1, + anon_sym_RBRACE3, + STATE(6931), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8407), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [334897] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16255), 1, + anon_sym_RPAREN, + ACTIONS(16406), 1, + sym__special_character, + STATE(6945), 1, + aux_sym__literal_repeat1, + STATE(7133), 1, + aux_sym_case_item_repeat1, + [334916] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(7267), 1, - sym_heredoc_body, - STATE(4990), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [303622] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15080), 1, + ACTIONS(16371), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(7267), 1, + STATE(8041), 1, sym_heredoc_body, - STATE(5013), 2, + STATE(5172), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303639] = 6, + [334933] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(4944), 1, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(5176), 1, sym__heredoc_body, - STATE(4948), 1, + STATE(5178), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(8041), 1, sym_heredoc_body, - [303658] = 6, + [334952] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(4955), 1, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(5332), 1, sym__heredoc_body, - STATE(4959), 1, + STATE(5335), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(7919), 1, sym_heredoc_body, - [303677] = 5, + [334971] = 6, 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(16167), 1, + anon_sym_PIPE, + ACTIONS(16353), 1, + anon_sym_RPAREN, + ACTIONS(16406), 1, + sym__special_character, + STATE(6945), 1, + aux_sym__literal_repeat1, + STATE(7114), 1, + aux_sym_case_item_repeat1, + [334990] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(7267), 1, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(7659), 1, sym_heredoc_body, - STATE(4977), 2, + STATE(6087), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303711] = 6, + [335007] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(4941), 1, - sym__heredoc_body, - STATE(4985), 1, - sym__simple_heredoc_body, - STATE(7267), 1, - sym_heredoc_body, - [303730] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15080), 1, + ACTIONS(16371), 1, sym_simple_heredoc_body, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - STATE(4986), 1, + STATE(5179), 1, sym__heredoc_body, - STATE(4994), 1, + STATE(5180), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(8041), 1, sym_heredoc_body, - [303749] = 5, + [335026] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(7267), 1, + ACTIONS(16371), 1, + sym_simple_heredoc_body, + STATE(8041), 1, sym_heredoc_body, - STATE(4998), 2, + STATE(5189), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303766] = 6, + [335043] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(5002), 1, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(6089), 1, sym__heredoc_body, - STATE(5015), 1, + STATE(6090), 1, sym__simple_heredoc_body, - STATE(7267), 1, + STATE(7659), 1, sym_heredoc_body, - [303785] = 6, + [335062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16046), 1, + anon_sym_in, + ACTIONS(16050), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16048), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [335077] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(15080), 1, - sym_simple_heredoc_body, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - STATE(4942), 1, - sym__simple_heredoc_body, - STATE(4981), 1, + ACTIONS(16377), 1, + sym_simple_heredoc_body, + STATE(6093), 1, sym__heredoc_body, - STATE(7267), 1, + STATE(6094), 1, + sym__simple_heredoc_body, + STATE(7659), 1, sym_heredoc_body, - [303804] = 6, + [335096] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(16377), 1, sym_simple_heredoc_body, - STATE(5478), 1, + STATE(7659), 1, + sym_heredoc_body, + STATE(6095), 2, sym__heredoc_body, - STATE(5479), 1, sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [303823] = 5, + [335113] = 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, + STATE(6843), 1, + aux_sym_concatenation_repeat1, + ACTIONS(16171), 2, sym__concat, aux_sym_concatenation_token1, - [303840] = 5, + ACTIONS(16444), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [335128] = 4, 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, + STATE(6894), 1, + aux_sym_concatenation_repeat1, + ACTIONS(16171), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(16446), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [335143] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6928), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1263), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(16448), 2, + sym__concat, + aux_sym_concatenation_token1, + [335158] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(667), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(685), 1, + anon_sym_LBRACE, + ACTIONS(16145), 1, + anon_sym_do, + STATE(5446), 1, + sym_do_group, + STATE(5447), 1, + sym_compound_statement, + [335177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16451), 1, + anon_sym_in, + ACTIONS(16455), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16453), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [335192] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(16457), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6931), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(16459), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303872] = 4, + [335207] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(8929), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6839), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303887] = 4, + [335222] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(8395), 1, anon_sym_RBRACE3, - STATE(6379), 1, + STATE(6835), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [303902] = 5, + [335237] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(16383), 1, sym_simple_heredoc_body, - STATE(6814), 1, + STATE(7847), 1, sym_heredoc_body, - STATE(5455), 2, + STATE(5511), 2, sym__heredoc_body, sym__simple_heredoc_body, - [303919] = 6, - ACTIONS(71), 1, + [335254] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15082), 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, - sym_heredoc_body, - [303938] = 6, + ACTIONS(15973), 1, + anon_sym_in, + ACTIONS(15977), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15975), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [335269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16009), 1, + anon_sym_in, + ACTIONS(16013), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16011), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [335284] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(16377), 1, sym_simple_heredoc_body, - STATE(5487), 1, + STATE(7659), 1, + sym_heredoc_body, + STATE(6105), 2, sym__heredoc_body, - STATE(5488), 1, sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [303957] = 6, - ACTIONS(71), 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, + [335301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14779), 1, + ACTIONS(16462), 1, anon_sym_in, - ACTIONS(14783), 1, + ACTIONS(16466), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14781), 3, + ACTIONS(16464), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [303991] = 5, + [335316] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(16369), 1, sym__heredoc_body_beginning, - ACTIONS(15084), 1, + ACTIONS(16371), 1, sym_simple_heredoc_body, - STATE(6814), 1, + STATE(8041), 1, sym_heredoc_body, - STATE(5459), 2, + STATE(5158), 2, sym__heredoc_body, sym__simple_heredoc_body, - [304008] = 5, + [335333] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - aux_sym_concatenation_token1, - ACTIONS(15094), 1, - sym__concat, - STATE(6324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1209), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [304025] = 2, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(5212), 1, + sym__simple_heredoc_body, + STATE(5317), 1, + sym__heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + [335352] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [304036] = 4, + ACTIONS(16369), 1, + sym__heredoc_body_beginning, + ACTIONS(16375), 1, + sym_simple_heredoc_body, + STATE(7919), 1, + sym_heredoc_body, + STATE(5280), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [335369] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7740), 1, + ACTIONS(16442), 1, anon_sym_RBRACE3, - STATE(6294), 1, + STATE(6931), 1, aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(8407), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304051] = 3, + [335384] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6857), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(16468), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [335399] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15096), 1, + ACTIONS(16470), 1, sym__concat, - ACTIONS(6703), 4, + ACTIONS(7437), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [304064] = 6, + [335412] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16472), 1, + sym__special_character, + STATE(6945), 1, + aux_sym__literal_repeat1, + ACTIONS(1372), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [335426] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16475), 1, + anon_sym_esac, + ACTIONS(16477), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16479), 1, + anon_sym_SEMI_AMP, + ACTIONS(16481), 1, + anon_sym_SEMI_SEMI_AMP, + [335442] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335452] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [335462] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335472] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(1332), 4, + sym__concat, anon_sym_PIPE, - ACTIONS(14914), 1, anon_sym_RPAREN, - ACTIONS(15078), 1, + aux_sym_concatenation_token1, + [335482] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [335492] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16483), 1, sym__special_character, - STATE(6394), 1, + STATE(6952), 1, aux_sym__literal_repeat1, - STATE(6502), 1, - aux_sym_case_item_repeat1, - [304083] = 6, + ACTIONS(1372), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [335506] = 2, 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, + ACTIONS(1336), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [335516] = 2, ACTIONS(71), 1, sym_comment, - STATE(6314), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(1340), 4, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(15098), 2, anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [304117] = 5, + [335526] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15100), 1, + ACTIONS(1364), 4, + sym__concat, anon_sym_SLASH, - ACTIONS(15102), 1, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [335536] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16486), 1, + anon_sym_esac, + ACTIONS(16488), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16490), 1, + anon_sym_SEMI_AMP, + ACTIONS(16492), 1, + anon_sym_SEMI_SEMI_AMP, + [335552] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16494), 1, anon_sym_RBRACE3, - STATE(6309), 1, + STATE(6943), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + ACTIONS(16313), 2, sym__concat, aux_sym_concatenation_token1, - [304134] = 4, + [335566] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15104), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + ACTIONS(1348), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304149] = 5, + anon_sym_RBRACE3, + [335576] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14980), 1, + ACTIONS(16496), 1, + anon_sym_esac, + ACTIONS(16498), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16500), 1, + anon_sym_SEMI_AMP, + ACTIONS(16502), 1, + anon_sym_SEMI_SEMI_AMP, + [335592] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 4, + sym__concat, anon_sym_SLASH, - ACTIONS(14982), 1, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + [335602] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - [304166] = 4, + anon_sym_RBRACE3, + [335612] = 2, ACTIONS(71), 1, sym_comment, - STATE(6303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14810), 2, + ACTIONS(1348), 4, sym__concat, + anon_sym_SLASH, aux_sym_concatenation_token1, - ACTIONS(15106), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [304181] = 4, + anon_sym_RBRACE3, + [335622] = 2, ACTIONS(71), 1, sym_comment, - STATE(6314), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(15108), 2, + ACTIONS(6380), 4, + sym__concat, anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - ACTIONS(15110), 2, + [335632] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 4, sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - [304196] = 5, + [335642] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14962), 1, + ACTIONS(8490), 1, + sym__special_character, + ACTIONS(16413), 1, anon_sym_SLASH, - ACTIONS(14964), 1, + ACTIONS(16415), 1, anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, + STATE(6952), 1, + aux_sym__literal_repeat1, + [335658] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 4, sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - [304213] = 2, + [335668] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1324), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335678] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1364), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16506), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16504), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [335700] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 4, sym__concat, - sym__expansion_word, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [304224] = 4, + [335710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16424), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(16419), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [335722] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(16508), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + [335732] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8490), 1, + sym__special_character, + ACTIONS(16434), 1, + anon_sym_SLASH, + ACTIONS(16436), 1, + anon_sym_RBRACE3, + STATE(6952), 1, + aux_sym__literal_repeat1, + [335748] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335758] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335768] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304239] = 4, + anon_sym_RBRACE3, + [335778] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + ACTIONS(1340), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335788] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6384), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, + [335798] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7428), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [304254] = 5, + anon_sym_RBRACE3, + [335808] = 4, 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(4919), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304271] = 4, - ACTIONS(3), 1, + ACTIONS(16406), 1, + sym__special_character, + STATE(6945), 1, + aux_sym__literal_repeat1, + ACTIONS(16444), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [335822] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(15119), 1, - anon_sym_in, - ACTIONS(15123), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15121), 3, - anon_sym_SEMI, - anon_sym_AMP, + ACTIONS(16510), 1, + anon_sym_esac, + ACTIONS(16512), 1, anon_sym_SEMI_SEMI, - [304286] = 5, + ACTIONS(16514), 1, + anon_sym_SEMI_AMP, + ACTIONS(16516), 1, + anon_sym_SEMI_SEMI_AMP, + [335838] = 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(4861), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304303] = 5, + ACTIONS(16475), 1, + anon_sym_esac, + ACTIONS(16518), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16520), 1, + anon_sym_SEMI_AMP, + ACTIONS(16522), 1, + anon_sym_SEMI_SEMI_AMP, + [335854] = 2, 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(4746), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304320] = 3, + ACTIONS(1368), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335864] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15127), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(14792), 3, - anon_sym_STAR, + ACTIONS(7437), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [335874] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16496), 1, + anon_sym_esac, + ACTIONS(16524), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16526), 1, + anon_sym_SEMI_AMP, + ACTIONS(16528), 1, + anon_sym_SEMI_SEMI_AMP, + [335890] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16389), 4, + sym__concat, anon_sym_SLASH, - anon_sym_PERCENT, - [304333] = 4, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [335900] = 2, ACTIONS(71), 1, sym_comment, - STATE(6324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 2, + ACTIONS(7681), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [335910] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16530), 1, + anon_sym_esac, + ACTIONS(16532), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16534), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [335924] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 4, + sym__concat, anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(15129), 2, - sym__concat, aux_sym_concatenation_token1, - [304348] = 2, + [335934] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1352), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [335944] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 4, sym__concat, - sym__expansion_word, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, + [335954] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7685), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [304359] = 6, + [335964] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(667), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(685), 1, - anon_sym_LBRACE, - ACTIONS(14860), 1, - anon_sym_do, - STATE(4995), 1, - sym_do_group, - STATE(4996), 1, - sym_compound_statement, - [304378] = 4, - ACTIONS(3), 1, + ACTIONS(1352), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [335974] = 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, + ACTIONS(8490), 1, + sym__special_character, + ACTIONS(16438), 1, + anon_sym_SLASH, + ACTIONS(16440), 1, + anon_sym_RBRACE3, + STATE(6952), 1, + aux_sym__literal_repeat1, + [335990] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16510), 1, + anon_sym_esac, + ACTIONS(16536), 1, anon_sym_SEMI_SEMI, - [304393] = 5, + ACTIONS(16538), 1, + anon_sym_SEMI_AMP, + ACTIONS(16540), 1, + anon_sym_SEMI_SEMI_AMP, + [336006] = 2, 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(4843), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304410] = 6, + ACTIONS(1348), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [336016] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(4849), 1, - sym__heredoc_body, - STATE(4888), 1, - sym__simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [304429] = 5, + ACTIONS(16486), 1, + anon_sym_esac, + ACTIONS(16542), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16544), 1, + anon_sym_SEMI_AMP, + ACTIONS(16546), 1, + anon_sym_SEMI_SEMI_AMP, + [336032] = 4, 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(4674), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304446] = 4, + ACTIONS(16548), 1, + anon_sym_esac, + ACTIONS(16550), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16552), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [336046] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [336056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14753), 1, - anon_sym_in, - ACTIONS(14757), 1, + ACTIONS(16556), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14755), 3, + ACTIONS(16554), 3, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_AMP, + [336068] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16558), 1, + anon_sym_esac, + ACTIONS(16560), 1, anon_sym_SEMI_SEMI, - [304461] = 6, + ACTIONS(16562), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [336082] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, - sym_simple_heredoc_body, - STATE(4936), 1, - sym__heredoc_body, - STATE(4938), 1, - sym__simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - [304480] = 6, + ACTIONS(1308), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [336092] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, - sym_simple_heredoc_body, - STATE(4705), 1, - sym__heredoc_body, - STATE(4708), 1, - sym__simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - [304499] = 3, + ACTIONS(16564), 1, + anon_sym_esac, + ACTIONS(16566), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16568), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [336106] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15138), 1, + ACTIONS(1360), 4, sym__concat, - ACTIONS(6673), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [304512] = 4, + [336116] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15142), 1, - anon_sym_elif, - ACTIONS(15140), 2, - anon_sym_fi, - anon_sym_else, - STATE(6335), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [304527] = 5, + ACTIONS(1356), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [336126] = 2, 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(4788), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304544] = 5, + ACTIONS(1263), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [336136] = 2, 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(4732), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304561] = 6, + ACTIONS(1360), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [336146] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, - sym_simple_heredoc_body, - STATE(4780), 1, - sym__heredoc_body, - STATE(4800), 1, - sym__simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - [304580] = 6, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16570), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336159] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, - sym_simple_heredoc_body, - STATE(4801), 1, - sym__heredoc_body, - STATE(4820), 1, - sym__simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - [304599] = 5, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16572), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [336170] = 2, 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(4827), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304616] = 4, + ACTIONS(1308), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [336179] = 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, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16576), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336192] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, - sym_simple_heredoc_body, - STATE(4828), 1, - sym__heredoc_body, - STATE(4831), 1, - sym__simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - [304650] = 6, + ACTIONS(16578), 1, + anon_sym_COMMA, + ACTIONS(16580), 1, + anon_sym_RPAREN, + STATE(7177), 1, + aux_sym__for_body_repeat1, + [336205] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15125), 1, - sym_simple_heredoc_body, - STATE(4852), 1, - sym__heredoc_body, - STATE(4862), 1, - sym__simple_heredoc_body, - STATE(7181), 1, - sym_heredoc_body, - [304669] = 6, + ACTIONS(16538), 1, + anon_sym_SEMI_AMP, + ACTIONS(16540), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(16582), 1, + anon_sym_SEMI_SEMI, + [336218] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(4922), 1, - sym__heredoc_body, - STATE(4932), 1, - sym__simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [304688] = 4, + ACTIONS(16578), 1, + anon_sym_COMMA, + ACTIONS(16584), 1, + anon_sym_RPAREN, + STATE(7033), 1, + aux_sym__for_body_repeat1, + [336231] = 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, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16586), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336244] = 4, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16588), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336257] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16590), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [336268] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(13396), 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(16592), 1, + anon_sym_PIPE_AMP, + STATE(5051), 1, + aux_sym_pipeline_repeat1, + [336281] = 3, 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(5565), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304758] = 4, + ACTIONS(16594), 1, + sym__concat, + ACTIONS(7428), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [336292] = 3, 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, + ACTIONS(16596), 1, + sym__concat, + ACTIONS(7437), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [336303] = 4, 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(4713), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304790] = 5, + ACTIONS(16578), 1, + anon_sym_COMMA, + ACTIONS(16598), 1, + anon_sym_RPAREN, + STATE(7117), 1, + aux_sym__for_body_repeat1, + [336316] = 4, 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(5586), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304807] = 5, + ACTIONS(16600), 1, + anon_sym_PIPE, + ACTIONS(16603), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [336329] = 4, 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(4681), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304824] = 6, + ACTIONS(16605), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(16607), 1, + anon_sym_COMMA, + STATE(7146), 1, + aux_sym__for_body_repeat1, + [336342] = 4, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16609), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336355] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(5547), 1, - sym__simple_heredoc_body, - STATE(5553), 1, - sym__heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - [304862] = 5, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16611), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [336368] = 4, 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(5551), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304879] = 6, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16613), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336381] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16615), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336394] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16617), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336407] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, + ACTIONS(16167), 1, anon_sym_PIPE, - ACTIONS(15010), 1, + ACTIONS(16269), 1, anon_sym_RPAREN, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - STATE(6617), 1, + STATE(7086), 1, aux_sym_case_item_repeat1, - [304898] = 5, + [336420] = 4, 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(5573), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [304915] = 6, + ACTIONS(16526), 1, + anon_sym_SEMI_AMP, + ACTIONS(16528), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(16619), 1, + anon_sym_SEMI_SEMI, + [336433] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(5554), 1, - sym__heredoc_body, - STATE(5577), 1, - sym__simple_heredoc_body, - STATE(7024), 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, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16621), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336446] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(4680), 1, - sym__simple_heredoc_body, - STATE(4902), 1, - sym__heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [304968] = 5, - ACTIONS(3), 1, + ACTIONS(8011), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(16623), 1, + anon_sym_COMMA, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336459] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(15147), 1, + ACTIONS(16578), 1, anon_sym_COMMA, - ACTIONS(15150), 1, - aux_sym_heredoc_redirect_token1, - STATE(6361), 1, + ACTIONS(16626), 1, + anon_sym_RPAREN, + STATE(7100), 1, aux_sym__for_body_repeat1, - ACTIONS(15145), 2, - anon_sym_SEMI, - anon_sym_AMP, - [304985] = 5, + [336472] = 4, 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(5465), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305002] = 5, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16628), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336485] = 3, 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(5468), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305019] = 4, - ACTIONS(3), 1, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16630), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [336496] = 2, + ACTIONS(71), 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, + ACTIONS(1328), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [336505] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(5564), 1, - sym__simple_heredoc_body, - STATE(5566), 1, - sym__heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - [305053] = 6, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16632), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336518] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15117), 1, - sym_simple_heredoc_body, - STATE(4693), 1, - sym__heredoc_body, - STATE(4715), 1, - sym__simple_heredoc_body, - STATE(6932), 1, - sym_heredoc_body, - [305072] = 5, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16634), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336531] = 2, 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(5582), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305089] = 6, + ACTIONS(1344), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [336540] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(5592), 1, - sym__heredoc_body, - STATE(5602), 1, - sym__simple_heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - [305108] = 6, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16636), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [336553] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15090), 1, - sym_simple_heredoc_body, - STATE(5550), 1, - sym__simple_heredoc_body, - STATE(5604), 1, - sym__heredoc_body, - STATE(7024), 1, - sym_heredoc_body, - [305127] = 6, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16638), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [336564] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5469), 1, - sym__heredoc_body, - STATE(5470), 1, - sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [305146] = 5, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16640), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [336577] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [336586] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [336595] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16642), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [336608] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, + ACTIONS(1364), 3, + sym__regex_no_slash, anon_sym_SLASH, - ACTIONS(14910), 1, anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [305163] = 6, + [336617] = 2, 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, + ACTIONS(1364), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [336626] = 4, + ACTIONS(71), 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, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16644), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [336639] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16646), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336652] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16648), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336665] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16650), 1, + sym_extglob_pattern, + ACTIONS(7146), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [336676] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16652), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336689] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16654), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336702] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16490), 1, + anon_sym_SEMI_AMP, + ACTIONS(16492), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(16656), 1, anon_sym_SEMI_SEMI, - [305197] = 3, + [336715] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15158), 1, - sym__concat, - ACTIONS(6639), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305210] = 4, - ACTIONS(3), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16658), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336728] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16660), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [336741] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13864), 1, + anon_sym_PIPE, + ACTIONS(16662), 1, + anon_sym_PIPE_AMP, + STATE(5476), 1, + aux_sym_pipeline_repeat1, + [336754] = 4, + ACTIONS(71), 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, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16664), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [336767] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15082), 1, - sym__heredoc_body_beginning, - ACTIONS(15084), 1, - sym_simple_heredoc_body, - STATE(5471), 1, - sym__heredoc_body, - STATE(5472), 1, - sym__simple_heredoc_body, - STATE(6814), 1, - sym_heredoc_body, - [305244] = 4, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16666), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336780] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7902), 1, - anon_sym_RBRACE3, - STATE(6349), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(7752), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [305259] = 5, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16668), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336793] = 4, 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(5473), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [305276] = 4, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16670), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336806] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15166), 1, - anon_sym_RBRACE3, - STATE(6379), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(15168), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [305291] = 5, + ACTIONS(16500), 1, + anon_sym_SEMI_AMP, + ACTIONS(16502), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(16672), 1, + anon_sym_SEMI_SEMI, + [336819] = 4, 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(16607), 1, + anon_sym_COMMA, + ACTIONS(16674), 1, + anon_sym_RPAREN_RPAREN, + STATE(7045), 1, + aux_sym__for_body_repeat1, + [336832] = 4, ACTIONS(71), 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16676), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336845] = 4, ACTIONS(71), 1, sym_comment, - STATE(6383), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14810), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(15171), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [305342] = 5, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16678), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336858] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - aux_sym_concatenation_token1, - ACTIONS(15173), 1, - sym__concat, - STATE(6324), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1229), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [305359] = 6, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16680), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336871] = 3, 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(16682), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16568), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [336882] = 4, 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(16167), 1, + anon_sym_PIPE, + ACTIONS(16684), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [336895] = 3, 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, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16686), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [336906] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1274), 4, - sym__concat, + ACTIONS(1348), 3, + sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305422] = 2, + [336915] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 4, - sym__concat, + ACTIONS(1352), 3, + sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305432] = 2, + [336924] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 4, - sym__concat, + ACTIONS(1348), 3, + sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305442] = 2, + [336933] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16291), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305452] = 2, + STATE(7098), 1, + aux_sym_case_item_repeat1, + [336946] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305462] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16688), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336959] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305472] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16690), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336972] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305482] = 4, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16692), 1, + anon_sym_RPAREN_RPAREN, + STATE(7141), 1, + aux_sym__for_body_repeat1, + [336985] = 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, - ACTIONS(3), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16694), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [336998] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(15180), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15178), 3, - anon_sym_SEMI, + ACTIONS(7478), 1, anon_sym_COMMA, - anon_sym_AMP, - [305508] = 2, + ACTIONS(16696), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337011] = 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(13945), 1, + anon_sym_PIPE, + ACTIONS(16698), 1, + anon_sym_PIPE_AMP, + STATE(5566), 1, + aux_sym_pipeline_repeat1, + [337024] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15182), 1, - anon_sym_esac, - ACTIONS(15184), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15186), 1, - anon_sym_SEMI_AMP, - ACTIONS(15188), 1, - anon_sym_SEMI_SEMI_AMP, - [305534] = 5, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16700), 1, + anon_sym_RPAREN_RPAREN, + STATE(7178), 1, + aux_sym__for_body_repeat1, + [337037] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(15086), 1, - anon_sym_SLASH, - ACTIONS(15088), 1, - anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305550] = 2, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16702), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337048] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6724), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305560] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16704), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337061] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6728), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305570] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16706), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337074] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305580] = 2, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16708), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337085] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1282), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16710), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305590] = 2, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337098] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16712), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305600] = 2, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337111] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305610] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16714), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337124] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305620] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16716), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337137] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16718), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305630] = 2, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337150] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305640] = 2, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16720), 1, + anon_sym_RPAREN_RPAREN, + STATE(7123), 1, + aux_sym__for_body_repeat1, + [337163] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, + ACTIONS(13855), 1, anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305650] = 5, + ACTIONS(16722), 1, + anon_sym_PIPE_AMP, + STATE(5453), 1, + aux_sym_pipeline_repeat1, + [337176] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15190), 1, - anon_sym_esac, - ACTIONS(15192), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15194), 1, - anon_sym_SEMI_AMP, - ACTIONS(15196), 1, - anon_sym_SEMI_SEMI_AMP, - [305666] = 2, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16724), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337187] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16726), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305676] = 2, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337200] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, - sym__concat, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16728), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337211] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16730), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337222] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16732), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305686] = 2, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337235] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16734), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337248] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16736), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305696] = 4, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337261] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15078), 1, - sym__special_character, - STATE(6394), 1, - aux_sym__literal_repeat1, - ACTIONS(15171), 2, - anon_sym_PIPE, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16738), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337274] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16424), 1, anon_sym_RPAREN, - [305710] = 4, + ACTIONS(16740), 1, + anon_sym_COMMA, + STATE(7100), 1, + aux_sym__for_body_repeat1, + [337287] = 4, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16743), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337300] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16745), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [305734] = 4, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337313] = 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16747), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337326] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15190), 1, - anon_sym_esac, - ACTIONS(15210), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15212), 1, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16749), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337337] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16514), 1, anon_sym_SEMI_AMP, - ACTIONS(15214), 1, + ACTIONS(16516), 1, anon_sym_SEMI_SEMI_AMP, - [305764] = 2, + ACTIONS(16751), 1, + anon_sym_SEMI_SEMI, + [337350] = 3, 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(16574), 1, + anon_sym_LBRACK, + ACTIONS(16753), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337361] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15218), 1, - sym__special_character, - STATE(6419), 1, - aux_sym__literal_repeat1, - ACTIONS(1318), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [305788] = 5, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16755), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337372] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(15100), 1, + ACTIONS(1336), 3, + sym__regex_no_slash, anon_sym_SLASH, - ACTIONS(15102), 1, anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305804] = 2, + [337381] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1278), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305814] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16757), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337394] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16759), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337407] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1290), 4, + STATE(6943), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(16313), 2, sym__concat, - anon_sym_SLASH, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305824] = 5, + [337418] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15182), 1, - anon_sym_esac, - ACTIONS(15221), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15223), 1, - anon_sym_SEMI_AMP, - ACTIONS(15225), 1, - anon_sym_SEMI_SEMI_AMP, - [305840] = 2, + ACTIONS(16424), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(16761), 1, + anon_sym_COMMA, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [337431] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 4, - sym__concat, + ACTIONS(1271), 1, + sym__special_character, + ACTIONS(1273), 2, anon_sym_SLASH, - aux_sym_concatenation_token1, anon_sym_RBRACE3, - [305850] = 2, + [337442] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305860] = 2, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16764), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337455] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305870] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16766), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337468] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305880] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16768), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337481] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 4, - sym__concat, - anon_sym_SLASH, - 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, + ACTIONS(16578), 1, anon_sym_COMMA, - anon_sym_AMP, - [305902] = 2, + ACTIONS(16770), 1, + anon_sym_RPAREN, + STATE(7100), 1, + aux_sym__for_body_repeat1, + [337494] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305912] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16772), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337507] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305922] = 2, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16774), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337520] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305932] = 5, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16776), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337533] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7768), 1, - sym__special_character, - ACTIONS(15070), 1, - anon_sym_SLASH, - ACTIONS(15072), 1, - anon_sym_RBRACE3, - STATE(6419), 1, - aux_sym__literal_repeat1, - [305948] = 2, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16778), 1, + anon_sym_RPAREN_RPAREN, + STATE(7182), 1, + aux_sym__for_body_repeat1, + [337546] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5888), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305958] = 2, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16780), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337557] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15108), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [305968] = 2, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16782), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [337570] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6651), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [305978] = 4, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16784), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337583] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15231), 1, - anon_sym_RBRACE3, - STATE(6309), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14908), 2, - sym__concat, - aux_sym_concatenation_token1, - [305992] = 2, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16786), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337594] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(5707), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [306002] = 3, - ACTIONS(3), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16788), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337607] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(15145), 3, - anon_sym_SEMI, + ACTIONS(7478), 1, anon_sym_COMMA, - anon_sym_AMP, - [306014] = 5, + ACTIONS(16790), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337620] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15233), 1, - anon_sym_esac, - ACTIONS(15235), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15237), 1, - anon_sym_SEMI_AMP, - ACTIONS(15239), 1, - anon_sym_SEMI_SEMI_AMP, - [306030] = 4, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16792), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337633] = 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16794), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337646] = 4, 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(16167), 1, + anon_sym_PIPE, + ACTIONS(16796), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337659] = 4, 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(13866), 1, + anon_sym_PIPE, + ACTIONS(16798), 1, + anon_sym_PIPE_AMP, + STATE(5483), 1, + aux_sym_pipeline_repeat1, + [337672] = 4, 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16800), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [337685] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16802), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [306100] = 2, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337698] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1286), 4, - sym__concat, + ACTIONS(13644), 1, anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [306110] = 2, + ACTIONS(16804), 1, + anon_sym_PIPE_AMP, + STATE(5254), 1, + aux_sym_pipeline_repeat1, + [337711] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1215), 4, - sym__concat, + ACTIONS(16167), 1, anon_sym_PIPE, + ACTIONS(16235), 1, 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, + STATE(7102), 1, + aux_sym_case_item_repeat1, + [337724] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [306146] = 4, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16309), 1, + anon_sym_RPAREN, + STATE(7068), 1, + aux_sym_case_item_repeat1, + [337737] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15273), 1, + ACTIONS(16806), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306159] = 4, + [337750] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16808), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337761] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(16607), 1, anon_sym_COMMA, - ACTIONS(15275), 1, + ACTIONS(16810), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306172] = 4, + STATE(7025), 1, + aux_sym__for_body_repeat1, + [337774] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15277), 1, + ACTIONS(16812), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306185] = 4, + [337787] = 4, 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, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16814), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [337800] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15281), 1, + ACTIONS(16816), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306211] = 4, + [337813] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15223), 1, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16818), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337824] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16520), 1, anon_sym_SEMI_AMP, - ACTIONS(15225), 1, + ACTIONS(16522), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15283), 1, + ACTIONS(16820), 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, + [337837] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15285), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306248] = 4, + ACTIONS(16544), 1, + anon_sym_SEMI_AMP, + ACTIONS(16546), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(16822), 1, + anon_sym_SEMI_SEMI, + [337850] = 4, 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(16607), 1, + anon_sym_COMMA, + ACTIONS(16824), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, + aux_sym__for_body_repeat1, + [337863] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15291), 1, + ACTIONS(16826), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306274] = 3, + [337876] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(16574), 1, anon_sym_LBRACK, - ACTIONS(15293), 2, + ACTIONS(16828), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306285] = 4, + [337887] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15295), 1, + ACTIONS(16830), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306298] = 4, + [337900] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12681), 1, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16832), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337911] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14475), 1, anon_sym_PIPE, - ACTIONS(15297), 1, + ACTIONS(16834), 1, anon_sym_PIPE_AMP, - STATE(4965), 1, + STATE(5950), 1, aux_sym_pipeline_repeat1, - [306311] = 3, + [337924] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(16167), 1, + anon_sym_PIPE, + ACTIONS(16836), 1, + anon_sym_RPAREN, + STATE(7022), 1, + aux_sym_case_item_repeat1, + [337937] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16838), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16534), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [337948] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14517), 1, + anon_sym_PIPE, + ACTIONS(14519), 1, + anon_sym_PIPE_AMP, + STATE(5976), 1, + aux_sym_pipeline_repeat1, + [337961] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13868), 1, + anon_sym_PIPE, + ACTIONS(16840), 1, + anon_sym_PIPE_AMP, + STATE(5514), 1, + aux_sym_pipeline_repeat1, + [337974] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16574), 1, anon_sym_LBRACK, - ACTIONS(15299), 2, + ACTIONS(16842), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306322] = 4, + [337985] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15301), 1, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16844), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [337996] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16846), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338007] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16848), 1, + anon_sym_SEMI_SEMI, + ACTIONS(16562), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [338018] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16574), 1, + anon_sym_LBRACK, + ACTIONS(16850), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338029] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16852), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(15303), 1, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338042] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, anon_sym_COMMA, - STATE(6579), 1, - aux_sym__for_body_repeat1, - [306335] = 3, + ACTIONS(16854), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(16574), 1, anon_sym_LBRACK, - ACTIONS(15305), 2, + ACTIONS(16856), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306346] = 4, + [338066] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(16858), 1, + sym__concat, + ACTIONS(7458), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338077] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [338086] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15307), 1, + ACTIONS(16860), 1, anon_sym_RPAREN_RPAREN, - STATE(6584), 1, - aux_sym__for_body_repeat1, - [306359] = 4, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338099] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15309), 1, + ACTIONS(16862), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306372] = 4, + [338112] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15311), 1, + ACTIONS(16864), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306385] = 3, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338125] = 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(7478), 1, + anon_sym_COMMA, + ACTIONS(16866), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338138] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(16574), 1, anon_sym_LBRACK, - ACTIONS(15315), 2, + ACTIONS(16868), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306407] = 4, + [338149] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15317), 1, + ACTIONS(16870), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306420] = 4, + [338162] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15319), 1, + ACTIONS(16872), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306433] = 3, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338175] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15321), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16874), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338188] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16876), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338201] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16878), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338214] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16880), 1, anon_sym_SEMI_SEMI, - ACTIONS(15208), 2, + ACTIONS(16552), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [306444] = 3, + [338225] = 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(16578), 1, + anon_sym_COMMA, + ACTIONS(16882), 1, + anon_sym_RPAREN, + STATE(7100), 1, + aux_sym__for_body_repeat1, + [338238] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(16607), 1, anon_sym_COMMA, - ACTIONS(15325), 1, + ACTIONS(16884), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, + STATE(7112), 1, aux_sym__for_body_repeat1, - [306468] = 3, + [338251] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15327), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [306479] = 4, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16886), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338264] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16888), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338277] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 1, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16890), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(15329), 1, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338290] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16607), 1, anon_sym_COMMA, - STATE(6477), 1, + ACTIONS(16892), 1, + anon_sym_RPAREN_RPAREN, + STATE(7112), 1, aux_sym__for_body_repeat1, - [306492] = 4, + [338303] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(1328), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [338312] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15332), 1, + ACTIONS(16894), 1, anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [306505] = 2, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338325] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1262), 3, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16896), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338338] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16898), 1, anon_sym_SLASH, - anon_sym_COLON, + ACTIONS(16900), 1, anon_sym_RBRACE3, - [306514] = 3, + ACTIONS(16902), 1, + sym__regex_no_slash, + [338351] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16904), 1, + anon_sym_RPAREN_RPAREN, + STATE(7040), 1, + aux_sym__for_body_repeat1, + [338364] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16574), 1, anon_sym_LBRACK, - ACTIONS(15334), 2, + ACTIONS(16906), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306525] = 3, + [338375] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15336), 2, + ACTIONS(16908), 1, + sym__concat, + ACTIONS(7464), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306536] = 4, + [338386] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15338), 1, + ACTIONS(16910), 1, anon_sym_RPAREN_RPAREN, - STATE(6478), 1, - aux_sym__for_body_repeat1, - [306549] = 4, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338399] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16912), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338412] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(7478), 1, anon_sym_COMMA, - ACTIONS(15340), 1, + ACTIONS(16914), 1, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, + STATE(7032), 1, aux_sym_arithmetic_expansion_repeat1, - [306562] = 2, + [338425] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1225), 3, + ACTIONS(1273), 3, anon_sym_PIPE, anon_sym_RPAREN, sym__special_character, - [306571] = 2, + [338434] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1270), 3, - anon_sym_SLASH, + ACTIONS(7478), 1, + anon_sym_COMMA, + ACTIONS(16916), 1, + anon_sym_RPAREN_RPAREN, + STATE(7032), 1, + aux_sym_arithmetic_expansion_repeat1, + [338447] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16479), 1, + anon_sym_SEMI_AMP, + ACTIONS(16481), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(16918), 1, + anon_sym_SEMI_SEMI, + [338460] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16920), 1, + anon_sym_RPAREN_RPAREN, + STATE(7042), 1, + aux_sym__for_body_repeat1, + [338473] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16076), 1, anon_sym_COLON, + ACTIONS(16078), 1, anon_sym_RBRACE3, - [306580] = 3, + [338483] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15342), 2, + ACTIONS(16686), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306591] = 4, + [338491] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15344), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306604] = 4, + ACTIONS(16786), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338499] = 3, 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(16898), 1, + anon_sym_SLASH, + ACTIONS(16900), 1, + anon_sym_RBRACE3, + [338509] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15348), 2, + ACTIONS(16868), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306628] = 4, + [338517] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15350), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306641] = 3, + ACTIONS(16906), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338525] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15352), 2, + ACTIONS(16702), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306652] = 3, + [338533] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1223), 1, - sym__special_character, - ACTIONS(1225), 2, + ACTIONS(16818), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338541] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [306663] = 4, + [338549] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15354), 1, - anon_sym_PIPE, - ACTIONS(15357), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306676] = 4, + ACTIONS(16808), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338557] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15359), 1, + ACTIONS(16755), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338565] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16842), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338573] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16506), 2, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306689] = 3, + anon_sym_COMMA, + [338581] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15361), 2, + ACTIONS(16572), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306700] = 3, + [338589] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15363), 2, + ACTIONS(16630), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [306711] = 4, + [338597] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15365), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306724] = 4, + ACTIONS(16638), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338605] = 2, 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, + ACTIONS(16749), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338613] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(16753), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338621] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16780), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338629] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16856), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338637] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16850), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338645] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7243), 1, + anon_sym_RBRACK, + ACTIONS(7521), 1, + sym__concat, + [338655] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7202), 1, + anon_sym_RBRACK, + ACTIONS(7782), 1, + sym__concat, + [338665] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16191), 1, + anon_sym_do, + STATE(5229), 1, + sym_do_group, + [338675] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1364), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [338683] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16922), 1, + anon_sym_SLASH, + ACTIONS(16924), 1, + anon_sym_RBRACE3, + [338693] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13248), 2, + sym__concat, + anon_sym_RBRACK, + [338701] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16145), 1, + anon_sym_do, + STATE(5484), 1, + sym_do_group, + [338711] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7428), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338719] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1368), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [338727] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7437), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338735] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16365), 1, + anon_sym_do, + STATE(6068), 1, + sym_do_group, + [338745] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [338753] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16590), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338761] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16506), 2, anon_sym_COMMA, - ACTIONS(15371), 1, anon_sym_RPAREN, - STATE(6504), 1, - aux_sym__for_body_repeat1, - [306750] = 4, + [338769] = 3, 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(7136), 1, + anon_sym_RBRACK, + ACTIONS(7717), 1, + sym__concat, + [338779] = 3, 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(7264), 1, + anon_sym_RBRACK, + ACTIONS(7760), 1, + sym__concat, + [338789] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15377), 1, + ACTIONS(16424), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306789] = 4, + [338797] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(16556), 2, anon_sym_COMMA, - ACTIONS(15379), 1, + anon_sym_RPAREN, + [338805] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13244), 2, + sym__concat, + anon_sym_RBRACK, + [338813] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16926), 1, + anon_sym_RBRACE3, + ACTIONS(16928), 1, + sym_regex, + [338823] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16424), 2, anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306802] = 4, + anon_sym_COMMA, + [338831] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(7331), 1, + anon_sym_RBRACK, + ACTIONS(7543), 1, + sym__concat, + [338841] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16115), 1, + anon_sym_do, + STATE(4992), 1, + sym_do_group, + [338851] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16556), 2, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - ACTIONS(15381), 1, + [338859] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16832), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338867] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16145), 1, + anon_sym_do, + STATE(5448), 1, + sym_do_group, + [338877] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16930), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(16932), 1, + aux_sym__simple_variable_name_token1, + [338887] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7681), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338895] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16446), 2, + anon_sym_PIPE, anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [306815] = 4, + [338903] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15383), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306828] = 4, + ACTIONS(7685), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338911] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15385), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306841] = 4, + ACTIONS(7395), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [338919] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15387), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306854] = 4, + ACTIONS(16708), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [338927] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7391), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [338935] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16115), 1, + anon_sym_do, + STATE(5014), 1, + sym_do_group, + [338945] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15389), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306867] = 4, + ACTIONS(16413), 1, + anon_sym_SLASH, + ACTIONS(16415), 1, + anon_sym_RBRACE3, + [338955] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15391), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306880] = 4, + ACTIONS(16934), 1, + anon_sym_SLASH, + ACTIONS(16936), 1, + anon_sym_RBRACE3, + [338965] = 3, 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(16311), 1, + anon_sym_SLASH, + ACTIONS(16315), 1, + anon_sym_RBRACE3, + [338975] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15396), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [306906] = 4, + ACTIONS(16365), 1, + anon_sym_do, + STATE(6112), 1, + sym_do_group, + [338985] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7184), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(15398), 1, - anon_sym_COMMA, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306919] = 4, + ACTIONS(16434), 1, + anon_sym_SLASH, + ACTIONS(16436), 1, + anon_sym_RBRACE3, + [338995] = 2, 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(1328), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [339003] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15401), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306945] = 4, + ACTIONS(16724), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [339011] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15403), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306958] = 4, + ACTIONS(16728), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [339019] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15405), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306971] = 4, + ACTIONS(16938), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(16940), 1, + aux_sym__simple_variable_name_token1, + [339029] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15407), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [306984] = 4, + ACTIONS(16828), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [339037] = 3, 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(7319), 1, + anon_sym_RBRACK, + ACTIONS(7537), 1, + sym__concat, + [339047] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15411), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307010] = 4, + ACTIONS(13108), 2, + sym__concat, + anon_sym_RBRACK, + [339055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13373), 1, - anon_sym_PIPE, - ACTIONS(13375), 1, - anon_sym_PIPE_AMP, - STATE(5516), 1, - aux_sym_pipeline_repeat1, - [307023] = 4, + ACTIONS(16438), 1, + anon_sym_SLASH, + ACTIONS(16440), 1, + anon_sym_RBRACE3, + [339065] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15413), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307036] = 4, + ACTIONS(16319), 1, + anon_sym_SLASH, + ACTIONS(16321), 1, + anon_sym_RBRACE3, + [339075] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15415), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307049] = 4, + ACTIONS(13051), 2, + sym__concat, + anon_sym_RBRACK, + [339083] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15417), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307062] = 3, + ACTIONS(16942), 1, + anon_sym_SLASH, + ACTIONS(16944), 1, + anon_sym_RBRACE3, + [339093] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15419), 1, - sym__concat, - ACTIONS(6651), 2, + ACTIONS(16844), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [307073] = 3, + [339101] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15421), 1, - sym__concat, - ACTIONS(6639), 2, + ACTIONS(16846), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [307084] = 4, + [339109] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15423), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307097] = 4, + ACTIONS(16946), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(16948), 1, + aux_sym__simple_variable_name_token1, + [339119] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15425), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307110] = 2, + ACTIONS(16730), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [339127] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 3, - sym__regex_no_slash, + ACTIONS(16347), 1, anon_sym_SLASH, + ACTIONS(16349), 1, anon_sym_RBRACE3, - [307119] = 4, + [339137] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15427), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307132] = 4, + ACTIONS(16950), 1, + anon_sym_SLASH, + ACTIONS(16952), 1, + anon_sym_RBRACE3, + [339147] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15429), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307145] = 4, + ACTIONS(16954), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(16956), 1, + aux_sym__simple_variable_name_token1, + [339157] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15431), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307158] = 4, + ACTIONS(16191), 1, + anon_sym_do, + STATE(5358), 1, + sym_do_group, + [339167] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15433), 1, - anon_sym_RPAREN_RPAREN, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [307171] = 2, + ACTIONS(16958), 1, + anon_sym_BQUOTE, + [339174] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307180] = 4, + ACTIONS(16960), 1, + anon_sym_RBRACE2, + [339181] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15435), 1, - anon_sym_RPAREN, - STATE(6539), 1, - aux_sym__for_body_repeat1, - [307193] = 2, + ACTIONS(16962), 1, + anon_sym_BQUOTE, + [339188] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [307202] = 4, + ACTIONS(16964), 1, + anon_sym_BQUOTE, + [339195] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15437), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307215] = 4, + ACTIONS(16966), 1, + anon_sym_RPAREN, + [339202] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15439), 1, - anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [307228] = 3, + ACTIONS(15679), 1, + anon_sym_RBRACE3, + [339209] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15441), 1, - sym_extglob_pattern, - ACTIONS(6468), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [307239] = 4, + ACTIONS(16968), 1, + aux_sym_brace_expression_token1, + [339216] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15443), 1, - anon_sym_RPAREN, - STATE(6510), 1, - aux_sym__for_body_repeat1, - [307252] = 4, + ACTIONS(16970), 1, + aux_sym_brace_expression_token1, + [339223] = 2, 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(16972), 1, + anon_sym_RBRACE2, + [339230] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15257), 1, - anon_sym_SEMI_AMP, - ACTIONS(15259), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15447), 1, - anon_sym_SEMI_SEMI, - [307278] = 4, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [339237] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15449), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307291] = 4, + ACTIONS(16974), 1, + anon_sym_RBRACE2, + [339244] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15451), 1, - anon_sym_SLASH, - ACTIONS(15453), 1, + ACTIONS(16976), 1, anon_sym_RBRACE3, - ACTIONS(15455), 1, - sym__regex_no_slash, - [307304] = 4, + [339251] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15457), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307317] = 4, + ACTIONS(16978), 1, + anon_sym_RPAREN, + [339258] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15263), 1, - anon_sym_SEMI_AMP, - ACTIONS(15265), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15459), 1, - anon_sym_SEMI_SEMI, - [307330] = 4, + ACTIONS(16980), 1, + anon_sym_RBRACE2, + [339265] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15269), 1, - anon_sym_SEMI_AMP, - ACTIONS(15271), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15461), 1, - anon_sym_SEMI_SEMI, - [307343] = 4, + ACTIONS(16982), 1, + anon_sym_BQUOTE, + [339272] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15463), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307356] = 4, + ACTIONS(16984), 1, + anon_sym_BQUOTE, + [339279] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15465), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307369] = 4, + ACTIONS(16986), 1, + aux_sym_brace_expression_token1, + [339286] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15467), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307382] = 4, + ACTIONS(16978), 1, + anon_sym_BQUOTE, + [339293] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15469), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307395] = 4, + ACTIONS(16988), 1, + anon_sym_RPAREN, + [339300] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15471), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307408] = 4, + ACTIONS(16990), 1, + anon_sym_RBRACE3, + [339307] = 2, 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(16373), 1, + anon_sym_RBRACE3, + [339314] = 2, 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, + ACTIONS(16992), 1, + anon_sym_RPAREN, + [339321] = 2, 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(16373), 1, + anon_sym_RBRACE3, + [339328] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12688), 1, - anon_sym_PIPE, - ACTIONS(15479), 1, - anon_sym_PIPE_AMP, - STATE(4992), 1, - aux_sym_pipeline_repeat1, - [307460] = 3, + ACTIONS(16157), 1, + anon_sym_RBRACE3, + [339335] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15481), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307471] = 4, + ACTIONS(16994), 1, + anon_sym_RBRACE2, + [339342] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15483), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307484] = 4, + ACTIONS(16996), 1, + aux_sym_brace_expression_token1, + [339349] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15485), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307497] = 3, + ACTIONS(16998), 1, + anon_sym_RBRACE3, + [339356] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15487), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307508] = 4, + ACTIONS(17000), 1, + anon_sym_BQUOTE, + [339363] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15489), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307521] = 3, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [339370] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15491), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15202), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [307532] = 4, + ACTIONS(16992), 1, + anon_sym_BQUOTE, + [339377] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - anon_sym_COMMA, - ACTIONS(15493), 1, - anon_sym_RPAREN, - STATE(6537), 1, - aux_sym__for_body_repeat1, - [307545] = 4, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [339384] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15495), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307558] = 4, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [339391] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15497), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307571] = 4, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + [339398] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15499), 1, - anon_sym_RPAREN_RPAREN, - STATE(6521), 1, - aux_sym__for_body_repeat1, - [307584] = 4, + ACTIONS(17002), 1, + anon_sym_RBRACE2, + [339405] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15501), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307597] = 3, + ACTIONS(17004), 1, + aux_sym_brace_expression_token1, + [339412] = 2, 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(10635), 1, + anon_sym_RBRACK, + [339419] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15503), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307621] = 2, + ACTIONS(17006), 1, + anon_sym_RPAREN, + [339426] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307630] = 2, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + [339433] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307639] = 4, + ACTIONS(17008), 1, + anon_sym_RBRACE3, + [339440] = 2, 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(16157), 1, + anon_sym_RBRACE3, + [339447] = 2, 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(16157), 1, + anon_sym_RBRACE3, + [339454] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12220), 1, - anon_sym_PIPE, - ACTIONS(15509), 1, - anon_sym_PIPE_AMP, - STATE(4581), 1, - aux_sym_pipeline_repeat1, - [307678] = 2, + ACTIONS(17010), 1, + anon_sym_RBRACE3, + [339461] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307687] = 4, + ACTIONS(17012), 1, + anon_sym_RBRACE3, + [339468] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15511), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [307700] = 2, + ACTIONS(17014), 1, + aux_sym_brace_expression_token1, + [339475] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 3, - sym_extglob_pattern, - anon_sym_PIPE, + ACTIONS(17016), 1, anon_sym_RPAREN, - [307709] = 2, + [339482] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307718] = 4, + ACTIONS(17018), 1, + anon_sym_RBRACE3, + [339489] = 2, 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(17020), 1, + anon_sym_RBRACE2, + [339496] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15515), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307744] = 4, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + [339503] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15517), 1, - anon_sym_RPAREN_RPAREN, - STATE(6472), 1, - aux_sym__for_body_repeat1, - [307757] = 4, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + [339510] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15519), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307770] = 4, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + [339517] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15521), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307783] = 4, + ACTIONS(16379), 1, + anon_sym_RBRACE3, + [339524] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12864), 1, - anon_sym_PIPE, - ACTIONS(15523), 1, - anon_sym_PIPE_AMP, - STATE(5098), 1, - aux_sym_pipeline_repeat1, - [307796] = 4, + ACTIONS(17022), 1, + anon_sym_RBRACE2, + [339531] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15525), 1, - anon_sym_RPAREN_RPAREN, - STATE(6477), 1, - aux_sym__for_body_repeat1, - [307809] = 4, + ACTIONS(17024), 1, + aux_sym_brace_expression_token1, + [339538] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15527), 1, - anon_sym_RPAREN_RPAREN, - STATE(6475), 1, - aux_sym__for_body_repeat1, - [307822] = 4, + ACTIONS(17026), 1, + anon_sym_BQUOTE, + [339545] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15529), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307835] = 3, + ACTIONS(17016), 1, + anon_sym_BQUOTE, + [339552] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15531), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307846] = 3, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [339559] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15533), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307857] = 4, + ACTIONS(17028), 1, + anon_sym_RBRACE3, + [339566] = 2, 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, + ACTIONS(17030), 1, + anon_sym_RBRACE3, + [339573] = 2, 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(17032), 1, + anon_sym_RBRACK_RBRACK, + [339580] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 3, - sym_extglob_pattern, - anon_sym_PIPE, + ACTIONS(17034), 1, anon_sym_RPAREN, - [307890] = 4, + [339587] = 2, 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, + ACTIONS(17036), 1, + anon_sym_RBRACE2, + [339594] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [307912] = 2, + ACTIONS(17038), 1, + aux_sym_brace_expression_token1, + [339601] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 3, - sym_extglob_pattern, - anon_sym_PIPE, + ACTIONS(17040), 1, anon_sym_RPAREN, - [307921] = 3, + [339608] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15541), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [307932] = 4, + ACTIONS(17042), 1, + anon_sym_BQUOTE, + [339615] = 2, 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(16373), 1, + anon_sym_RBRACE3, + [339622] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15545), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307958] = 4, + ACTIONS(17034), 1, + anon_sym_BQUOTE, + [339629] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15547), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307971] = 4, + ACTIONS(17044), 1, + anon_sym_RBRACE3, + [339636] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(14960), 1, + ACTIONS(17046), 1, anon_sym_RPAREN, - STATE(6488), 1, - aux_sym_case_item_repeat1, - [307984] = 4, + [339643] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15549), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [307997] = 4, + ACTIONS(17048), 1, + anon_sym_RPAREN, + [339650] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15551), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308010] = 4, + ACTIONS(17050), 1, + anon_sym_RBRACE3, + [339657] = 2, 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(17052), 1, + aux_sym_brace_expression_token1, + [339664] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15555), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308036] = 4, + ACTIONS(17054), 1, + anon_sym_BQUOTE, + [339671] = 2, 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, + ACTIONS(17046), 1, + anon_sym_BQUOTE, + [339678] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15303), 1, - anon_sym_COMMA, - ACTIONS(15559), 1, - anon_sym_RPAREN_RPAREN, - STATE(6468), 1, - aux_sym__for_body_repeat1, - [308062] = 4, + ACTIONS(10633), 1, + anon_sym_RBRACK, + [339685] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15561), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308075] = 3, + ACTIONS(17056), 1, + anon_sym_BQUOTE, + [339692] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15563), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308086] = 3, + ACTIONS(17058), 1, + anon_sym_RBRACE2, + [339699] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15565), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308097] = 4, + ACTIONS(17040), 1, + anon_sym_BQUOTE, + [339706] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15567), 1, + ACTIONS(17060), 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, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308121] = 4, + [339713] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15014), 1, + ACTIONS(17062), 1, anon_sym_RPAREN, - STATE(6453), 1, - aux_sym_case_item_repeat1, - [308134] = 4, + [339720] = 2, 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, + ACTIONS(17064), 1, + aux_sym_brace_expression_token1, + [339727] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15573), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308160] = 4, + ACTIONS(17066), 1, + anon_sym_RPAREN, + [339734] = 2, 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(17068), 1, + anon_sym_RBRACE3, + [339741] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15577), 1, + ACTIONS(17070), 1, anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308186] = 4, + [339748] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15579), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308199] = 4, + ACTIONS(17072), 1, + anon_sym_RBRACE3, + [339755] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15581), 1, + ACTIONS(17074), 1, anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308212] = 4, + [339762] = 2, 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(16091), 1, + anon_sym_RBRACE3, + [339769] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15585), 1, - anon_sym_SEMI_SEMI, - ACTIONS(15251), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [308236] = 4, + ACTIONS(17076), 1, + anon_sym_RBRACE3, + [339776] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15212), 1, - anon_sym_SEMI_AMP, - ACTIONS(15214), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15587), 1, - anon_sym_SEMI_SEMI, - [308249] = 4, + ACTIONS(17078), 1, + anon_sym_RBRACE3, + [339783] = 2, 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, + ACTIONS(17080), 1, + aux_sym_brace_expression_token1, + [339790] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14806), 1, - anon_sym_PIPE, - ACTIONS(15591), 1, - anon_sym_RPAREN, - STATE(6493), 1, - aux_sym_case_item_repeat1, - [308275] = 3, + ACTIONS(17082), 1, + anon_sym_BQUOTE, + [339797] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15593), 1, - sym__concat, - ACTIONS(6703), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308286] = 3, + ACTIONS(17074), 1, + anon_sym_BQUOTE, + [339804] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LBRACK, - ACTIONS(15595), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308297] = 4, + ACTIONS(17084), 1, + anon_sym_RPAREN, + [339811] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15597), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308310] = 4, + ACTIONS(17086), 1, + anon_sym_BQUOTE, + [339818] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15599), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308323] = 4, + ACTIONS(17088), 1, + anon_sym_RPAREN, + [339825] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - anon_sym_COMMA, - ACTIONS(15601), 1, - anon_sym_RPAREN_RPAREN, - STATE(6512), 1, - aux_sym_arithmetic_expansion_repeat1, - [308336] = 2, + ACTIONS(17070), 1, + anon_sym_BQUOTE, + [339832] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [308344] = 3, + ACTIONS(17090), 1, + aux_sym_brace_expression_token1, + [339839] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15603), 1, - anon_sym_RBRACE3, - ACTIONS(15605), 1, - sym_regex, - [308354] = 3, + ACTIONS(17092), 1, + anon_sym_RBRACE2, + [339846] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5569), 1, - sym_do_group, - [308364] = 2, + ACTIONS(17094), 1, + anon_sym_RBRACE2, + [339853] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6639), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308372] = 3, + ACTIONS(17096), 1, + anon_sym_BQUOTE, + [339860] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14900), 1, - anon_sym_do, - STATE(4819), 1, - sym_do_group, - [308382] = 2, + ACTIONS(17098), 1, + anon_sym_RBRACE2, + [339867] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15334), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308390] = 2, + ACTIONS(17100), 1, + anon_sym_BQUOTE, + [339874] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15487), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308398] = 2, + ACTIONS(17066), 1, + anon_sym_BQUOTE, + [339881] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12180), 2, - sym__concat, - anon_sym_RBRACK, - [308406] = 2, + ACTIONS(17102), 1, + aux_sym_brace_expression_token1, + [339888] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15293), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308414] = 2, + ACTIONS(17088), 1, + anon_sym_BQUOTE, + [339895] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15313), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308422] = 3, + ACTIONS(17104), 1, + anon_sym_RPAREN, + [339902] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15451), 1, - anon_sym_SLASH, - ACTIONS(15453), 1, - anon_sym_RBRACE3, - [308432] = 3, + ACTIONS(17106), 1, + anon_sym_RPAREN, + [339909] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6589), 1, - anon_sym_RBRACK, - ACTIONS(6844), 1, - sym__concat, - [308442] = 3, + ACTIONS(17108), 1, + anon_sym_RBRACE3, + [339916] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15086), 1, - anon_sym_SLASH, - ACTIONS(15088), 1, + ACTIONS(17110), 1, anon_sym_RBRACE3, - [308452] = 2, + [339923] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15481), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308460] = 2, + ACTIONS(17112), 1, + anon_sym_RPAREN, + [339930] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308468] = 2, + ACTIONS(17114), 1, + aux_sym_brace_expression_token1, + [339937] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6728), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308476] = 3, + ACTIONS(17116), 1, + anon_sym_RPAREN, + [339944] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14952), 1, - anon_sym_do, - STATE(5542), 1, - sym_do_group, - [308486] = 3, + ACTIONS(17118), 1, + anon_sym_BQUOTE, + [339951] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15607), 1, - anon_sym_SLASH, - ACTIONS(15609), 1, - anon_sym_RBRACE3, - [308496] = 2, + ACTIONS(17112), 1, + anon_sym_BQUOTE, + [339958] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15229), 2, + ACTIONS(17120), 1, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308504] = 2, + [339965] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12101), 2, - sym__concat, - anon_sym_RBRACK, - [308512] = 2, + ACTIONS(17122), 1, + anon_sym_BQUOTE, + [339972] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1250), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308520] = 2, + ACTIONS(17116), 1, + anon_sym_BQUOTE, + [339979] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12107), 2, - sym__concat, - anon_sym_RBRACK, - [308528] = 2, + ACTIONS(17124), 1, + aux_sym_brace_expression_token1, + [339986] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15531), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308536] = 2, + ACTIONS(17126), 1, + anon_sym_esac, + [339993] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15336), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308544] = 2, + ACTIONS(17128), 1, + anon_sym_RPAREN, + [340000] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15533), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308552] = 3, + ACTIONS(17130), 1, + anon_sym_RBRACE3, + [340007] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15611), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15613), 1, - aux_sym__simple_variable_name_token1, - [308562] = 3, + ACTIONS(17132), 1, + anon_sym_RBRACE3, + [340014] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14900), 1, - anon_sym_do, - STATE(4704), 1, - sym_do_group, - [308572] = 2, + ACTIONS(17134), 1, + anon_sym_RBRACE3, + [340021] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15363), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308580] = 2, + ACTIONS(17136), 1, + anon_sym_RPAREN, + [340028] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15285), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308588] = 2, + ACTIONS(17138), 1, + aux_sym_brace_expression_token1, + [340035] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15315), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308596] = 3, + ACTIONS(17140), 1, + anon_sym_RBRACE2, + [340042] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14962), 1, - anon_sym_SLASH, - ACTIONS(14964), 1, + ACTIONS(16373), 1, anon_sym_RBRACE3, - [308606] = 2, + [340049] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15229), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [308614] = 2, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [340056] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15106), 2, - anon_sym_PIPE, + ACTIONS(17142), 1, anon_sym_RPAREN, - [308622] = 3, + [340063] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14796), 1, - anon_sym_COLON, - ACTIONS(14798), 1, + ACTIONS(16373), 1, anon_sym_RBRACE3, - [308632] = 2, + [340070] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(12228), 2, - sym__concat, - anon_sym_RBRACK, - [308640] = 3, + ACTIONS(17144), 1, + anon_sym_BQUOTE, + [340077] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6998), 1, - sym__concat, - [308650] = 2, + ACTIONS(17146), 1, + aux_sym_brace_expression_token1, + [340084] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15541), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308658] = 3, + ACTIONS(17136), 1, + anon_sym_BQUOTE, + [340091] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, - anon_sym_SLASH, - ACTIONS(14910), 1, + ACTIONS(17148), 1, + anon_sym_BQUOTE, + [340098] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17142), 1, + anon_sym_BQUOTE, + [340105] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16373), 1, anon_sym_RBRACE3, - [308668] = 3, + [340112] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6483), 1, - anon_sym_RBRACK, - ACTIONS(6848), 1, - sym__concat, - [308678] = 3, + ACTIONS(17150), 1, + anon_sym_RPAREN, + [340119] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6472), 1, - anon_sym_RBRACK, - ACTIONS(6834), 1, - sym__concat, - [308688] = 3, + ACTIONS(17152), 1, + anon_sym_RBRACE2, + [340126] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_RBRACK, - ACTIONS(6838), 1, - sym__concat, - [308698] = 2, + ACTIONS(17154), 1, + aux_sym_brace_expression_token1, + [340133] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15342), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308706] = 3, + ACTIONS(17156), 1, + anon_sym_BQUOTE, + [340140] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15615), 1, - anon_sym_SLASH, - ACTIONS(15617), 1, + ACTIONS(16373), 1, anon_sym_RBRACE3, - [308716] = 2, + [340147] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1254), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308724] = 2, + ACTIONS(17158), 1, + anon_sym_RPAREN, + [340154] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15323), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308732] = 2, + ACTIONS(17160), 1, + anon_sym_RBRACE3, + [340161] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15348), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308740] = 2, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [340168] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1258), 2, - anon_sym_SLASH, + ACTIONS(16373), 1, anon_sym_RBRACE3, - [308748] = 2, + [340175] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15595), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308756] = 3, + ACTIONS(17162), 1, + aux_sym_brace_expression_token1, + [340182] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15038), 1, - anon_sym_do, - STATE(4749), 1, - sym_do_group, - [308766] = 3, + ACTIONS(16373), 1, + anon_sym_RBRACE3, + [340189] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15100), 1, - anon_sym_SLASH, - ACTIONS(15102), 1, + ACTIONS(16373), 1, anon_sym_RBRACE3, - [308776] = 2, + [340196] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6667), 2, - anon_sym_COLON, + ACTIONS(17164), 1, + anon_sym_RPAREN, + [340203] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17062), 1, + anon_sym_BQUOTE, + [340210] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17166), 1, + anon_sym_RBRACE2, + [340217] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16373), 1, anon_sym_RBRACE3, - [308784] = 2, + [340224] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15563), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308792] = 3, + ACTIONS(17168), 1, + aux_sym_brace_expression_token1, + [340231] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15038), 1, - anon_sym_do, - STATE(4792), 1, - sym_do_group, - [308802] = 2, + ACTIONS(17170), 1, + anon_sym_RBRACE3, + [340238] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15565), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308810] = 3, + ACTIONS(17172), 1, + anon_sym_RPAREN, + [340245] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15619), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15621), 1, - aux_sym__simple_variable_name_token1, - [308820] = 3, + ACTIONS(17174), 1, + anon_sym_RPAREN, + [340252] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14980), 1, - anon_sym_SLASH, - ACTIONS(14982), 1, + ACTIONS(16153), 1, anon_sym_RBRACE3, - [308830] = 3, + [340259] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15623), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15625), 1, - aux_sym__simple_variable_name_token1, - [308840] = 2, + ACTIONS(17176), 1, + anon_sym_BQUOTE, + [340266] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15150), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308848] = 2, + ACTIONS(17172), 1, + anon_sym_BQUOTE, + [340273] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15180), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [308856] = 3, + ACTIONS(17178), 1, + aux_sym_brace_expression_token1, + [340280] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6495), 1, - anon_sym_RBRACK, - ACTIONS(6840), 1, - sym__concat, - [308866] = 2, + ACTIONS(16157), 1, + anon_sym_RBRACE3, + [340287] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6663), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [308874] = 3, + ACTIONS(17180), 1, + anon_sym_BQUOTE, + [340294] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14860), 1, - anon_sym_do, - STATE(4954), 1, - sym_do_group, - [308884] = 3, + ACTIONS(17182), 1, + anon_sym_RPAREN, + [340301] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15627), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15629), 1, - aux_sym__simple_variable_name_token1, - [308894] = 2, + ACTIONS(17184), 1, + anon_sym_esac, + [340308] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1266), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [308902] = 2, + ACTIONS(17164), 1, + anon_sym_BQUOTE, + [340315] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15180), 2, - anon_sym_COMMA, + ACTIONS(17186), 1, anon_sym_RPAREN, - [308910] = 2, + [340322] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6724), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308918] = 3, + ACTIONS(17188), 1, + aux_sym_brace_expression_token1, + [340329] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15631), 1, - anon_sym_SLASH, - ACTIONS(15633), 1, + ACTIONS(17190), 1, anon_sym_RBRACE3, - [308928] = 2, + [340336] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15352), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308936] = 3, + ACTIONS(17192), 1, + anon_sym_RPAREN, + [340343] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15070), 1, - anon_sym_SLASH, - ACTIONS(15072), 1, + ACTIONS(17194), 1, anon_sym_RBRACE3, - [308946] = 2, + [340350] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15327), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308954] = 3, + ACTIONS(17196), 1, + anon_sym_BQUOTE, + [340357] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14860), 1, - anon_sym_do, - STATE(4997), 1, - sym_do_group, - [308964] = 2, + ACTIONS(17192), 1, + anon_sym_BQUOTE, + [340364] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6651), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308972] = 3, + ACTIONS(17198), 1, + anon_sym_RBRACE3, + [340371] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15635), 1, - anon_sym_SLASH, - ACTIONS(15637), 1, - anon_sym_RBRACE3, - [308982] = 2, + ACTIONS(17200), 1, + aux_sym_brace_expression_token1, + [340378] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15305), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308990] = 2, + ACTIONS(17202), 1, + anon_sym_RPAREN, + [340385] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15361), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [308998] = 2, + ACTIONS(17204), 1, + anon_sym_RBRACE3, + [340392] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15299), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [309006] = 2, + ACTIONS(17206), 1, + anon_sym_RPAREN, + [340399] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, + ACTIONS(17208), 1, anon_sym_RBRACE3, - [309013] = 2, + [340406] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15639), 1, + ACTIONS(17210), 1, anon_sym_BQUOTE, - [309020] = 2, + [340413] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15641), 1, + ACTIONS(17206), 1, + anon_sym_BQUOTE, + [340420] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17212), 1, + aux_sym_brace_expression_token1, + [340427] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17214), 1, + anon_sym_BQUOTE, + [340434] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17216), 1, anon_sym_RPAREN, - [309027] = 2, + [340441] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(17218), 1, anon_sym_RBRACE3, - [309034] = 2, + [340448] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15643), 1, - anon_sym_RBRACE3, - [309041] = 2, + ACTIONS(17202), 1, + anon_sym_BQUOTE, + [340455] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15645), 1, + ACTIONS(17220), 1, anon_sym_RPAREN, - [309048] = 2, + [340462] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15647), 1, - aux_sym_brace_expression_token1, - [309055] = 2, + ACTIONS(17222), 1, + anon_sym_RPAREN, + [340469] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15649), 1, - anon_sym_BQUOTE, - [309062] = 2, + ACTIONS(17224), 1, + aux_sym_brace_expression_token1, + [340476] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15651), 1, - anon_sym_RPAREN_RPAREN, - [309069] = 2, + ACTIONS(17226), 1, + anon_sym_RBRACK_RBRACK, + [340483] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309076] = 2, + ACTIONS(17228), 1, + anon_sym_BQUOTE, + [340490] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15653), 1, + ACTIONS(17220), 1, anon_sym_BQUOTE, - [309083] = 2, + [340497] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309090] = 2, + ACTIONS(17230), 1, + anon_sym_RBRACE2, + [340504] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15655), 1, - anon_sym_RBRACE3, - [309097] = 2, + ACTIONS(17232), 1, + anon_sym_RBRACE2, + [340511] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15657), 1, + ACTIONS(16417), 1, anon_sym_RBRACE3, - [309104] = 2, + [340518] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15659), 1, - anon_sym_RPAREN, - [309111] = 2, + ACTIONS(17234), 1, + aux_sym_brace_expression_token1, + [340525] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15661), 1, - aux_sym_brace_expression_token1, - [309118] = 2, + ACTIONS(17236), 1, + sym_word, + [340532] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15663), 1, + ACTIONS(16442), 1, anon_sym_RBRACE3, - [309125] = 2, + [340539] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15665), 1, - anon_sym_BQUOTE, - [309132] = 2, + ACTIONS(17238), 1, + anon_sym_RBRACE2, + [340546] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16211), 1, + anon_sym_fi, + [340553] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15667), 1, + ACTIONS(17240), 1, anon_sym_RBRACE3, - [309139] = 2, + [340560] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15669), 1, + ACTIONS(17242), 1, anon_sym_RPAREN, - [309146] = 2, + [340567] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309153] = 2, + ACTIONS(17244), 1, + aux_sym_brace_expression_token1, + [340574] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15659), 1, - anon_sym_BQUOTE, - [309160] = 2, + ACTIONS(17246), 1, + aux_sym_brace_expression_token1, + [340581] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15671), 1, + ACTIONS(17248), 1, anon_sym_BQUOTE, - [309167] = 2, + [340588] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15673), 1, - anon_sym_RPAREN, - [309174] = 2, + ACTIONS(17242), 1, + anon_sym_BQUOTE, + [340595] = 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, + ACTIONS(17250), 1, + anon_sym_RBRACE3, + [340602] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15679), 1, + ACTIONS(17252), 1, anon_sym_RPAREN, - [309195] = 2, + [340609] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15681), 1, + ACTIONS(17254), 1, anon_sym_RPAREN, - [309202] = 2, + [340616] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15683), 1, - anon_sym_RBRACE2, - [309209] = 2, + ACTIONS(17256), 1, + aux_sym_brace_expression_token1, + [340623] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15669), 1, - anon_sym_BQUOTE, - [309216] = 2, + ACTIONS(17258), 1, + anon_sym_RBRACE3, + [340630] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15685), 1, - anon_sym_fi, - [309223] = 2, + ACTIONS(17260), 1, + anon_sym_RBRACE3, + [340637] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15687), 1, - anon_sym_RBRACE2, - [309230] = 2, + ACTIONS(17262), 1, + anon_sym_RBRACE3, + [340644] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15689), 1, - anon_sym_RBRACE3, - [309237] = 2, + ACTIONS(17264), 1, + anon_sym_RPAREN, + [340651] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17266), 1, + sym_heredoc_start, + [340658] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15691), 1, + ACTIONS(17268), 1, + anon_sym_esac, + [340665] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17270), 1, aux_sym_brace_expression_token1, - [309244] = 2, + [340672] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15693), 1, - anon_sym_RPAREN, - [309251] = 2, + ACTIONS(17272), 1, + anon_sym_BQUOTE, + [340679] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17274), 1, + anon_sym_RBRACE3, + [340686] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15695), 1, + ACTIONS(17276), 1, anon_sym_RPAREN, - [309258] = 2, + [340693] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15697), 1, + ACTIONS(17264), 1, anon_sym_BQUOTE, - [309265] = 2, + [340700] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15699), 1, + ACTIONS(17278), 1, anon_sym_RBRACE3, - [309272] = 2, + [340707] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15701), 1, + ACTIONS(17280), 1, anon_sym_BQUOTE, - [309279] = 2, + [340714] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15703), 1, - anon_sym_RBRACE2, - [309286] = 2, + ACTIONS(17282), 1, + aux_sym_brace_expression_token1, + [340721] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15693), 1, + ACTIONS(17276), 1, anon_sym_BQUOTE, - [309293] = 2, + [340728] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15705), 1, + ACTIONS(17284), 1, anon_sym_RPAREN, - [309300] = 2, - ACTIONS(71), 1, + [340735] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15707), 1, - aux_sym_brace_expression_token1, - [309307] = 2, + ACTIONS(17286), 1, + aux_sym_heredoc_redirect_token1, + [340742] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15709), 1, + ACTIONS(17288), 1, anon_sym_RPAREN, - [309314] = 2, + [340749] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15711), 1, + ACTIONS(17290), 1, anon_sym_RPAREN, - [309321] = 2, + [340756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17292), 1, + aux_sym_heredoc_redirect_token1, + [340763] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [309328] = 2, + ACTIONS(17294), 1, + aux_sym_brace_expression_token1, + [340770] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17296), 1, + anon_sym_BQUOTE, + [340777] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17298), 1, + anon_sym_esac, + [340784] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15713), 1, + ACTIONS(17300), 1, + ts_builtin_sym_end, + [340791] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17302), 1, anon_sym_RBRACE2, - [309335] = 2, + [340798] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15715), 1, + ACTIONS(17288), 1, anon_sym_BQUOTE, - [309342] = 2, + [340805] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15717), 1, + ACTIONS(17304), 1, anon_sym_RBRACE3, - [309349] = 2, + [340812] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15711), 1, - anon_sym_BQUOTE, - [309356] = 2, + ACTIONS(17306), 1, + aux_sym_brace_expression_token1, + [340819] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15719), 1, + ACTIONS(17308), 1, anon_sym_RPAREN, - [309363] = 2, + [340826] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15721), 1, - aux_sym_brace_expression_token1, - [309370] = 2, + ACTIONS(17310), 1, + anon_sym_RPAREN, + [340833] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [309377] = 2, + ACTIONS(17312), 1, + anon_sym_BQUOTE, + [340840] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15723), 1, + ACTIONS(17308), 1, anon_sym_BQUOTE, - [309384] = 2, + [340847] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15719), 1, - anon_sym_BQUOTE, - [309391] = 2, - ACTIONS(3), 1, + ACTIONS(17314), 1, + anon_sym_LT_LT_LT, + [340854] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(15725), 1, - aux_sym_heredoc_redirect_token1, - [309398] = 2, + ACTIONS(17316), 1, + anon_sym_RBRACE3, + [340861] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15679), 1, - anon_sym_BQUOTE, - [309405] = 2, + ACTIONS(17318), 1, + aux_sym_brace_expression_token1, + [340868] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15727), 1, - anon_sym_RPAREN, - [309412] = 2, + ACTIONS(17320), 1, + anon_sym_RBRACE2, + [340875] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15729), 1, + ACTIONS(17322), 1, anon_sym_RPAREN, - [309419] = 2, + [340882] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15731), 1, - anon_sym_esac, - [309426] = 2, + ACTIONS(10617), 1, + anon_sym_RBRACK, + [340889] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15733), 1, - aux_sym_brace_expression_token1, - [309433] = 2, + ACTIONS(10615), 1, + anon_sym_RBRACK, + [340896] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15735), 1, + ACTIONS(17324), 1, anon_sym_RBRACE2, - [309440] = 2, + [340903] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309447] = 2, + ACTIONS(17326), 1, + anon_sym_BQUOTE, + [340910] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15737), 1, - anon_sym_RPAREN, - [309454] = 2, + ACTIONS(17328), 1, + aux_sym_brace_expression_token1, + [340917] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(17330), 1, anon_sym_RBRACE3, - [309461] = 2, + [340924] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15739), 1, - anon_sym_esac, - [309468] = 2, + ACTIONS(17332), 1, + anon_sym_RPAREN, + [340931] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17334), 1, + anon_sym_BQUOTE, + [340938] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15741), 1, + ACTIONS(17336), 1, anon_sym_RBRACE3, - [309475] = 2, + [340945] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15743), 1, - anon_sym_RBRACE2, - [309482] = 2, + ACTIONS(17338), 1, + anon_sym_RPAREN, + [340952] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [309489] = 2, + ACTIONS(17340), 1, + anon_sym_BQUOTE, + [340959] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15745), 1, + ACTIONS(17342), 1, aux_sym_brace_expression_token1, - [309496] = 2, + [340966] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15747), 1, - anon_sym_RBRACE2, - [309503] = 2, + ACTIONS(17332), 1, + anon_sym_BQUOTE, + [340973] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15749), 1, + ACTIONS(17344), 1, anon_sym_RPAREN, - [309510] = 2, + [340980] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9852), 1, - anon_sym_RBRACK, - [309517] = 2, + ACTIONS(17322), 1, + anon_sym_BQUOTE, + [340987] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9784), 1, - anon_sym_RBRACK, - [309524] = 2, + ACTIONS(17346), 1, + anon_sym_BQUOTE, + [340994] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15751), 1, - anon_sym_RBRACE2, - [309531] = 2, + ACTIONS(17348), 1, + anon_sym_BQUOTE, + [341001] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15753), 1, - sym_word, - [309538] = 2, + ACTIONS(17350), 1, + anon_sym_RBRACE3, + [341008] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15755), 1, + ACTIONS(17352), 1, aux_sym_brace_expression_token1, - [309545] = 2, + [341015] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15757), 1, - anon_sym_RBRACE3, - [309552] = 2, + ACTIONS(17338), 1, + anon_sym_BQUOTE, + [341022] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15759), 1, + ACTIONS(17354), 1, anon_sym_RPAREN, - [309559] = 2, + [341029] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15761), 1, - anon_sym_RBRACE2, - [309566] = 2, + ACTIONS(17356), 1, + anon_sym_RPAREN, + [341036] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309573] = 2, + ACTIONS(17358), 1, + anon_sym_RPAREN, + [341043] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14954), 1, - anon_sym_fi, - [309580] = 2, + ACTIONS(17360), 1, + anon_sym_BQUOTE, + [341050] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15763), 1, - anon_sym_RPAREN, - [309587] = 2, + ACTIONS(17356), 1, + anon_sym_BQUOTE, + [341057] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15765), 1, + ACTIONS(17362), 1, aux_sym_brace_expression_token1, - [309594] = 2, + [341064] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15767), 1, - anon_sym_RBRACE3, - [309601] = 2, + ACTIONS(17364), 1, + anon_sym_RBRACE2, + [341071] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15769), 1, - anon_sym_esac, - [309608] = 2, + ACTIONS(17366), 1, + anon_sym_RPAREN, + [341078] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [309615] = 2, + ACTIONS(17290), 1, + anon_sym_BQUOTE, + [341085] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15771), 1, + ACTIONS(17368), 1, anon_sym_BQUOTE, - [309622] = 2, + [341092] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15773), 1, - anon_sym_esac, - [309629] = 2, + ACTIONS(16442), 1, + anon_sym_RBRACE3, + [341099] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15763), 1, + ACTIONS(17366), 1, anon_sym_BQUOTE, - [309636] = 2, + [341106] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15775), 1, + ACTIONS(17370), 1, aux_sym_brace_expression_token1, - [309643] = 2, + [341113] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15777), 1, - anon_sym_RPAREN, - [309650] = 2, + ACTIONS(16442), 1, + anon_sym_RBRACE3, + [341120] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15779), 1, - anon_sym_RPAREN, - [309657] = 2, + ACTIONS(16442), 1, + anon_sym_RBRACE3, + [341127] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15781), 1, + ACTIONS(17372), 1, anon_sym_RBRACE3, - [309664] = 2, + [341134] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15783), 1, - anon_sym_RBRACE2, - [309671] = 2, + ACTIONS(17374), 1, + anon_sym_RPAREN, + [341141] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [309678] = 2, + ACTIONS(16275), 1, + anon_sym_fi, + [341148] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15785), 1, - anon_sym_RBRACE2, - [309685] = 2, + ACTIONS(17376), 1, + sym_word, + [341155] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15787), 1, + ACTIONS(17378), 1, aux_sym_brace_expression_token1, - [309692] = 2, + [341162] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15789), 1, - anon_sym_RBRACE3, - [309699] = 2, + ACTIONS(17380), 1, + anon_sym_RBRACE2, + [341169] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15058), 1, - anon_sym_fi, - [309706] = 2, + ACTIONS(17382), 1, + anon_sym_RBRACE3, + [341176] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15791), 1, - anon_sym_RBRACE3, - [309713] = 2, + ACTIONS(17384), 1, + anon_sym_RPAREN, + [341183] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15793), 1, - anon_sym_esac, - [309720] = 2, + ACTIONS(16201), 1, + anon_sym_fi, + [341190] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15795), 1, + ACTIONS(17386), 1, anon_sym_RPAREN, - [309727] = 2, + [341197] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15797), 1, + ACTIONS(17388), 1, anon_sym_esac, - [309734] = 2, + [341204] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15799), 1, + ACTIONS(17390), 1, aux_sym_brace_expression_token1, - [309741] = 2, + [341211] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15801), 1, - anon_sym_BQUOTE, - [309748] = 2, + ACTIONS(17392), 1, + anon_sym_RPAREN, + [341218] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15803), 1, + ACTIONS(16442), 1, anon_sym_RBRACE3, - [309755] = 2, + [341225] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [309762] = 2, + ACTIONS(17394), 1, + anon_sym_esac, + [341232] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15805), 1, - anon_sym_RBRACK_RBRACK, - [309769] = 2, + ACTIONS(17396), 1, + anon_sym_BQUOTE, + [341239] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15807), 1, - sym_heredoc_end, - [309776] = 2, + ACTIONS(17398), 1, + anon_sym_RPAREN, + [341246] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15809), 1, - sym_heredoc_end, - [309783] = 2, + ACTIONS(17400), 1, + anon_sym_RPAREN, + [341253] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15811), 1, + ACTIONS(17402), 1, aux_sym_brace_expression_token1, - [309790] = 2, + [341260] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15813), 1, - anon_sym_RPAREN, - [309797] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15815), 1, - anon_sym_RBRACK_RBRACK, - [309804] = 2, + ACTIONS(17404), 1, + anon_sym_esac, + [341267] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15817), 1, + ACTIONS(17406), 1, anon_sym_BQUOTE, - [309811] = 2, + [341274] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15819), 1, + ACTIONS(17408), 1, anon_sym_RBRACE3, - [309818] = 2, + [341281] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15821), 1, - anon_sym_fi, - [309825] = 2, + ACTIONS(17386), 1, + anon_sym_BQUOTE, + [341288] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15823), 1, - anon_sym_esac, - [309832] = 2, + ACTIONS(17410), 1, + anon_sym_RPAREN, + [341295] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15825), 1, - aux_sym_brace_expression_token1, - [309839] = 2, + ACTIONS(17412), 1, + anon_sym_RPAREN, + [341302] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15827), 1, - anon_sym_esac, - [309846] = 2, + ACTIONS(17414), 1, + aux_sym_brace_expression_token1, + [341309] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15829), 1, - anon_sym_RPAREN, - [309853] = 2, + ACTIONS(17416), 1, + anon_sym_RBRACE3, + [341316] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15831), 1, - anon_sym_RBRACE3, - [309860] = 2, + ACTIONS(17418), 1, + anon_sym_RBRACE2, + [341323] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15833), 1, + ACTIONS(17420), 1, anon_sym_BQUOTE, - [309867] = 2, + [341330] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15829), 1, + ACTIONS(17412), 1, anon_sym_BQUOTE, - [309874] = 2, + [341337] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15835), 1, + ACTIONS(17422), 1, anon_sym_RPAREN, - [309881] = 2, + [341344] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15837), 1, - aux_sym_brace_expression_token1, - [309888] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15839), 1, + ACTIONS(17424), 1, anon_sym_esac, - [309895] = 2, + [341351] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15841), 1, - anon_sym_esac, - [309902] = 2, + ACTIONS(17426), 1, + aux_sym_brace_expression_token1, + [341358] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15843), 1, + ACTIONS(17252), 1, anon_sym_BQUOTE, - [309909] = 2, + [341365] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15845), 1, - anon_sym_RPAREN, - [309916] = 2, + ACTIONS(17428), 1, + anon_sym_RBRACE2, + [341372] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15847), 1, + ACTIONS(17430), 1, anon_sym_RBRACE2, - [309923] = 2, + [341379] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15813), 1, - anon_sym_BQUOTE, - [309930] = 2, + ACTIONS(17432), 1, + anon_sym_RBRACE2, + [341386] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17434), 1, + anon_sym_RPAREN, + [341393] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17436), 1, + anon_sym_RBRACE3, + [341400] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15849), 1, + ACTIONS(17438), 1, aux_sym_brace_expression_token1, - [309937] = 2, + [341407] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15851), 1, - anon_sym_BQUOTE, - [309944] = 2, + ACTIONS(17440), 1, + anon_sym_esac, + [341414] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15845), 1, + ACTIONS(17442), 1, anon_sym_BQUOTE, - [309951] = 2, + [341421] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15853), 1, - anon_sym_RPAREN, - [309958] = 2, + ACTIONS(17444), 1, + aux_sym_brace_expression_token1, + [341428] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15795), 1, - anon_sym_BQUOTE, - [309965] = 2, + ACTIONS(17446), 1, + anon_sym_esac, + [341435] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15855), 1, + ACTIONS(17448), 1, anon_sym_RPAREN, - [309972] = 2, + [341442] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15857), 1, - anon_sym_RPAREN, - [309979] = 2, + ACTIONS(17450), 1, + anon_sym_LT_LT_LT, + [341449] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15859), 1, + ACTIONS(17452), 1, aux_sym_brace_expression_token1, - [309986] = 2, + [341456] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15861), 1, - anon_sym_RBRACE2, - [309993] = 2, + ACTIONS(17454), 1, + aux_sym_brace_expression_token1, + [341463] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15863), 1, + ACTIONS(17456), 1, anon_sym_RPAREN, - [310000] = 2, + [341470] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15865), 1, - anon_sym_RBRACE3, - [310007] = 2, + ACTIONS(17458), 1, + anon_sym_RPAREN_RPAREN, + [341477] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15867), 1, + ACTIONS(16442), 1, anon_sym_RBRACE3, - [310014] = 2, + [341484] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15869), 1, - anon_sym_RPAREN, - [310021] = 2, + ACTIONS(17460), 1, + anon_sym_in, + [341491] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15871), 1, - anon_sym_RBRACE2, - [310028] = 2, + ACTIONS(17462), 1, + anon_sym_in, + [341498] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15873), 1, + ACTIONS(17464), 1, aux_sym_brace_expression_token1, - [310035] = 2, + [341505] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15875), 1, - anon_sym_BQUOTE, - [310042] = 2, + ACTIONS(17466), 1, + anon_sym_RBRACE2, + [341512] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15869), 1, - anon_sym_BQUOTE, - [310049] = 2, + ACTIONS(17468), 1, + anon_sym_RPAREN, + [341519] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15877), 1, - anon_sym_RBRACE2, - [310056] = 2, + ACTIONS(17398), 1, + anon_sym_BQUOTE, + [341526] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15879), 1, - anon_sym_RPAREN, - [310063] = 2, + ACTIONS(17470), 1, + anon_sym_RBRACE3, + [341533] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15881), 1, - anon_sym_RPAREN, - [310070] = 2, + ACTIONS(17472), 1, + sym_heredoc_end, + [341540] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15883), 1, - anon_sym_RPAREN, - [310077] = 2, + ACTIONS(17474), 1, + anon_sym_RBRACK_RBRACK, + [341547] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15885), 1, + ACTIONS(17476), 1, aux_sym_brace_expression_token1, - [310084] = 2, + [341554] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15887), 1, - anon_sym_RBRACE2, - [310091] = 2, + ACTIONS(17478), 1, + anon_sym_RPAREN, + [341561] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15889), 1, - anon_sym_LT_LT_LT, - [310098] = 2, + ACTIONS(17480), 1, + sym_heredoc_end, + [341568] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15891), 1, - aux_sym_brace_expression_token1, - [310105] = 2, + ACTIONS(17482), 1, + anon_sym_RBRACE3, + [341575] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15893), 1, - anon_sym_RPAREN_RPAREN, - [310112] = 2, + ACTIONS(17484), 1, + ts_builtin_sym_end, + [341582] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15895), 1, - anon_sym_in, - [310119] = 2, + ACTIONS(17486), 1, + anon_sym_RBRACE3, + [341589] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15897), 1, - anon_sym_RBRACE3, - [310126] = 2, + ACTIONS(17488), 1, + anon_sym_RPAREN, + [341596] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15899), 1, + ACTIONS(17490), 1, aux_sym_brace_expression_token1, - [310133] = 2, + [341603] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15901), 1, - anon_sym_RBRACE3, - [310140] = 2, + ACTIONS(17492), 1, + anon_sym_BQUOTE, + [341610] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15903), 1, + ACTIONS(17494), 1, anon_sym_RPAREN, - [310147] = 2, + [341617] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15905), 1, - anon_sym_RPAREN, - [310154] = 2, + ACTIONS(17496), 1, + anon_sym_BQUOTE, + [341624] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15907), 1, - anon_sym_RBRACE3, - [310161] = 2, + ACTIONS(17488), 1, + anon_sym_BQUOTE, + [341631] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15909), 1, + ACTIONS(17498), 1, anon_sym_RPAREN, - [310168] = 2, + [341638] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15911), 1, - anon_sym_in, - [310175] = 2, + ACTIONS(16225), 1, + anon_sym_fi, + [341645] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15913), 1, + ACTIONS(17500), 1, aux_sym_brace_expression_token1, - [310182] = 2, + [341652] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15915), 1, + ACTIONS(17502), 1, anon_sym_BQUOTE, - [310189] = 2, - ACTIONS(71), 1, + [341659] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15917), 1, - anon_sym_RBRACE3, - [310196] = 2, - ACTIONS(71), 1, + ACTIONS(17504), 1, + aux_sym_heredoc_redirect_token1, + [341666] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15919), 1, - anon_sym_RPAREN, - [310203] = 2, + ACTIONS(17506), 1, + aux_sym_heredoc_redirect_token1, + [341673] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15779), 1, + ACTIONS(17508), 1, anon_sym_BQUOTE, - [310210] = 2, + [341680] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15921), 1, + ACTIONS(17494), 1, anon_sym_BQUOTE, - [310217] = 2, + [341687] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15923), 1, - anon_sym_BQUOTE, - [310224] = 2, + ACTIONS(17510), 1, + anon_sym_RBRACE2, + [341694] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15925), 1, + ACTIONS(17512), 1, aux_sym_brace_expression_token1, - [310231] = 2, + [341701] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15927), 1, - ts_builtin_sym_end, - [310238] = 2, + ACTIONS(17514), 1, + anon_sym_esac, + [341708] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15929), 1, + ACTIONS(17516), 1, anon_sym_esac, - [310245] = 2, + [341715] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15931), 1, - anon_sym_BQUOTE, - [310252] = 2, - ACTIONS(71), 1, + ACTIONS(17518), 1, + anon_sym_RPAREN, + [341722] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15919), 1, - anon_sym_BQUOTE, - [310259] = 2, - ACTIONS(71), 1, + ACTIONS(17520), 1, + aux_sym_heredoc_redirect_token1, + [341729] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15933), 1, - anon_sym_RPAREN, - [310266] = 2, + ACTIONS(17522), 1, + aux_sym_heredoc_redirect_token1, + [341736] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15881), 1, - anon_sym_BQUOTE, - [310273] = 2, + ACTIONS(17524), 1, + anon_sym_esac, + [341743] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15935), 1, + ACTIONS(17526), 1, aux_sym_brace_expression_token1, - [310280] = 2, + [341750] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15909), 1, - anon_sym_BQUOTE, - [310287] = 2, + ACTIONS(17528), 1, + anon_sym_RPAREN, + [341757] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15937), 1, - anon_sym_RBRACE2, - [310294] = 2, + ACTIONS(17530), 1, + anon_sym_RBRACE3, + [341764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15939), 1, + ACTIONS(17532), 1, aux_sym_heredoc_redirect_token1, - [310301] = 2, + [341771] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15941), 1, + ACTIONS(17534), 1, anon_sym_RPAREN, - [310308] = 2, + [341778] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15943), 1, - anon_sym_RPAREN, - [310315] = 2, - ACTIONS(71), 1, + ACTIONS(17536), 1, + anon_sym_BQUOTE, + [341785] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15945), 1, - sym_heredoc_end, - [310322] = 2, + ACTIONS(17538), 1, + aux_sym_heredoc_redirect_token1, + [341792] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15947), 1, + ACTIONS(17540), 1, aux_sym_brace_expression_token1, - [310329] = 2, + [341799] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15903), 1, + ACTIONS(17478), 1, anon_sym_BQUOTE, - [310336] = 2, + [341806] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15949), 1, - anon_sym_RBRACE2, - [310343] = 2, - ACTIONS(3), 1, + ACTIONS(17542), 1, + anon_sym_BQUOTE, + [341813] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(15951), 1, - aux_sym_heredoc_redirect_token1, - [310350] = 2, + ACTIONS(17534), 1, + anon_sym_BQUOTE, + [341820] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15953), 1, + ACTIONS(17544), 1, anon_sym_RPAREN, - [310357] = 2, + [341827] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15955), 1, - anon_sym_RBRACE3, - [310364] = 2, + ACTIONS(17546), 1, + sym_heredoc_end, + [341834] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [310371] = 2, + ACTIONS(17548), 1, + anon_sym_RBRACE2, + [341841] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15957), 1, + ACTIONS(17550), 1, aux_sym_brace_expression_token1, - [310378] = 2, + [341848] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15959), 1, - anon_sym_RPAREN, - [310385] = 2, + ACTIONS(17552), 1, + sym_heredoc_end, + [341855] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15961), 1, + ACTIONS(16111), 1, anon_sym_RBRACE3, - [310392] = 2, + [341862] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15963), 1, + ACTIONS(17554), 1, anon_sym_RPAREN, - [310399] = 2, + [341869] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15965), 1, - anon_sym_RPAREN, - [310406] = 2, + ACTIONS(17556), 1, + anon_sym_BQUOTE, + [341876] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15967), 1, - anon_sym_BQUOTE, - [310413] = 2, + ACTIONS(17558), 1, + anon_sym_fi, + [341883] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15963), 1, - anon_sym_BQUOTE, - [310420] = 2, + ACTIONS(17560), 1, + anon_sym_esac, + [341890] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15969), 1, + ACTIONS(17562), 1, aux_sym_brace_expression_token1, - [310427] = 2, + [341897] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15971), 1, - anon_sym_RPAREN, - [310434] = 2, + ACTIONS(17564), 1, + anon_sym_BQUOTE, + [341904] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15973), 1, - anon_sym_RBRACE2, - [310441] = 2, + ACTIONS(17566), 1, + anon_sym_esac, + [341911] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15975), 1, - anon_sym_RBRACE2, - [310448] = 2, + ACTIONS(17568), 1, + anon_sym_RBRACE3, + [341918] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15977), 1, + ACTIONS(17456), 1, anon_sym_BQUOTE, - [310455] = 2, + [341925] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15979), 1, + ACTIONS(17570), 1, anon_sym_RBRACE2, - [310462] = 2, + [341932] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15981), 1, - anon_sym_RBRACE2, - [310469] = 2, + ACTIONS(17572), 1, + anon_sym_RPAREN, + [341939] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15983), 1, + ACTIONS(17574), 1, aux_sym_brace_expression_token1, - [310476] = 2, + [341946] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15985), 1, - anon_sym_BQUOTE, - [310483] = 2, + ACTIONS(17576), 1, + anon_sym_RPAREN, + [341953] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15987), 1, - anon_sym_RBRACE3, - [310490] = 2, + ACTIONS(17174), 1, + anon_sym_BQUOTE, + [341960] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15989), 1, - anon_sym_RPAREN, - [310497] = 2, + ACTIONS(17578), 1, + anon_sym_BQUOTE, + [341967] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15991), 1, + ACTIONS(17580), 1, anon_sym_RBRACE3, - [310504] = 2, + [341974] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15993), 1, - anon_sym_RPAREN, - [310511] = 2, + ACTIONS(17572), 1, + anon_sym_BQUOTE, + [341981] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15995), 1, - anon_sym_RBRACK_RBRACK, - [310518] = 2, + ACTIONS(17582), 1, + anon_sym_RPAREN, + [341988] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15997), 1, + ACTIONS(17584), 1, aux_sym_brace_expression_token1, - [310525] = 2, - ACTIONS(3), 1, + [341995] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(15999), 1, - aux_sym_heredoc_redirect_token1, - [310532] = 2, + ACTIONS(17586), 1, + anon_sym_esac, + [342002] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16001), 1, - anon_sym_RPAREN, - [310539] = 2, + ACTIONS(17588), 1, + anon_sym_esac, + [342009] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16003), 1, - anon_sym_BQUOTE, - [310546] = 2, + ACTIONS(17590), 1, + anon_sym_RBRACE2, + [342016] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16005), 1, - anon_sym_RBRACE3, - [310553] = 2, - ACTIONS(3), 1, + ACTIONS(17592), 1, + anon_sym_RPAREN, + [342023] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16007), 1, - aux_sym_heredoc_redirect_token1, - [310560] = 2, + ACTIONS(17594), 1, + anon_sym_RBRACE3, + [342030] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16009), 1, + ACTIONS(17596), 1, anon_sym_RPAREN, - [310567] = 2, + [342037] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16011), 1, + ACTIONS(17598), 1, aux_sym_brace_expression_token1, - [310574] = 2, + [342044] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16013), 1, - sym_heredoc_start, - [310581] = 2, + ACTIONS(17600), 1, + anon_sym_RPAREN, + [342051] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16015), 1, + ACTIONS(17602), 1, anon_sym_BQUOTE, - [310588] = 2, + [342058] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16009), 1, + ACTIONS(17528), 1, anon_sym_BQUOTE, - [310595] = 2, + [342065] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16017), 1, + ACTIONS(17604), 1, anon_sym_RPAREN, - [310602] = 2, + [342072] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16019), 1, - sym_heredoc_end, - [310609] = 2, + ACTIONS(17606), 1, + anon_sym_RPAREN, + [342079] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15993), 1, - anon_sym_BQUOTE, - [310616] = 2, + ACTIONS(10741), 1, + anon_sym_RBRACK, + [342086] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16021), 1, + ACTIONS(17608), 1, aux_sym_brace_expression_token1, - [310623] = 2, + [342093] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10739), 1, + anon_sym_RBRACK, + [342100] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16023), 1, + ACTIONS(17610), 1, anon_sym_RBRACE2, - [310630] = 2, + [342107] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16025), 1, - anon_sym_RPAREN, - [310637] = 2, + ACTIONS(17612), 1, + anon_sym_BQUOTE, + [342114] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16027), 1, - anon_sym_RBRACK_RBRACK, - [310644] = 2, + ACTIONS(17614), 1, + anon_sym_fi, + [342121] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16029), 1, - anon_sym_RBRACE3, - [310651] = 2, + ACTIONS(17616), 1, + anon_sym_esac, + [342128] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16031), 1, + ACTIONS(16442), 1, anon_sym_RBRACE3, - [310658] = 2, + [342135] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16033), 1, - anon_sym_BQUOTE, - [310665] = 2, + ACTIONS(17618), 1, + aux_sym_brace_expression_token1, + [342142] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16035), 1, - aux_sym_brace_expression_token1, - [310672] = 2, + ACTIONS(17620), 1, + anon_sym_esac, + [342149] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16037), 1, - anon_sym_RBRACE2, - [310679] = 2, + ACTIONS(17600), 1, + anon_sym_BQUOTE, + [342156] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16039), 1, + ACTIONS(17622), 1, anon_sym_RPAREN, - [310686] = 2, + [342163] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16041), 1, - anon_sym_RBRACE3, - [310693] = 2, + ACTIONS(17624), 1, + anon_sym_BQUOTE, + [342170] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16043), 1, - anon_sym_RPAREN, - [310700] = 2, + ACTIONS(17626), 1, + anon_sym_LBRACK, + [342177] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16045), 1, - anon_sym_RBRACE3, - [310707] = 2, + ACTIONS(17628), 1, + aux_sym_brace_expression_token1, + [342184] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16047), 1, - anon_sym_BQUOTE, - [310714] = 2, + ACTIONS(17630), 1, + aux_sym_brace_expression_token1, + [342191] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16049), 1, - aux_sym_brace_expression_token1, - [310721] = 2, + ACTIONS(17632), 1, + anon_sym_RBRACE2, + [342198] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16043), 1, + ACTIONS(17592), 1, anon_sym_BQUOTE, - [310728] = 2, + [342205] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16051), 1, + ACTIONS(17634), 1, anon_sym_RPAREN, - [310735] = 2, + [342212] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16053), 1, - anon_sym_LBRACK, - [310742] = 2, - ACTIONS(3), 1, + ACTIONS(17636), 1, + anon_sym_RBRACE3, + [342219] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16055), 1, - aux_sym_heredoc_redirect_token1, - [310749] = 2, - ACTIONS(3), 1, + ACTIONS(17638), 1, + anon_sym_RPAREN, + [342226] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16057), 1, - aux_sym_heredoc_redirect_token1, - [310756] = 2, + ACTIONS(17640), 1, + anon_sym_RBRACE2, + [342233] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16059), 1, - anon_sym_RBRACE3, - [310763] = 2, + ACTIONS(17642), 1, + anon_sym_RPAREN, + [342240] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16061), 1, - aux_sym_brace_expression_token1, - [310770] = 2, + ACTIONS(17644), 1, + anon_sym_BQUOTE, + [342247] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15989), 1, + ACTIONS(17638), 1, anon_sym_BQUOTE, - [310777] = 2, + [342254] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16063), 1, + ACTIONS(17646), 1, anon_sym_RBRACE3, - [310784] = 2, + [342261] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16065), 1, - anon_sym_BQUOTE, - [310791] = 2, + ACTIONS(17648), 1, + anon_sym_RPAREN, + [342268] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17650), 1, + anon_sym_RPAREN, + [342275] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16039), 1, + ACTIONS(17652), 1, anon_sym_BQUOTE, - [310798] = 2, - ACTIONS(3), 1, + [342282] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16067), 1, - aux_sym_heredoc_redirect_token1, - [310805] = 2, + ACTIONS(17654), 1, + anon_sym_RBRACE3, + [342289] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16069), 1, - anon_sym_RPAREN, - [310812] = 2, + ACTIONS(17656), 1, + anon_sym_fi, + [342296] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16071), 1, - aux_sym_brace_expression_token1, - [310819] = 2, + ACTIONS(17658), 1, + anon_sym_RPAREN, + [342303] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16073), 1, + ACTIONS(17660), 1, anon_sym_RPAREN, - [310826] = 2, + [342310] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15863), 1, + ACTIONS(17662), 1, anon_sym_BQUOTE, - [310833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16075), 1, - aux_sym_heredoc_redirect_token1, - [310840] = 2, + [342317] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16077), 1, + ACTIONS(17650), 1, anon_sym_BQUOTE, - [310847] = 2, + [342324] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16069), 1, - anon_sym_BQUOTE, - [310854] = 2, + ACTIONS(17664), 1, + anon_sym_RBRACE2, + [342331] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16079), 1, + ACTIONS(17666), 1, anon_sym_RPAREN, - [310861] = 2, + [342338] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16081), 1, - aux_sym_brace_expression_token1, - [310868] = 2, + ACTIONS(17668), 1, + anon_sym_BQUOTE, + [342345] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16083), 1, - anon_sym_RBRACE3, - [310875] = 2, + ACTIONS(17658), 1, + anon_sym_BQUOTE, + [342352] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16085), 1, - anon_sym_RPAREN, - [310882] = 2, + ACTIONS(17670), 1, + anon_sym_RBRACE2, + [342359] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16087), 1, - anon_sym_RBRACE2, - [310889] = 2, + ACTIONS(17672), 1, + anon_sym_RPAREN, + [342366] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16089), 1, + ACTIONS(17674), 1, anon_sym_RBRACE2, - [310896] = 2, + [342373] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15965), 1, + ACTIONS(17158), 1, anon_sym_BQUOTE, - [310903] = 2, + [342380] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(16417), 1, anon_sym_RBRACE3, - [310910] = 2, + [342387] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16091), 1, - aux_sym_brace_expression_token1, - [310917] = 2, + ACTIONS(17676), 1, + anon_sym_RBRACE2, + [342394] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16093), 1, - anon_sym_RBRACE3, - [310924] = 2, + ACTIONS(17678), 1, + sym_word, + [342401] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16095), 1, - anon_sym_RBRACE2, - [310931] = 2, + ACTIONS(17680), 1, + anon_sym_RBRACE3, + [342408] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16097), 1, - anon_sym_RPAREN, - [310938] = 2, + ACTIONS(17400), 1, + anon_sym_BQUOTE, + [342415] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14994), 1, - anon_sym_RBRACE3, - [310945] = 2, + ACTIONS(17682), 1, + anon_sym_RBRACK_RBRACK, + [342422] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16099), 1, - anon_sym_LT_LT_LT, - [310952] = 2, + ACTIONS(16417), 1, + anon_sym_RBRACE3, + [342429] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16101), 1, + ACTIONS(17684), 1, anon_sym_RPAREN, - [310959] = 2, + [342436] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16103), 1, - aux_sym_brace_expression_token1, - [310966] = 2, + ACTIONS(17686), 1, + anon_sym_esac, + [342443] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16105), 1, - anon_sym_RBRACE3, - [310973] = 2, + ACTIONS(17688), 1, + anon_sym_esac, + [342450] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16107), 1, - anon_sym_RPAREN, - [310980] = 2, + ACTIONS(17690), 1, + anon_sym_RBRACE2, + [342457] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16109), 1, - anon_sym_BQUOTE, - [310987] = 2, + ACTIONS(16442), 1, + anon_sym_RBRACE3, + [342464] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9954), 1, - anon_sym_RBRACK, - [310994] = 2, + ACTIONS(17692), 1, + anon_sym_BQUOTE, + [342471] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9892), 1, - anon_sym_RBRACK, - [311001] = 2, + ACTIONS(17694), 1, + anon_sym_BQUOTE, + [342478] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16111), 1, - anon_sym_RBRACE2, - [311008] = 2, + ACTIONS(17696), 1, + anon_sym_RBRACK_RBRACK, + [342485] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16113), 1, - aux_sym_brace_expression_token1, - [311015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16115), 1, - aux_sym_heredoc_redirect_token1, - [311022] = 2, + ACTIONS(17344), 1, + anon_sym_BQUOTE, + [342492] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16117), 1, + ACTIONS(17698), 1, anon_sym_RBRACE3, - [311029] = 2, + [342499] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16119), 1, + ACTIONS(17700), 1, anon_sym_RPAREN, - [311036] = 2, + [342506] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16121), 1, - anon_sym_BQUOTE, - [311043] = 2, + ACTIONS(16105), 1, + anon_sym_fi, + [342513] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16123), 1, + ACTIONS(17684), 1, anon_sym_BQUOTE, - [311050] = 2, + [342520] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14958), 1, - anon_sym_fi, - [311057] = 2, + ACTIONS(10695), 1, + anon_sym_RBRACK, + [342527] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16125), 1, - aux_sym_brace_expression_token1, - [311064] = 2, + ACTIONS(16932), 1, + aux_sym__simple_variable_name_token1, + [342534] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16119), 1, - anon_sym_BQUOTE, - [311071] = 2, + ACTIONS(17702), 1, + anon_sym_RBRACE3, + [342541] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16127), 1, + ACTIONS(16958), 1, anon_sym_RPAREN, - [311078] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16129), 1, - anon_sym_esac, - [311085] = 2, + [342548] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, - anon_sym_RBRACE3, - [311092] = 2, + ACTIONS(17704), 1, + sym_word, + [342555] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16131), 1, - aux_sym_brace_expression_token1, - [311099] = 2, + ACTIONS(17706), 1, + anon_sym_DOT_DOT, + [342562] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16133), 1, - anon_sym_esac, - [311106] = 2, + ACTIONS(16442), 1, + anon_sym_RBRACE3, + [342569] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16135), 1, - aux_sym_brace_expression_token1, - [311113] = 2, + ACTIONS(17708), 1, + anon_sym_BQUOTE, + [342576] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16107), 1, - anon_sym_BQUOTE, - [311120] = 2, + ACTIONS(17710), 1, + anon_sym_RPAREN, + [342583] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16137), 1, - anon_sym_RBRACE2, - [311127] = 2, + ACTIONS(17712), 1, + sym_heredoc_start, + [342590] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16139), 1, + ACTIONS(17714), 1, anon_sym_RPAREN, - [311134] = 2, + [342597] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16141), 1, + ACTIONS(17716), 1, anon_sym_RPAREN, - [311141] = 2, + [342604] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16143), 1, - anon_sym_RPAREN_RPAREN, - [311148] = 2, + ACTIONS(17718), 1, + anon_sym_RBRACE3, + [342611] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 1, + ACTIONS(17720), 1, anon_sym_RBRACE3, - [311155] = 2, + [342618] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16145), 1, - aux_sym_brace_expression_token1, - [311162] = 2, + ACTIONS(17722), 1, + sym_heredoc_start, + [342625] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16147), 1, - anon_sym_RBRACE2, - [311169] = 2, + ACTIONS(17724), 1, + anon_sym_RPAREN, + [342632] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16149), 1, + ACTIONS(17726), 1, anon_sym_RBRACE3, - [311176] = 2, + [342639] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15012), 1, - anon_sym_fi, - [311183] = 2, + ACTIONS(17728), 1, + anon_sym_BQUOTE, + [342646] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_RBRACE2, - [311190] = 2, + ACTIONS(17730), 1, + anon_sym_RPAREN, + [342653] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16153), 1, - anon_sym_esac, - [311197] = 2, + ACTIONS(17732), 1, + anon_sym_LT_LT_LT, + [342660] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15905), 1, - anon_sym_BQUOTE, - [311204] = 2, + ACTIONS(17734), 1, + anon_sym_RBRACE2, + [342667] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16155), 1, + ACTIONS(16442), 1, + anon_sym_RBRACE3, + [342674] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17736), 1, aux_sym_brace_expression_token1, - [311211] = 2, + [342681] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16157), 1, - anon_sym_esac, - [311218] = 2, + ACTIONS(17700), 1, + anon_sym_BQUOTE, + [342688] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16159), 1, + ACTIONS(17738), 1, + anon_sym_RPAREN_RPAREN, + [342695] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17740), 1, anon_sym_RPAREN, - [311225] = 2, + [342702] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16161), 1, - anon_sym_RBRACE2, - [311232] = 2, + ACTIONS(17742), 1, + anon_sym_in, + [342709] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16163), 1, + ACTIONS(17744), 1, + anon_sym_in, + [342716] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17746), 1, + anon_sym_BQUOTE, + [342723] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17724), 1, + anon_sym_BQUOTE, + [342730] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17748), 1, anon_sym_RPAREN, - [311239] = 2, + [342737] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16165), 1, - sym_heredoc_end, - [311246] = 2, + ACTIONS(17750), 1, + anon_sym_RBRACE2, + [342744] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16167), 1, - sym_heredoc_end, - [311253] = 2, + ACTIONS(17752), 1, + anon_sym_RPAREN, + [342751] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16169), 1, + ACTIONS(17754), 1, aux_sym_brace_expression_token1, - [311260] = 2, + [342758] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16171), 1, - anon_sym_RBRACE3, - [311267] = 2, + ACTIONS(17756), 1, + anon_sym_RPAREN, + [342765] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16173), 1, + ACTIONS(17758), 1, anon_sym_RPAREN, - [311274] = 2, + [342772] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14892), 1, - anon_sym_RBRACE3, - [311281] = 2, + ACTIONS(17760), 1, + anon_sym_RBRACE2, + [342779] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17762), 1, + aux_sym_heredoc_redirect_token1, + [342786] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17764), 1, + aux_sym_heredoc_redirect_token1, + [342793] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16175), 1, + ACTIONS(17384), 1, anon_sym_BQUOTE, - [311288] = 2, + [342800] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16177), 1, - anon_sym_fi, - [311295] = 2, + ACTIONS(17766), 1, + anon_sym_BQUOTE, + [342807] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16179), 1, - anon_sym_esac, - [311302] = 2, + ACTIONS(17752), 1, + anon_sym_BQUOTE, + [342814] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16181), 1, - aux_sym_brace_expression_token1, - [311309] = 2, + ACTIONS(17768), 1, + anon_sym_RPAREN, + [342821] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16183), 1, - anon_sym_esac, - [311316] = 2, + ACTIONS(17770), 1, + anon_sym_RPAREN, + [342828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17772), 1, + aux_sym_heredoc_redirect_token1, + [342835] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16173), 1, - anon_sym_BQUOTE, - [311323] = 2, + ACTIONS(17774), 1, + anon_sym_esac, + [342842] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16185), 1, + ACTIONS(17776), 1, anon_sym_RPAREN, - [311330] = 2, + [342849] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16187), 1, + ACTIONS(17778), 1, anon_sym_RBRACE3, - [311337] = 2, + [342856] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17780), 1, + aux_sym_heredoc_redirect_token1, + [342863] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [311344] = 2, + ACTIONS(17782), 1, + anon_sym_DOT_DOT, + [342870] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16189), 1, + ACTIONS(17784), 1, anon_sym_RBRACE2, - [311351] = 2, + [342877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17786), 1, + aux_sym_heredoc_redirect_token1, + [342884] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16191), 1, - aux_sym_brace_expression_token1, - [311358] = 2, + ACTIONS(17788), 1, + anon_sym_RBRACE2, + [342891] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16193), 1, + ACTIONS(17790), 1, anon_sym_esac, - [311365] = 2, + [342898] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16195), 1, + ACTIONS(17792), 1, anon_sym_esac, - [311372] = 2, + [342905] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16197), 1, + ACTIONS(17794), 1, anon_sym_RPAREN, - [311379] = 2, + [342912] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16199), 1, - anon_sym_RBRACE3, - [311386] = 2, + ACTIONS(17796), 1, + anon_sym_RPAREN, + [342919] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16201), 1, - anon_sym_BQUOTE, - [311393] = 2, + ACTIONS(16956), 1, + aux_sym__simple_variable_name_token1, + [342926] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16203), 1, + ACTIONS(17798), 1, anon_sym_RBRACE3, - [311400] = 2, + [342933] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16205), 1, - aux_sym_brace_expression_token1, - [311407] = 2, + ACTIONS(17800), 1, + anon_sym_esac, + [342940] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16207), 1, - anon_sym_RBRACE3, - [311414] = 2, + ACTIONS(17802), 1, + anon_sym_RPAREN, + [342947] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16197), 1, + ACTIONS(17804), 1, anon_sym_BQUOTE, - [311421] = 2, + [342954] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16209), 1, - anon_sym_RPAREN, - [311428] = 2, + ACTIONS(16285), 1, + anon_sym_fi, + [342961] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16211), 1, - anon_sym_in, - [311435] = 2, + ACTIONS(17806), 1, + anon_sym_RBRACE3, + [342968] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16213), 1, + ACTIONS(17808), 1, anon_sym_BQUOTE, - [311442] = 2, + [342975] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16209), 1, - anon_sym_BQUOTE, - [311449] = 2, + ACTIONS(17810), 1, + anon_sym_RPAREN, + [342982] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16215), 1, - aux_sym_brace_expression_token1, - [311456] = 2, + ACTIONS(17802), 1, + anon_sym_BQUOTE, + [342989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17812), 1, + aux_sym_heredoc_redirect_token1, + [342996] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16217), 1, + ACTIONS(16417), 1, anon_sym_RBRACE3, - [311463] = 2, + [343003] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16219), 1, - anon_sym_RPAREN, - [311470] = 2, + ACTIONS(17814), 1, + anon_sym_RBRACE3, + [343010] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16221), 1, + ACTIONS(17816), 1, anon_sym_RPAREN, - [311477] = 2, + [343017] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16223), 1, - anon_sym_RPAREN, - [311484] = 2, + ACTIONS(17818), 1, + anon_sym_RBRACK_RBRACK, + [343024] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16225), 1, + ACTIONS(17820), 1, anon_sym_BQUOTE, - [311491] = 2, + [343031] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16227), 1, - anon_sym_in, - [311498] = 2, + ACTIONS(17822), 1, + anon_sym_RPAREN, + [343038] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16229), 1, - aux_sym_brace_expression_token1, - [311505] = 2, + ACTIONS(17824), 1, + anon_sym_RPAREN, + [343045] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16219), 1, + ACTIONS(17810), 1, anon_sym_BQUOTE, - [311512] = 2, + [343052] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16231), 1, + ACTIONS(17826), 1, anon_sym_RPAREN, - [311519] = 2, + [343059] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16233), 1, - anon_sym_RPAREN, - [311526] = 2, + ACTIONS(17828), 1, + anon_sym_RBRACE3, + [343066] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16235), 1, - anon_sym_BQUOTE, - [311533] = 2, + ACTIONS(17830), 1, + anon_sym_RBRACE2, + [343073] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16237), 1, + ACTIONS(17832), 1, anon_sym_RBRACE2, - [311540] = 2, + [343080] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16239), 1, - anon_sym_esac, - [311547] = 2, + ACTIONS(17834), 1, + anon_sym_RBRACE3, + [343087] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16241), 1, - aux_sym_brace_expression_token1, - [311554] = 2, + ACTIONS(17836), 1, + anon_sym_RBRACE3, + [343094] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16243), 1, - anon_sym_RBRACE2, - [311561] = 2, + ACTIONS(17838), 1, + anon_sym_in, + [343101] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16245), 1, - anon_sym_RBRACE2, - [311568] = 2, + ACTIONS(17840), 1, + anon_sym_RPAREN, + [343108] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16247), 1, - anon_sym_RBRACE2, - [311575] = 2, + ACTIONS(17842), 1, + anon_sym_esac, + [343115] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16249), 1, + ACTIONS(16442), 1, anon_sym_RBRACE3, - [311582] = 2, + [343122] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16251), 1, - anon_sym_RPAREN, - [311589] = 2, + ACTIONS(16417), 1, + anon_sym_RBRACE3, + [343129] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16253), 1, - anon_sym_RBRACE3, - [311596] = 2, + ACTIONS(17844), 1, + anon_sym_esac, + [343136] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16255), 1, - aux_sym_brace_expression_token1, - [311603] = 2, + ACTIONS(17846), 1, + sym_heredoc_end, + [343143] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16257), 1, + ACTIONS(17794), 1, anon_sym_BQUOTE, - [311610] = 2, + [343150] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16259), 1, - anon_sym_RBRACE3, - [311617] = 2, + ACTIONS(17848), 1, + anon_sym_esac, + [343157] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16261), 1, + ACTIONS(17850), 1, + anon_sym_in, + [343164] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17852), 1, + sym_heredoc_end, + [343171] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17854), 1, anon_sym_RPAREN, - [311624] = 2, + [343178] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16251), 1, - anon_sym_BQUOTE, - [311631] = 2, + ACTIONS(17856), 1, + anon_sym_RPAREN, + [343185] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16263), 1, - anon_sym_BQUOTE, - [311638] = 2, + ACTIONS(17858), 1, + anon_sym_RBRACE3, + [343192] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16261), 1, + ACTIONS(17860), 1, anon_sym_BQUOTE, - [311645] = 2, + [343199] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16265), 1, - aux_sym_brace_expression_token1, - [311652] = 2, + ACTIONS(17862), 1, + anon_sym_RBRACE3, + [343206] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16267), 1, + ACTIONS(17864), 1, anon_sym_RPAREN, - [311659] = 2, + [343213] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16269), 1, - anon_sym_RPAREN, - [311666] = 2, + ACTIONS(17866), 1, + anon_sym_RBRACK_RBRACK, + [343220] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16271), 1, - anon_sym_BQUOTE, - [311673] = 2, + ACTIONS(17868), 1, + anon_sym_RPAREN, + [343227] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16273), 1, + ACTIONS(16984), 1, anon_sym_RPAREN, - [311680] = 2, + [343234] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16275), 1, - anon_sym_RBRACE3, - [311687] = 2, + ACTIONS(17870), 1, + anon_sym_BQUOTE, + [343241] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16277), 1, - anon_sym_RPAREN, - [311694] = 2, + ACTIONS(17864), 1, + anon_sym_BQUOTE, + [343248] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16279), 1, - aux_sym_brace_expression_token1, - [311701] = 2, + ACTIONS(17872), 1, + anon_sym_RPAREN, + [343255] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16281), 1, - anon_sym_RBRACE2, - [311708] = 2, + ACTIONS(17874), 1, + aux_sym_brace_expression_token1, + [343262] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16283), 1, + ACTIONS(17876), 1, anon_sym_RBRACE3, - [311715] = 2, + [343269] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16285), 1, + ACTIONS(17878), 1, anon_sym_RPAREN, - [311722] = 2, + [343276] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14820), 1, - anon_sym_RBRACE3, - [311729] = 2, + ACTIONS(17880), 1, + anon_sym_RBRACE2, + [343283] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16287), 1, - anon_sym_LT_LT_LT, - [311736] = 2, + ACTIONS(16297), 1, + anon_sym_RBRACE3, + [343290] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16289), 1, + ACTIONS(17856), 1, anon_sym_BQUOTE, - [311743] = 2, + [343297] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16285), 1, - anon_sym_BQUOTE, - [311750] = 2, + ACTIONS(17882), 1, + anon_sym_RBRACE3, + [343304] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16291), 1, + ACTIONS(17884), 1, anon_sym_BQUOTE, - [311757] = 2, + [343311] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16293), 1, - aux_sym_brace_expression_token1, - [311764] = 2, + ACTIONS(17886), 1, + anon_sym_RBRACE3, + [343318] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16277), 1, + ACTIONS(17888), 1, + anon_sym_RPAREN, + [343325] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17878), 1, anon_sym_BQUOTE, - [311771] = 2, + [343332] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16233), 1, + ACTIONS(17890), 1, anon_sym_BQUOTE, - [311778] = 2, + [343339] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16295), 1, - anon_sym_RPAREN, - [311785] = 2, + ACTIONS(17888), 1, + anon_sym_BQUOTE, + [343346] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16297), 1, + ACTIONS(17892), 1, anon_sym_RPAREN, - [311792] = 2, + [343353] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311799] = 2, + ACTIONS(17894), 1, + anon_sym_RPAREN, + [343360] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16299), 1, - anon_sym_RPAREN, - [311806] = 2, + ACTIONS(17896), 1, + anon_sym_BQUOTE, + [343367] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [311813] = 2, + ACTIONS(17868), 1, + anon_sym_BQUOTE, + [343374] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [311820] = 2, + ACTIONS(16165), 1, + anon_sym_fi, + [343381] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16301), 1, + ACTIONS(17898), 1, anon_sym_RBRACE2, - [311827] = 2, + [343388] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16303), 1, - anon_sym_RBRACE3, - [311834] = 2, + ACTIONS(17900), 1, + anon_sym_RPAREN, + [343395] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16305), 1, + ACTIONS(17902), 1, anon_sym_RPAREN, - [311841] = 2, + [343402] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16307), 1, - anon_sym_BQUOTE, - [311848] = 2, + ACTIONS(17904), 1, + anon_sym_RBRACE3, + [343409] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16309), 1, - anon_sym_BQUOTE, - [311855] = 2, + ACTIONS(17906), 1, + anon_sym_RBRACE2, + [343416] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16305), 1, - anon_sym_BQUOTE, - [311862] = 2, + ACTIONS(17908), 1, + anon_sym_RBRACE2, + [343423] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16311), 1, - anon_sym_RBRACK_RBRACK, - [311869] = 2, + ACTIONS(17910), 1, + anon_sym_RBRACE2, + [343430] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16273), 1, - anon_sym_BQUOTE, - [311876] = 2, + ACTIONS(17912), 1, + anon_sym_esac, + [343437] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16313), 1, - anon_sym_RPAREN, - [311883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16315), 1, - aux_sym_heredoc_redirect_token1, - [311890] = 2, - ACTIONS(3), 1, + ACTIONS(17914), 1, + sym_word, + [343444] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16317), 1, - aux_sym_heredoc_redirect_token1, - [311897] = 2, + ACTIONS(17916), 1, + sym_heredoc_start, + [343451] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + ACTIONS(16297), 1, anon_sym_RBRACE3, - [311904] = 2, + [343458] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16319), 1, + ACTIONS(17918), 1, anon_sym_RBRACE3, - [311911] = 2, + [343465] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16321), 1, + ACTIONS(17920), 1, anon_sym_RPAREN, - [311918] = 2, + [343472] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16323), 1, - anon_sym_RBRACE3, - [311925] = 2, + ACTIONS(17922), 1, + anon_sym_esac, + [343479] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16325), 1, - anon_sym_BQUOTE, - [311932] = 2, + ACTIONS(17924), 1, + anon_sym_LT_LT_LT, + [343486] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16321), 1, - anon_sym_BQUOTE, - [311939] = 2, + ACTIONS(10943), 1, + anon_sym_RBRACK, + [343493] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16327), 1, - anon_sym_RPAREN, - [311946] = 2, + ACTIONS(17926), 1, + anon_sym_RBRACE3, + [343500] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16329), 1, + ACTIONS(17928), 1, anon_sym_RBRACE3, - [311953] = 2, + [343507] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16331), 1, - anon_sym_RPAREN, - [311960] = 2, + ACTIONS(17930), 1, + anon_sym_RBRACE2, + [343514] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16333), 1, - anon_sym_RBRACE2, - [311967] = 2, + ACTIONS(16940), 1, + aux_sym__simple_variable_name_token1, + [343521] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16335), 1, - anon_sym_BQUOTE, - [311974] = 2, + ACTIONS(17932), 1, + anon_sym_RBRACE3, + [343528] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16331), 1, - anon_sym_BQUOTE, - [311981] = 2, + ACTIONS(17934), 1, + anon_sym_RPAREN, + [343535] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [311988] = 2, + ACTIONS(17936), 1, + sym_word, + [343542] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(17938), 1, + anon_sym_DOT_DOT, + [343549] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(17940), 1, anon_sym_RBRACE3, - [311995] = 2, + [343556] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16337), 1, - anon_sym_RBRACE2, - [312002] = 2, + ACTIONS(17942), 1, + anon_sym_RPAREN, + [343563] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [312009] = 2, - ACTIONS(3), 1, + ACTIONS(17944), 1, + anon_sym_RPAREN, + [343570] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16339), 1, - aux_sym_heredoc_redirect_token1, - [312016] = 2, + ACTIONS(17946), 1, + sym_heredoc_start, + [343577] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [312023] = 2, + ACTIONS(17948), 1, + anon_sym_RBRACE2, + [343584] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16341), 1, - anon_sym_RBRACE3, - [312030] = 2, - ACTIONS(3), 1, + ACTIONS(17950), 1, + anon_sym_BQUOTE, + [343591] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16343), 1, - aux_sym_heredoc_redirect_token1, - [312037] = 2, + ACTIONS(17952), 1, + anon_sym_esac, + [343598] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15629), 1, - aux_sym__simple_variable_name_token1, - [312044] = 2, + ACTIONS(17954), 1, + sym_heredoc_start, + [343605] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16345), 1, - anon_sym_RPAREN, - [312051] = 2, + ACTIONS(17942), 1, + anon_sym_BQUOTE, + [343612] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16347), 1, - anon_sym_RBRACE2, - [312058] = 2, + ACTIONS(17956), 1, + anon_sym_RPAREN, + [343619] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16349), 1, - sym_word, - [312065] = 2, + ACTIONS(17958), 1, + anon_sym_RPAREN, + [343626] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16351), 1, - anon_sym_DOT_DOT, - [312072] = 2, + ACTIONS(17960), 1, + anon_sym_BQUOTE, + [343633] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16353), 1, + ACTIONS(17962), 1, anon_sym_BQUOTE, - [312079] = 2, + [343640] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16355), 1, - anon_sym_RBRACE3, - [312086] = 2, + ACTIONS(17956), 1, + anon_sym_BQUOTE, + [343647] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16357), 1, + ACTIONS(17964), 1, anon_sym_RPAREN, - [312093] = 2, + [343654] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16359), 1, - sym_heredoc_start, - [312100] = 2, - ACTIONS(3), 1, + ACTIONS(17966), 1, + anon_sym_RBRACE2, + [343661] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16361), 1, - aux_sym_heredoc_redirect_token1, - [312107] = 2, + ACTIONS(17968), 1, + sym_heredoc_end, + [343668] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16345), 1, - anon_sym_BQUOTE, - [312114] = 2, + ACTIONS(17970), 1, + sym_heredoc_end, + [343675] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16363), 1, - anon_sym_RBRACE3, - [312121] = 2, + ACTIONS(17972), 1, + anon_sym_RBRACE2, + [343682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17974), 1, + aux_sym_heredoc_redirect_token1, + [343689] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16365), 1, + ACTIONS(17976), 1, anon_sym_RPAREN, - [312128] = 2, + [343696] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16367), 1, - sym_heredoc_start, - [312135] = 2, + ACTIONS(17978), 1, + anon_sym_LT_LT_LT, + [343703] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16369), 1, - anon_sym_RBRACE3, - [312142] = 2, + ACTIONS(17980), 1, + aux_sym_brace_expression_token1, + [343710] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16371), 1, - anon_sym_BQUOTE, - [312149] = 2, + ACTIONS(17982), 1, + anon_sym_RPAREN_RPAREN, + [343717] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9704), 1, - anon_sym_RBRACK, - [312156] = 2, + ACTIONS(17984), 1, + anon_sym_in, + [343724] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9678), 1, - anon_sym_RBRACK, - [312163] = 2, + ACTIONS(17986), 1, + anon_sym_in, + [343731] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16373), 1, - anon_sym_RBRACE2, - [312170] = 2, + ACTIONS(17988), 1, + anon_sym_BQUOTE, + [343738] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16365), 1, + ACTIONS(17920), 1, anon_sym_BQUOTE, - [312177] = 2, + [343745] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16375), 1, - anon_sym_RPAREN, - [312184] = 2, + ACTIONS(17990), 1, + anon_sym_RBRACE3, + [343752] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14852), 1, - anon_sym_RBRACE3, - [312191] = 2, + ACTIONS(17992), 1, + anon_sym_RPAREN, + [343759] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14862), 1, - anon_sym_fi, - [312198] = 2, - ACTIONS(3), 1, + ACTIONS(17994), 1, + anon_sym_RBRACE2, + [343766] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16377), 1, - aux_sym_heredoc_redirect_token1, - [312205] = 2, + ACTIONS(10575), 1, + anon_sym_RBRACK, + [343773] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16379), 1, - anon_sym_RBRACE3, - [312212] = 2, + ACTIONS(10693), 1, + anon_sym_RBRACK, + [343780] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16381), 1, - anon_sym_esac, - [312219] = 2, + ACTIONS(17996), 1, + aux_sym_brace_expression_token1, + [343787] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14824), 1, + ACTIONS(16442), 1, anon_sym_RBRACE3, - [312226] = 2, + [343794] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16383), 1, - anon_sym_RBRACE2, - [312233] = 2, + ACTIONS(17998), 1, + aux_sym_brace_expression_token1, + [343801] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16385), 1, - anon_sym_esac, - [312240] = 2, + ACTIONS(18000), 1, + anon_sym_BQUOTE, + [343808] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, + ACTIONS(18002), 1, anon_sym_RBRACE3, - [312247] = 2, + [343815] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16387), 1, - anon_sym_RPAREN, - [312254] = 2, + ACTIONS(18004), 1, + anon_sym_RBRACE3, + [343822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18006), 1, + aux_sym_heredoc_redirect_token1, + [343829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18008), 1, + aux_sym_heredoc_redirect_token1, + [343836] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16389), 1, - anon_sym_RBRACE3, - [312261] = 2, + ACTIONS(18010), 1, + anon_sym_BQUOTE, + [343843] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16391), 1, + ACTIONS(18012), 1, anon_sym_RPAREN, - [312268] = 2, + [343850] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16393), 1, + ACTIONS(18014), 1, anon_sym_RPAREN, - [312275] = 2, + [343857] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16395), 1, + ACTIONS(17992), 1, anon_sym_BQUOTE, - [312282] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312289] = 2, + [343864] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14874), 1, - anon_sym_fi, - [312296] = 2, + ACTIONS(18016), 1, + anon_sym_BQUOTE, + [343871] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16391), 1, + ACTIONS(18014), 1, anon_sym_BQUOTE, - [312303] = 2, - ACTIONS(71), 1, + [343878] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16397), 1, - anon_sym_esac, - [312310] = 2, + ACTIONS(18018), 1, + aux_sym_heredoc_redirect_token1, + [343885] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16399), 1, - anon_sym_RBRACE3, - [312317] = 2, + ACTIONS(18020), 1, + anon_sym_BQUOTE, + [343892] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16401), 1, - anon_sym_esac, - [312324] = 2, + ACTIONS(18012), 1, + anon_sym_BQUOTE, + [343899] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16403), 1, + ACTIONS(18022), 1, anon_sym_RPAREN, - [312331] = 2, - ACTIONS(71), 1, + [343906] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16405), 1, - anon_sym_RBRACE3, - [312338] = 2, + ACTIONS(18024), 1, + aux_sym_heredoc_redirect_token1, + [343913] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16407), 1, - sym_heredoc_end, - [312345] = 2, + ACTIONS(18026), 1, + anon_sym_RBRACK_RBRACK, + [343920] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16409), 1, - sym_heredoc_end, - [312352] = 2, + ACTIONS(18028), 1, + anon_sym_RBRACE2, + [343927] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16411), 1, - anon_sym_RBRACE3, - [312359] = 2, - ACTIONS(71), 1, + ACTIONS(18030), 1, + anon_sym_RPAREN, + [343934] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16413), 1, - anon_sym_BQUOTE, - [312366] = 2, + ACTIONS(18032), 1, + aux_sym_heredoc_redirect_token1, + [343941] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16415), 1, - anon_sym_RBRACE3, - [312373] = 2, + ACTIONS(18034), 1, + anon_sym_RPAREN, + [343948] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16417), 1, + ACTIONS(18036), 1, anon_sym_RPAREN, - [312380] = 2, - ACTIONS(71), 1, + [343955] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16403), 1, - anon_sym_BQUOTE, - [312387] = 2, + ACTIONS(18038), 1, + aux_sym_heredoc_redirect_token1, + [343962] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16419), 1, - anon_sym_fi, - [312394] = 2, + ACTIONS(18040), 1, + anon_sym_RBRACE2, + [343969] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16421), 1, - anon_sym_esac, - [312401] = 2, + ACTIONS(10567), 1, + anon_sym_RBRACK, + [343976] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16423), 1, - anon_sym_esac, - [312408] = 2, + ACTIONS(16297), 1, + anon_sym_RBRACE3, + [343983] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16425), 1, - anon_sym_BQUOTE, - [312415] = 2, + ACTIONS(10963), 1, + anon_sym_RBRACK, + [343990] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16417), 1, - anon_sym_BQUOTE, - [312422] = 2, + ACTIONS(16297), 1, + anon_sym_RBRACE3, + [343997] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16427), 1, - anon_sym_BQUOTE, - [312429] = 2, + ACTIONS(18042), 1, + anon_sym_RBRACE2, + [344004] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16429), 1, + ACTIONS(18044), 1, anon_sym_RPAREN, - [312436] = 2, + [344011] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16431), 1, - anon_sym_BQUOTE, - [312443] = 2, + ACTIONS(18046), 1, + anon_sym_RBRACE3, + [344018] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16433), 1, - anon_sym_esac, - [312450] = 2, + ACTIONS(18048), 1, + anon_sym_RBRACE2, + [344025] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16435), 1, - anon_sym_esac, - [312457] = 2, + ACTIONS(18050), 1, + anon_sym_RPAREN, + [344032] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16437), 1, + ACTIONS(17934), 1, anon_sym_BQUOTE, - [312464] = 2, + [344039] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16429), 1, - anon_sym_BQUOTE, - [312471] = 2, + ACTIONS(18052), 1, + anon_sym_RBRACE3, + [344046] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16439), 1, + ACTIONS(18054), 1, anon_sym_RBRACE3, - [312478] = 2, + [344053] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16441), 1, + ACTIONS(18056), 1, anon_sym_RPAREN, - [312485] = 2, + [344060] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16443), 1, + ACTIONS(18058), 1, anon_sym_RPAREN, - [312492] = 2, + [344067] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16445), 1, + ACTIONS(18060), 1, anon_sym_BQUOTE, - [312499] = 2, + [344074] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16441), 1, - anon_sym_BQUOTE, - [312506] = 2, + ACTIONS(16333), 1, + anon_sym_RBRACE3, + [344081] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16393), 1, + ACTIONS(18062), 1, anon_sym_BQUOTE, - [312513] = 2, - ACTIONS(3), 1, + [344088] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(16447), 1, - aux_sym_heredoc_redirect_token1, - [312520] = 2, + ACTIONS(18056), 1, + anon_sym_BQUOTE, + [344095] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16449), 1, - anon_sym_RPAREN, - [312527] = 2, + ACTIONS(18050), 1, + anon_sym_BQUOTE, + [344102] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16451), 1, + ACTIONS(18064), 1, anon_sym_RPAREN, - [312534] = 2, + [344109] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16453), 1, - anon_sym_RBRACE2, - [312541] = 2, + ACTIONS(18066), 1, + anon_sym_RBRACE3, + [344116] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16455), 1, + ACTIONS(18068), 1, anon_sym_RPAREN, - [312548] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16457), 1, - anon_sym_RBRACE2, - [312555] = 2, + [344123] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16459), 1, - anon_sym_RBRACE2, - [312562] = 2, + ACTIONS(18070), 1, + anon_sym_RPAREN, + [344130] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16461), 1, - ts_builtin_sym_end, - [312569] = 2, + ACTIONS(18072), 1, + anon_sym_BQUOTE, + [344137] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16463), 1, - anon_sym_RBRACE3, - [312576] = 2, + ACTIONS(18074), 1, + anon_sym_RBRACE2, + [344144] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(18076), 1, anon_sym_RBRACE3, - [312583] = 2, + [344151] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16465), 1, + ACTIONS(18078), 1, anon_sym_RPAREN, - [312590] = 2, + [344158] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - [312597] = 2, + ACTIONS(18080), 1, + sym_heredoc_end, + [344165] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16467), 1, + ACTIONS(18068), 1, anon_sym_BQUOTE, - [312604] = 2, + [344172] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16465), 1, + ACTIONS(18082), 1, anon_sym_BQUOTE, - [312611] = 2, + [344179] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312618] = 2, + ACTIONS(18084), 1, + anon_sym_RPAREN, + [344186] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16469), 1, - anon_sym_RBRACE2, - [312625] = 2, + ACTIONS(18086), 1, + anon_sym_RBRACE3, + [344193] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15231), 1, - anon_sym_RBRACE3, - [312632] = 2, + ACTIONS(18088), 1, + anon_sym_BQUOTE, + [344200] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_RBRACK, - [312639] = 2, + ACTIONS(18090), 1, + anon_sym_LT_LT_LT, + [344207] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16471), 1, - anon_sym_BQUOTE, - [312646] = 2, + ACTIONS(18092), 1, + anon_sym_RPAREN, + [344214] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14364), 1, + ACTIONS(16494), 1, anon_sym_RBRACE3, - [312653] = 2, + [344221] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16473), 1, - anon_sym_RPAREN, - [312660] = 2, + ACTIONS(18094), 1, + anon_sym_RBRACK_RBRACK, + [344228] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16163), 1, - anon_sym_BQUOTE, - [312667] = 2, + ACTIONS(16948), 1, + aux_sym__simple_variable_name_token1, + [344235] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16475), 1, - anon_sym_BQUOTE, - [312674] = 2, + ACTIONS(18096), 1, + anon_sym_RBRACE2, + [344242] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16477), 1, + ACTIONS(18098), 1, anon_sym_RBRACE3, - [312681] = 2, + [344249] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16479), 1, + ACTIONS(18100), 1, + sym_word, + [344256] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(18102), 1, + anon_sym_DOT_DOT, + [344263] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16417), 1, anon_sym_RBRACE3, - [312688] = 2, + [344270] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16481), 1, + ACTIONS(18078), 1, + anon_sym_BQUOTE, + [344277] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(18104), 1, anon_sym_RPAREN, - [312695] = 2, + [344284] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14916), 1, - anon_sym_fi, - [312702] = 2, + ACTIONS(18106), 1, + sym_heredoc_start, + [344291] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16483), 1, - anon_sym_RBRACK_RBRACK, - [312709] = 2, + ACTIONS(18108), 1, + anon_sym_RBRACE2, + [344298] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16485), 1, - anon_sym_RPAREN, - [312716] = 2, + ACTIONS(18110), 1, + anon_sym_LT_LT_LT, + [344305] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16267), 1, - anon_sym_BQUOTE, - [312723] = 2, + ACTIONS(18112), 1, + anon_sym_LT_LT_LT, + [344312] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16487), 1, - anon_sym_BQUOTE, - [312730] = 2, + ACTIONS(18114), 1, + sym_heredoc_start, + [344319] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16481), 1, - anon_sym_BQUOTE, - [312737] = 2, + ACTIONS(18116), 1, + aux_sym_brace_expression_token1, + [344326] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16489), 1, + ACTIONS(18118), 1, anon_sym_RBRACE3, - [312744] = 2, + [344333] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16491), 1, + ACTIONS(18120), 1, anon_sym_RBRACE3, - [312751] = 2, + [344340] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16493), 1, + ACTIONS(18122), 1, anon_sym_RPAREN, - [312758] = 2, + [344347] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16495), 1, + ACTIONS(18124), 1, anon_sym_RPAREN, - [312765] = 2, + [344354] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16497), 1, + ACTIONS(18126), 1, anon_sym_BQUOTE, - [312772] = 2, + [344361] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16493), 1, + ACTIONS(18122), 1, anon_sym_BQUOTE, - [312779] = 2, + [344368] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16499), 1, + ACTIONS(18128), 1, anon_sym_RPAREN, - [312786] = 2, + [344375] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16501), 1, + ACTIONS(18130), 1, anon_sym_RPAREN, - [312793] = 2, + [344382] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312800] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16503), 1, - anon_sym_RBRACE3, - [312807] = 2, + ACTIONS(18132), 1, + anon_sym_fi, + [344389] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16505), 1, - anon_sym_BQUOTE, - [312814] = 2, + ACTIONS(18134), 1, + anon_sym_RBRACE2, + [344396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16507), 1, + ACTIONS(18136), 1, aux_sym_heredoc_redirect_token1, - [312821] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15115), 1, - anon_sym_RBRACE3, - [312828] = 2, + [344403] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16501), 1, - anon_sym_BQUOTE, - [312835] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16509), 1, - anon_sym_RBRACE3, - [312842] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16511), 1, + ACTIONS(18138), 1, anon_sym_RPAREN, - [312849] = 2, + [344410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16513), 1, + ACTIONS(18140), 1, aux_sym_heredoc_redirect_token1, - [312856] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16517), 1, - anon_sym_BQUOTE, - [312877] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16519), 1, - anon_sym_RBRACE2, - [312884] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16521), 1, - anon_sym_RBRACE2, - [312891] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16523), 1, - aux_sym_brace_expression_token1, - [312898] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9832), 1, - anon_sym_RBRACK, - [312905] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9830), 1, - anon_sym_RBRACK, - [312912] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16525), 1, - anon_sym_RBRACE2, - [312919] = 2, + [344417] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16511), 1, + ACTIONS(18142), 1, anon_sym_BQUOTE, - [312926] = 2, + [344424] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16527), 1, - anon_sym_RPAREN, - [312933] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16529), 1, - anon_sym_RBRACE2, - [312940] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16531), 1, - sym_heredoc_end, - [312947] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16533), 1, - sym_heredoc_end, - [312954] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16535), 1, - anon_sym_RBRACE3, - [312961] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16537), 1, - anon_sym_RBRACE2, - [312968] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16539), 1, - anon_sym_RPAREN, - [312975] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [312982] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16541), 1, - anon_sym_BQUOTE, - [312989] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16543), 1, - anon_sym_LT_LT_LT, - [312996] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16545), 1, - anon_sym_RBRACE3, - [313003] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16539), 1, + ACTIONS(18130), 1, anon_sym_BQUOTE, - [313010] = 2, + [344431] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16547), 1, + ACTIONS(18144), 1, anon_sym_RPAREN, - [313017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16549), 1, - aux_sym_heredoc_redirect_token1, - [313024] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15613), 1, - aux_sym__simple_variable_name_token1, - [313031] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16551), 1, - anon_sym_RPAREN, - [313038] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16553), 1, - anon_sym_BQUOTE, - [313045] = 2, + [344438] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16555), 1, + ACTIONS(18146), 1, sym_word, - [313052] = 2, + [344445] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16557), 1, + ACTIONS(18148), 1, anon_sym_DOT_DOT, - [313059] = 2, + [344452] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16559), 1, - anon_sym_BQUOTE, - [313066] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16551), 1, - anon_sym_BQUOTE, - [313073] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16561), 1, + ACTIONS(18150), 1, anon_sym_RPAREN, - [313080] = 2, + [344459] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16563), 1, + ACTIONS(18152), 1, sym_heredoc_start, - [313087] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16567), 1, - anon_sym_RPAREN, - [313108] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16571), 1, - anon_sym_RBRACE2, - [313129] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16573), 1, - anon_sym_RBRACE3, - [313136] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16575), 1, - anon_sym_RPAREN, - [313143] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16577), 1, - anon_sym_RBRACE3, - [313150] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16579), 1, - anon_sym_BQUOTE, - [313157] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16575), 1, - anon_sym_BQUOTE, - [313164] = 2, + [344466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16581), 1, + ACTIONS(18154), 1, aux_sym_heredoc_redirect_token1, - [313171] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16583), 1, - anon_sym_RPAREN, - [313178] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16585), 1, - anon_sym_RBRACE3, - [313185] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16587), 1, - anon_sym_BQUOTE, - [313192] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16583), 1, - anon_sym_BQUOTE, - [313199] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16589), 1, - anon_sym_RPAREN, - [313206] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16591), 1, - anon_sym_RPAREN, - [313213] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16593), 1, - anon_sym_BQUOTE, - [313220] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16595), 1, - anon_sym_RPAREN, - [313227] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16597), 1, - anon_sym_BQUOTE, - [313234] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16599), 1, - aux_sym_brace_expression_token1, - [313241] = 2, + [344473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16601), 1, + ACTIONS(18156), 1, aux_sym_heredoc_redirect_token1, - [313248] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16589), 1, - anon_sym_BQUOTE, - [313255] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16603), 1, - anon_sym_RBRACE2, - [313262] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16605), 1, - sym_word, - [313269] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16607), 1, - anon_sym_RBRACE3, - [313276] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16611), 1, - anon_sym_BQUOTE, - [313297] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16613), 1, - anon_sym_in, - [313304] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16615), 1, - sym_word, - [313311] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16617), 1, - anon_sym_RBRACK_RBRACK, - [313318] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16591), 1, - anon_sym_BQUOTE, - [313325] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16619), 1, - anon_sym_in, - [313332] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16621), 1, - anon_sym_RPAREN, - [313339] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16623), 1, - anon_sym_RPAREN, - [313346] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16625), 1, - anon_sym_RPAREN, - [313353] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16627), 1, - anon_sym_BQUOTE, - [313360] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16629), 1, - anon_sym_RBRACE3, - [313367] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16631), 1, - anon_sym_RPAREN, - [313374] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16623), 1, - anon_sym_BQUOTE, - [313381] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16635), 1, - anon_sym_RPAREN, - [313402] = 2, + [344480] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_BQUOTE, - [313409] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16637), 1, - anon_sym_RPAREN, - [313416] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16639), 1, - anon_sym_RPAREN, - [313423] = 2, + ACTIONS(18158), 1, + sym_heredoc_start, + [344487] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16641), 1, + ACTIONS(18160), 1, anon_sym_RPAREN, - [313430] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16643), 1, - anon_sym_BQUOTE, - [313437] = 2, + [344494] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(18162), 1, anon_sym_RBRACE3, - [313444] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16645), 1, - anon_sym_RPAREN, - [313451] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16621), 1, - anon_sym_BQUOTE, - [313458] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16647), 1, - anon_sym_esac, - [313465] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16649), 1, - anon_sym_RPAREN, - [313472] = 2, + [344501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16651), 1, + ACTIONS(18164), 1, aux_sym_heredoc_redirect_token1, - [313479] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16653), 1, - anon_sym_RPAREN, - [313486] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313493] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16655), 1, - anon_sym_RBRACE2, - [313500] = 2, + [344508] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16657), 1, + ACTIONS(18166), 1, anon_sym_RBRACE3, - [313507] = 2, + [344515] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9952), 1, - anon_sym_RBRACK, - [313514] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9926), 1, - anon_sym_RBRACK, - [313521] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16659), 1, - anon_sym_RBRACE2, - [313528] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16661), 1, + ACTIONS(18168), 1, anon_sym_RPAREN, - [313535] = 2, + [344522] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16663), 1, - anon_sym_BQUOTE, - [313542] = 2, + ACTIONS(18170), 1, + sym_heredoc_end, + [344529] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16665), 1, + ACTIONS(18172), 1, anon_sym_BQUOTE, - [313549] = 2, + [344536] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16661), 1, + ACTIONS(18168), 1, anon_sym_BQUOTE, - [313556] = 2, + [344543] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16667), 1, + ACTIONS(18174), 1, anon_sym_RPAREN, - [313563] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16669), 1, - aux_sym_brace_expression_token1, - [313570] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16671), 1, - anon_sym_RPAREN, - [313577] = 2, - ACTIONS(71), 1, + [344550] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16673), 1, - anon_sym_LT_LT_LT, - [313584] = 2, + ACTIONS(18176), 1, + aux_sym_heredoc_redirect_token1, + [344557] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16675), 1, + ACTIONS(18178), 1, aux_sym_brace_expression_token1, - [313591] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16677), 1, - anon_sym_RBRACE3, - [313598] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16679), 1, - anon_sym_RPAREN_RPAREN, - [313605] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16625), 1, - anon_sym_BQUOTE, - [313612] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16681), 1, - anon_sym_in, - [313619] = 2, + [344564] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16683), 1, - anon_sym_in, - [313626] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16685), 1, + ACTIONS(18180), 1, anon_sym_RBRACE2, - [313633] = 2, + [344571] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16687), 1, + ACTIONS(18182), 1, anon_sym_RBRACE3, - [313640] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16689), 1, - anon_sym_esac, - [313647] = 2, + [344578] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16691), 1, + ACTIONS(18184), 1, anon_sym_RPAREN, - [313654] = 2, + [344585] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16693), 1, - anon_sym_RPAREN, - [313661] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15625), 1, - aux_sym__simple_variable_name_token1, - [313668] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16695), 1, - anon_sym_RPAREN, - [313675] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14932), 1, - anon_sym_RBRACE3, - [313682] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16697), 1, - anon_sym_RBRACK_RBRACK, - [313689] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313696] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16699), 1, - anon_sym_RBRACE3, - [313703] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16701), 1, - anon_sym_LT_LT_LT, - [313710] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16703), 1, - anon_sym_LT_LT_LT, - [313717] = 2, + ACTIONS(18186), 1, + anon_sym_RBRACE2, + [344592] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16705), 1, + ACTIONS(18188), 1, anon_sym_BQUOTE, - [313724] = 2, + [344599] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15621), 1, - aux_sym__simple_variable_name_token1, - [313745] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16711), 1, - aux_sym_brace_expression_token1, - [313752] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16695), 1, + ACTIONS(18184), 1, anon_sym_BQUOTE, - [313759] = 2, + [344606] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16713), 1, + ACTIONS(18190), 1, sym_word, - [313766] = 2, + [344613] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16715), 1, + ACTIONS(18192), 1, anon_sym_DOT_DOT, - [313773] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16717), 1, - anon_sym_BQUOTE, - [313780] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16719), 1, - anon_sym_RBRACE2, - [313787] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16721), 1, - anon_sym_RPAREN, - [313794] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16723), 1, - sym_heredoc_start, - [313801] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16725), 1, - anon_sym_RBRACE3, - [313808] = 2, + [344620] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16727), 1, + ACTIONS(18194), 1, anon_sym_RPAREN, - [313815] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16729), 1, - aux_sym_brace_expression_token1, - [313822] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16731), 1, - sym_heredoc_start, - [313829] = 2, + [344627] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16733), 1, - anon_sym_BQUOTE, - [313836] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16727), 1, - anon_sym_BQUOTE, - [313843] = 2, + ACTIONS(18196), 1, + anon_sym_RBRACE2, + [344634] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16735), 1, + ACTIONS(18198), 1, anon_sym_RPAREN, - [313850] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16737), 1, - aux_sym_heredoc_redirect_token1, - [313857] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16739), 1, - aux_sym_heredoc_redirect_token1, - [313864] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16741), 1, - anon_sym_BQUOTE, - [313871] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16693), 1, - anon_sym_BQUOTE, - [313878] = 2, + [344641] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16707), 1, + ACTIONS(18200), 1, anon_sym_BQUOTE, - [313885] = 2, + [344648] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16743), 1, + ACTIONS(18202), 1, anon_sym_DOT_DOT, - [313892] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16745), 1, - anon_sym_RPAREN, - [313899] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16747), 1, - anon_sym_RBRACK_RBRACK, - [313906] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16751), 1, - anon_sym_RPAREN, - [313927] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16753), 1, - aux_sym_heredoc_redirect_token1, - [313934] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16755), 1, - anon_sym_RPAREN, - [313941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16757), 1, - aux_sym_heredoc_redirect_token1, - [313948] = 2, + [344655] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16759), 1, - sym_word, - [313955] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16761), 1, + ACTIONS(18204), 1, anon_sym_DOT_DOT, - [313962] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16763), 1, - anon_sym_RPAREN, - [313969] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16765), 1, - sym_heredoc_start, - [313976] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [313983] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16767), 1, - anon_sym_RBRACE2, - [313990] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16769), 1, - sym_heredoc_start, - [313997] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16771), 1, - aux_sym_heredoc_redirect_token1, - [314004] = 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, - sym_comment, - ACTIONS(16775), 1, - aux_sym_heredoc_redirect_token1, - [314025] = 2, + [344662] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16777), 1, - aux_sym_brace_expression_token1, - [314032] = 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, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [314067] = 2, + ACTIONS(18206), 1, + anon_sym_DOT_DOT, + [344669] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 1, - anon_sym_RBRACE3, - [314074] = 2, + ACTIONS(18208), 1, + anon_sym_DOT_DOT, + [344676] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16781), 1, - anon_sym_RBRACE2, - [314081] = 2, + ACTIONS(18210), 1, + anon_sym_DOT_DOT, + [344683] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16783), 1, - anon_sym_RBRACE2, - [314088] = 2, + ACTIONS(18212), 1, + anon_sym_DOT_DOT, + [344690] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14974), 1, - anon_sym_fi, - [314095] = 2, + ACTIONS(18214), 1, + anon_sym_DOT_DOT, + [344697] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16785), 1, - anon_sym_RBRACE2, - [314102] = 2, + ACTIONS(18216), 1, + anon_sym_DOT_DOT, + [344704] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16787), 1, - anon_sym_RBRACE3, - [314109] = 2, + ACTIONS(18218), 1, + anon_sym_DOT_DOT, + [344711] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16789), 1, - anon_sym_RBRACE3, - [314116] = 2, + ACTIONS(18220), 1, + anon_sym_DOT_DOT, + [344718] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16791), 1, + ACTIONS(18222), 1, anon_sym_DOT_DOT, - [314123] = 2, + [344725] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16793), 1, + ACTIONS(18224), 1, anon_sym_DOT_DOT, - [314130] = 2, + [344732] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16795), 1, + ACTIONS(18226), 1, anon_sym_DOT_DOT, - [314137] = 2, + [344739] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16797), 1, + ACTIONS(18228), 1, anon_sym_DOT_DOT, - [314144] = 2, + [344746] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16799), 1, + ACTIONS(18230), 1, anon_sym_DOT_DOT, - [314151] = 2, + [344753] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16801), 1, + ACTIONS(18232), 1, anon_sym_DOT_DOT, - [314158] = 2, + [344760] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16803), 1, + ACTIONS(18234), 1, anon_sym_DOT_DOT, - [314165] = 2, + [344767] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16805), 1, + ACTIONS(18236), 1, anon_sym_DOT_DOT, - [314172] = 2, + [344774] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16807), 1, + ACTIONS(18238), 1, anon_sym_DOT_DOT, - [314179] = 2, + [344781] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16809), 1, + ACTIONS(18240), 1, anon_sym_DOT_DOT, - [314186] = 2, + [344788] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16811), 1, + ACTIONS(18242), 1, anon_sym_DOT_DOT, - [314193] = 2, + [344795] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16813), 1, + ACTIONS(18244), 1, anon_sym_DOT_DOT, - [314200] = 2, + [344802] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16815), 1, + ACTIONS(18246), 1, anon_sym_DOT_DOT, - [314207] = 2, + [344809] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16817), 1, + ACTIONS(18248), 1, anon_sym_DOT_DOT, - [314214] = 2, + [344816] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16819), 1, + ACTIONS(18250), 1, anon_sym_DOT_DOT, - [314221] = 2, + [344823] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16821), 1, + ACTIONS(18252), 1, anon_sym_DOT_DOT, - [314228] = 2, + [344830] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16823), 1, + ACTIONS(18254), 1, anon_sym_DOT_DOT, - [314235] = 2, + [344837] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16825), 1, + ACTIONS(18256), 1, anon_sym_DOT_DOT, - [314242] = 2, + [344844] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16827), 1, + ACTIONS(18258), 1, anon_sym_DOT_DOT, - [314249] = 2, + [344851] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16829), 1, + ACTIONS(18260), 1, anon_sym_DOT_DOT, - [314256] = 2, + [344858] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16831), 1, + ACTIONS(18262), 1, anon_sym_DOT_DOT, - [314263] = 2, + [344865] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16833), 1, + ACTIONS(18264), 1, anon_sym_DOT_DOT, - [314270] = 2, + [344872] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16835), 1, + ACTIONS(18266), 1, anon_sym_DOT_DOT, - [314277] = 2, + [344879] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16837), 1, + ACTIONS(18268), 1, anon_sym_DOT_DOT, - [314284] = 2, + [344886] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16839), 1, + ACTIONS(18270), 1, anon_sym_DOT_DOT, - [314291] = 2, + [344893] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16841), 1, + ACTIONS(18272), 1, anon_sym_DOT_DOT, - [314298] = 2, + [344900] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16843), 1, + ACTIONS(18274), 1, anon_sym_DOT_DOT, - [314305] = 2, + [344907] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16845), 1, + ACTIONS(18276), 1, anon_sym_DOT_DOT, - [314312] = 2, + [344914] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16847), 1, + ACTIONS(18278), 1, anon_sym_DOT_DOT, - [314319] = 2, + [344921] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16849), 1, + ACTIONS(18280), 1, anon_sym_DOT_DOT, - [314326] = 2, + [344928] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16851), 1, + ACTIONS(18282), 1, anon_sym_DOT_DOT, - [314333] = 2, + [344935] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16853), 1, + ACTIONS(18284), 1, anon_sym_DOT_DOT, - [314340] = 2, + [344942] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16855), 1, + ACTIONS(18286), 1, anon_sym_DOT_DOT, - [314347] = 2, + [344949] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16857), 1, + ACTIONS(18288), 1, anon_sym_DOT_DOT, - [314354] = 2, + [344956] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16859), 1, + ACTIONS(18290), 1, anon_sym_DOT_DOT, - [314361] = 2, + [344963] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16861), 1, + ACTIONS(18292), 1, anon_sym_DOT_DOT, - [314368] = 2, + [344970] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16863), 1, + ACTIONS(18294), 1, anon_sym_DOT_DOT, - [314375] = 2, + [344977] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16865), 1, + ACTIONS(18296), 1, anon_sym_DOT_DOT, - [314382] = 2, + [344984] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16867), 1, + ACTIONS(18298), 1, anon_sym_DOT_DOT, - [314389] = 2, + [344991] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16869), 1, + ACTIONS(18300), 1, anon_sym_DOT_DOT, - [314396] = 2, + [344998] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16871), 1, + ACTIONS(18302), 1, anon_sym_DOT_DOT, - [314403] = 2, + [345005] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16873), 1, + ACTIONS(18304), 1, anon_sym_DOT_DOT, - [314410] = 2, + [345012] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16875), 1, + ACTIONS(18306), 1, anon_sym_DOT_DOT, - [314417] = 2, + [345019] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16877), 1, + ACTIONS(18308), 1, anon_sym_DOT_DOT, - [314424] = 2, + [345026] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16879), 1, + ACTIONS(18310), 1, anon_sym_DOT_DOT, - [314431] = 2, + [345033] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16881), 1, + ACTIONS(18312), 1, anon_sym_DOT_DOT, - [314438] = 2, + [345040] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16883), 1, + ACTIONS(18314), 1, anon_sym_DOT_DOT, - [314445] = 2, + [345047] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16885), 1, + ACTIONS(18316), 1, anon_sym_DOT_DOT, - [314452] = 2, + [345054] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16887), 1, + ACTIONS(18318), 1, anon_sym_DOT_DOT, - [314459] = 2, + [345061] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16889), 1, + ACTIONS(18320), 1, anon_sym_DOT_DOT, - [314466] = 2, + [345068] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16891), 1, + ACTIONS(18322), 1, anon_sym_DOT_DOT, - [314473] = 2, + [345075] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16893), 1, + ACTIONS(18324), 1, anon_sym_DOT_DOT, - [314480] = 2, + [345082] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16895), 1, + ACTIONS(18326), 1, anon_sym_DOT_DOT, - [314487] = 2, + [345089] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16897), 1, + ACTIONS(18328), 1, anon_sym_DOT_DOT, - [314494] = 2, + [345096] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16899), 1, + ACTIONS(18330), 1, anon_sym_DOT_DOT, - [314501] = 2, + [345103] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16901), 1, - anon_sym_DOT_DOT, - [314508] = 2, + ACTIONS(18332), 1, + aux_sym_brace_expression_token1, + [345110] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16903), 1, - anon_sym_DOT_DOT, - [314515] = 2, + ACTIONS(18334), 1, + anon_sym_RBRACE2, + [345117] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16905), 1, - anon_sym_DOT_DOT, - [314522] = 2, + ACTIONS(18336), 1, + anon_sym_RBRACE2, + [345124] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16907), 1, - anon_sym_DOT_DOT, - [314529] = 2, + ACTIONS(18338), 1, + anon_sym_esac, + [345131] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16909), 1, - aux_sym_brace_expression_token1, - [314536] = 2, + ACTIONS(18340), 1, + anon_sym_RBRACE3, + [345138] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15639), 1, + ACTIONS(17492), 1, anon_sym_RPAREN, - [314543] = 2, + [345145] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16911), 1, - anon_sym_RPAREN, - [314550] = 2, + ACTIONS(18092), 1, + anon_sym_BQUOTE, + [345152] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16913), 1, - anon_sym_esac, - [314557] = 2, + ACTIONS(18342), 1, + anon_sym_RPAREN, + [345159] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16915), 1, + ACTIONS(17796), 1, anon_sym_BQUOTE, - [314564] = 2, + [345166] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16911), 1, + ACTIONS(18344), 1, + aux_sym_brace_expression_token1, + [345173] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(18346), 1, anon_sym_BQUOTE, - [314571] = 2, + [345180] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16917), 1, - sym_word, - [314578] = 2, + ACTIONS(16135), 1, + anon_sym_fi, + [345187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18348), 1, + aux_sym_heredoc_redirect_token1, + [345194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18350), 1, + aux_sym_heredoc_redirect_token1, + [345201] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9958), 1, - anon_sym_RBRACK, - [314585] = 2, + ACTIONS(16964), 1, + anon_sym_RPAREN, + [345208] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16919), 1, + ACTIONS(18352), 1, anon_sym_RPAREN, - [314592] = 2, + [345215] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16921), 1, + ACTIONS(18354), 1, aux_sym_brace_expression_token1, - [314599] = 2, + [345222] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16923), 1, + ACTIONS(18356), 1, aux_sym_brace_expression_token1, - [314606] = 2, + [345229] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16925), 1, - anon_sym_RBRACE3, - [314613] = 2, + ACTIONS(18358), 1, + aux_sym_brace_expression_token1, + [345236] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16927), 1, - anon_sym_esac, - [314620] = 2, + ACTIONS(18360), 1, + aux_sym_brace_expression_token1, + [345243] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16929), 1, - anon_sym_RPAREN, - [314627] = 2, + ACTIONS(18362), 1, + aux_sym_brace_expression_token1, + [345250] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15113), 1, - anon_sym_RBRACE3, - [314634] = 2, + ACTIONS(18364), 1, + aux_sym_brace_expression_token1, + [345257] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15653), 1, - anon_sym_RPAREN, - [314641] = 2, + ACTIONS(18366), 1, + aux_sym_brace_expression_token1, + [345264] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16931), 1, + ACTIONS(18368), 1, aux_sym_brace_expression_token1, - [314648] = 2, + [345271] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16933), 1, + ACTIONS(18370), 1, aux_sym_brace_expression_token1, - [314655] = 2, + [345278] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16935), 1, + ACTIONS(18372), 1, aux_sym_brace_expression_token1, - [314662] = 2, + [345285] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16937), 1, + ACTIONS(18374), 1, aux_sym_brace_expression_token1, - [314669] = 2, + [345292] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16939), 1, + ACTIONS(18376), 1, aux_sym_brace_expression_token1, - [314676] = 2, + [345299] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16941), 1, + ACTIONS(18378), 1, aux_sym_brace_expression_token1, - [314683] = 2, + [345306] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16943), 1, + ACTIONS(18380), 1, aux_sym_brace_expression_token1, - [314690] = 2, + [345313] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16945), 1, + ACTIONS(18382), 1, aux_sym_brace_expression_token1, - [314697] = 2, + [345320] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16947), 1, + ACTIONS(18384), 1, aux_sym_brace_expression_token1, - [314704] = 2, + [345327] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16949), 1, + ACTIONS(18386), 1, aux_sym_brace_expression_token1, - [314711] = 2, + [345334] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16951), 1, + ACTIONS(18388), 1, aux_sym_brace_expression_token1, - [314718] = 2, + [345341] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16953), 1, + ACTIONS(18390), 1, aux_sym_brace_expression_token1, - [314725] = 2, + [345348] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16955), 1, + ACTIONS(18392), 1, aux_sym_brace_expression_token1, - [314732] = 2, + [345355] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16957), 1, + ACTIONS(18394), 1, aux_sym_brace_expression_token1, - [314739] = 2, + [345362] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16959), 1, + ACTIONS(18396), 1, aux_sym_brace_expression_token1, - [314746] = 2, + [345369] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16961), 1, + ACTIONS(18398), 1, aux_sym_brace_expression_token1, - [314753] = 2, + [345376] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16963), 1, + ACTIONS(18400), 1, aux_sym_brace_expression_token1, - [314760] = 2, + [345383] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16965), 1, + ACTIONS(18402), 1, aux_sym_brace_expression_token1, - [314767] = 2, + [345390] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16967), 1, + ACTIONS(18404), 1, aux_sym_brace_expression_token1, - [314774] = 2, + [345397] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16969), 1, + ACTIONS(18406), 1, aux_sym_brace_expression_token1, - [314781] = 2, + [345404] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16971), 1, + ACTIONS(18408), 1, aux_sym_brace_expression_token1, - [314788] = 2, + [345411] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16973), 1, + ACTIONS(18410), 1, aux_sym_brace_expression_token1, - [314795] = 2, + [345418] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16975), 1, + ACTIONS(18412), 1, aux_sym_brace_expression_token1, - [314802] = 2, + [345425] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16977), 1, + ACTIONS(18414), 1, aux_sym_brace_expression_token1, - [314809] = 2, + [345432] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16979), 1, + ACTIONS(18416), 1, aux_sym_brace_expression_token1, - [314816] = 2, + [345439] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16981), 1, + ACTIONS(18418), 1, aux_sym_brace_expression_token1, - [314823] = 2, + [345446] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16983), 1, + ACTIONS(18420), 1, aux_sym_brace_expression_token1, - [314830] = 2, + [345453] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16985), 1, + ACTIONS(18422), 1, aux_sym_brace_expression_token1, - [314837] = 2, + [345460] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16987), 1, + ACTIONS(18424), 1, aux_sym_brace_expression_token1, - [314844] = 2, + [345467] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16989), 1, + ACTIONS(18426), 1, aux_sym_brace_expression_token1, - [314851] = 2, + [345474] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16991), 1, + ACTIONS(18428), 1, aux_sym_brace_expression_token1, - [314858] = 2, + [345481] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16993), 1, + ACTIONS(18430), 1, aux_sym_brace_expression_token1, - [314865] = 2, + [345488] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16995), 1, + ACTIONS(18432), 1, aux_sym_brace_expression_token1, - [314872] = 2, + [345495] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16997), 1, + ACTIONS(18434), 1, aux_sym_brace_expression_token1, - [314879] = 2, + [345502] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16999), 1, + ACTIONS(18436), 1, aux_sym_brace_expression_token1, - [314886] = 2, + [345509] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17001), 1, + ACTIONS(18438), 1, aux_sym_brace_expression_token1, - [314893] = 2, + [345516] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17003), 1, + ACTIONS(18440), 1, aux_sym_brace_expression_token1, - [314900] = 2, + [345523] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17005), 1, + ACTIONS(18442), 1, aux_sym_brace_expression_token1, - [314907] = 2, + [345530] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17007), 1, + ACTIONS(18444), 1, aux_sym_brace_expression_token1, - [314914] = 2, + [345537] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17009), 1, + ACTIONS(18446), 1, aux_sym_brace_expression_token1, - [314921] = 2, + [345544] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17011), 1, + ACTIONS(18448), 1, aux_sym_brace_expression_token1, - [314928] = 2, + [345551] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17013), 1, + ACTIONS(18450), 1, aux_sym_brace_expression_token1, - [314935] = 2, + [345558] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17015), 1, + ACTIONS(18452), 1, aux_sym_brace_expression_token1, - [314942] = 2, + [345565] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17017), 1, + ACTIONS(18454), 1, aux_sym_brace_expression_token1, - [314949] = 2, + [345572] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17019), 1, + ACTIONS(18456), 1, aux_sym_brace_expression_token1, - [314956] = 2, + [345579] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17021), 1, + ACTIONS(18458), 1, aux_sym_brace_expression_token1, - [314963] = 2, + [345586] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17023), 1, + ACTIONS(18460), 1, aux_sym_brace_expression_token1, - [314970] = 2, + [345593] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17025), 1, + ACTIONS(18462), 1, aux_sym_brace_expression_token1, - [314977] = 2, + [345600] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17027), 1, + ACTIONS(18464), 1, aux_sym_brace_expression_token1, - [314984] = 2, + [345607] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17029), 1, + ACTIONS(18466), 1, aux_sym_brace_expression_token1, - [314991] = 2, + [345614] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17031), 1, + ACTIONS(18468), 1, aux_sym_brace_expression_token1, - [314998] = 2, + [345621] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17033), 1, + ACTIONS(18470), 1, aux_sym_brace_expression_token1, - [315005] = 2, + [345628] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17035), 1, + ACTIONS(18472), 1, aux_sym_brace_expression_token1, - [315012] = 2, + [345635] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17037), 1, + ACTIONS(18474), 1, aux_sym_brace_expression_token1, - [315019] = 2, + [345642] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17039), 1, + ACTIONS(18476), 1, aux_sym_brace_expression_token1, - [315026] = 2, + [345649] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17041), 1, + ACTIONS(18478), 1, aux_sym_brace_expression_token1, - [315033] = 2, + [345656] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17043), 1, + ACTIONS(18480), 1, aux_sym_brace_expression_token1, - [315040] = 2, + [345663] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17045), 1, + ACTIONS(18482), 1, aux_sym_brace_expression_token1, - [315047] = 2, + [345670] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17047), 1, + ACTIONS(18484), 1, aux_sym_brace_expression_token1, - [315054] = 2, + [345677] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17049), 1, + ACTIONS(18486), 1, aux_sym_brace_expression_token1, - [315061] = 2, + [345684] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(17051), 1, + ACTIONS(18488), 1, aux_sym_brace_expression_token1, - [315068] = 2, - ACTIONS(71), 1, + [345691] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17053), 1, - anon_sym_RBRACE3, + ACTIONS(18490), 1, + aux_sym_heredoc_redirect_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(523)] = 0, - [SMALL_STATE(524)] = 119, - [SMALL_STATE(525)] = 238, - [SMALL_STATE(526)] = 356, - [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(533)] = 1166, - [SMALL_STATE(534)] = 1283, - [SMALL_STATE(535)] = 1391, - [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(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(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(554)] = 0, + [SMALL_STATE(555)] = 119, + [SMALL_STATE(556)] = 238, + [SMALL_STATE(557)] = 356, + [SMALL_STATE(558)] = 474, + [SMALL_STATE(559)] = 591, + [SMALL_STATE(560)] = 706, + [SMALL_STATE(561)] = 823, + [SMALL_STATE(562)] = 936, + [SMALL_STATE(563)] = 1053, + [SMALL_STATE(564)] = 1166, + [SMALL_STATE(565)] = 1283, + [SMALL_STATE(566)] = 1400, + [SMALL_STATE(567)] = 1517, + [SMALL_STATE(568)] = 1593, + [SMALL_STATE(569)] = 1705, + [SMALL_STATE(570)] = 1813, + [SMALL_STATE(571)] = 1927, + [SMALL_STATE(572)] = 2039, + [SMALL_STATE(573)] = 2115, + [SMALL_STATE(574)] = 2223, + [SMALL_STATE(575)] = 2339, + [SMALL_STATE(576)] = 2453, + [SMALL_STATE(577)] = 2561, + [SMALL_STATE(578)] = 2675, + [SMALL_STATE(579)] = 2791, + [SMALL_STATE(580)] = 2902, + [SMALL_STATE(581)] = 3013, + [SMALL_STATE(582)] = 3124, + [SMALL_STATE(583)] = 3231, + [SMALL_STATE(584)] = 3344, + [SMALL_STATE(585)] = 3451, + [SMALL_STATE(586)] = 3562, + [SMALL_STATE(587)] = 3669, + [SMALL_STATE(588)] = 3782, + [SMALL_STATE(589)] = 3893, + [SMALL_STATE(590)] = 3968, + [SMALL_STATE(591)] = 4043, + [SMALL_STATE(592)] = 4154, + [SMALL_STATE(593)] = 4267, + [SMALL_STATE(594)] = 4342, + [SMALL_STATE(595)] = 4417, + [SMALL_STATE(596)] = 4491, + [SMALL_STATE(597)] = 4597, + [SMALL_STATE(598)] = 4667, + [SMALL_STATE(599)] = 4737, + [SMALL_STATE(600)] = 4837, + [SMALL_STATE(601)] = 4943, + [SMALL_STATE(602)] = 5017, + [SMALL_STATE(603)] = 5091, + [SMALL_STATE(604)] = 5165, + [SMALL_STATE(605)] = 5239, + [SMALL_STATE(606)] = 5313, + [SMALL_STATE(607)] = 5419, + [SMALL_STATE(608)] = 5525, + [SMALL_STATE(609)] = 5589, + [SMALL_STATE(610)] = 5695, + [SMALL_STATE(611)] = 5803, + [SMALL_STATE(612)] = 5909, + [SMALL_STATE(613)] = 6019, + [SMALL_STATE(614)] = 6125, + [SMALL_STATE(615)] = 6237, + [SMALL_STATE(616)] = 6347, + [SMALL_STATE(617)] = 6421, + [SMALL_STATE(618)] = 6529, + [SMALL_STATE(619)] = 6635, + [SMALL_STATE(620)] = 6741, + [SMALL_STATE(621)] = 6815, + [SMALL_STATE(622)] = 6920, + [SMALL_STATE(623)] = 6987, + [SMALL_STATE(624)] = 7060, + [SMALL_STATE(625)] = 7133, + [SMALL_STATE(626)] = 7236, + [SMALL_STATE(627)] = 7335, + [SMALL_STATE(628)] = 7438, + [SMALL_STATE(629)] = 7507, + [SMALL_STATE(630)] = 7608, + [SMALL_STATE(631)] = 7675, + [SMALL_STATE(632)] = 7774, + [SMALL_STATE(633)] = 7847, + [SMALL_STATE(634)] = 7952, + [SMALL_STATE(635)] = 8025, + [SMALL_STATE(636)] = 8092, + [SMALL_STATE(637)] = 8161, + [SMALL_STATE(638)] = 8230, + [SMALL_STATE(639)] = 8303, + [SMALL_STATE(640)] = 8404, + [SMALL_STATE(641)] = 8477, + [SMALL_STATE(642)] = 8578, + [SMALL_STATE(643)] = 8647, + [SMALL_STATE(644)] = 8746, + [SMALL_STATE(645)] = 8859, + [SMALL_STATE(646)] = 8932, + [SMALL_STATE(647)] = 9031, + [SMALL_STATE(648)] = 9098, + [SMALL_STATE(649)] = 9203, + [SMALL_STATE(650)] = 9276, + [SMALL_STATE(651)] = 9389, + [SMALL_STATE(652)] = 9517, + [SMALL_STATE(653)] = 9585, + [SMALL_STATE(654)] = 9713, + [SMALL_STATE(655)] = 9781, + [SMALL_STATE(656)] = 9849, + [SMALL_STATE(657)] = 9917, + [SMALL_STATE(658)] = 10031, + [SMALL_STATE(659)] = 10129, + [SMALL_STATE(660)] = 10227, + [SMALL_STATE(661)] = 10325, + [SMALL_STATE(662)] = 10393, + [SMALL_STATE(663)] = 10507, + [SMALL_STATE(664)] = 10635, + [SMALL_STATE(665)] = 10703, + [SMALL_STATE(666)] = 10771, + [SMALL_STATE(667)] = 10871, + [SMALL_STATE(668)] = 10969, + [SMALL_STATE(669)] = 11041, + [SMALL_STATE(670)] = 11113, + [SMALL_STATE(671)] = 11185, + [SMALL_STATE(672)] = 11313, + [SMALL_STATE(673)] = 11385, + [SMALL_STATE(674)] = 11457, + [SMALL_STATE(675)] = 11557, + [SMALL_STATE(676)] = 11657, + [SMALL_STATE(677)] = 11785, + [SMALL_STATE(678)] = 11913, + [SMALL_STATE(679)] = 12011, + [SMALL_STATE(680)] = 12109, + [SMALL_STATE(681)] = 12181, + [SMALL_STATE(682)] = 12309, + [SMALL_STATE(683)] = 12407, + [SMALL_STATE(684)] = 12535, + [SMALL_STATE(685)] = 12633, + [SMALL_STATE(686)] = 12701, + [SMALL_STATE(687)] = 12829, + [SMALL_STATE(688)] = 12927, + [SMALL_STATE(689)] = 13025, + [SMALL_STATE(690)] = 13123, + [SMALL_STATE(691)] = 13230, + [SMALL_STATE(692)] = 13329, + [SMALL_STATE(693)] = 13400, + [SMALL_STATE(694)] = 13497, + [SMALL_STATE(695)] = 13568, + [SMALL_STATE(696)] = 13667, + [SMALL_STATE(697)] = 13764, + [SMALL_STATE(698)] = 13835, + [SMALL_STATE(699)] = 13906, + [SMALL_STATE(700)] = 13977, + [SMALL_STATE(701)] = 14048, + [SMALL_STATE(702)] = 14145, + [SMALL_STATE(703)] = 14244, + [SMALL_STATE(704)] = 14315, + [SMALL_STATE(705)] = 14386, + [SMALL_STATE(706)] = 14483, + [SMALL_STATE(707)] = 14580, + [SMALL_STATE(708)] = 14677, + [SMALL_STATE(709)] = 14744, + [SMALL_STATE(710)] = 14841, + [SMALL_STATE(711)] = 14908, + [SMALL_STATE(712)] = 15005, + [SMALL_STATE(713)] = 15072, + [SMALL_STATE(714)] = 15139, + [SMALL_STATE(715)] = 15206, + [SMALL_STATE(716)] = 15303, + [SMALL_STATE(717)] = 15402, + [SMALL_STATE(718)] = 15469, + [SMALL_STATE(719)] = 15566, + [SMALL_STATE(720)] = 15663, + [SMALL_STATE(721)] = 15762, + [SMALL_STATE(722)] = 15861, + [SMALL_STATE(723)] = 15928, + [SMALL_STATE(724)] = 16025, + [SMALL_STATE(725)] = 16122, + [SMALL_STATE(726)] = 16229, + [SMALL_STATE(727)] = 16326, + [SMALL_STATE(728)] = 16435, + [SMALL_STATE(729)] = 16534, + [SMALL_STATE(730)] = 16631, + [SMALL_STATE(731)] = 16702, + [SMALL_STATE(732)] = 16799, + [SMALL_STATE(733)] = 16870, + [SMALL_STATE(734)] = 16969, + [SMALL_STATE(735)] = 17036, + [SMALL_STATE(736)] = 17135, + [SMALL_STATE(737)] = 17232, + [SMALL_STATE(738)] = 17328, + [SMALL_STATE(739)] = 17398, + [SMALL_STATE(740)] = 17512, + [SMALL_STATE(741)] = 17582, + [SMALL_STATE(742)] = 17652, + [SMALL_STATE(743)] = 17746, + [SMALL_STATE(744)] = 17840, + [SMALL_STATE(745)] = 17910, + [SMALL_STATE(746)] = 17980, + [SMALL_STATE(747)] = 18050, + [SMALL_STATE(748)] = 18120, + [SMALL_STATE(749)] = 18190, + [SMALL_STATE(750)] = 18260, + [SMALL_STATE(751)] = 18374, + [SMALL_STATE(752)] = 18488, + [SMALL_STATE(753)] = 18584, + [SMALL_STATE(754)] = 18698, + [SMALL_STATE(755)] = 18812, + [SMALL_STATE(756)] = 18882, + [SMALL_STATE(757)] = 18944, + [SMALL_STATE(758)] = 19014, + [SMALL_STATE(759)] = 19110, + [SMALL_STATE(760)] = 19206, + [SMALL_STATE(761)] = 19302, + [SMALL_STATE(762)] = 19364, + [SMALL_STATE(763)] = 19460, + [SMALL_STATE(764)] = 19530, + [SMALL_STATE(765)] = 19644, + [SMALL_STATE(766)] = 19704, + [SMALL_STATE(767)] = 19774, + [SMALL_STATE(768)] = 19888, + [SMALL_STATE(769)] = 20002, + [SMALL_STATE(770)] = 20098, + [SMALL_STATE(771)] = 20194, + [SMALL_STATE(772)] = 20290, + [SMALL_STATE(773)] = 20386, + [SMALL_STATE(774)] = 20482, + [SMALL_STATE(775)] = 20552, + [SMALL_STATE(776)] = 20622, + [SMALL_STATE(777)] = 20692, + [SMALL_STATE(778)] = 20762, + [SMALL_STATE(779)] = 20870, + [SMALL_STATE(780)] = 20930, + [SMALL_STATE(781)] = 21040, + [SMALL_STATE(782)] = 21110, + [SMALL_STATE(783)] = 21218, + [SMALL_STATE(784)] = 21288, + [SMALL_STATE(785)] = 21358, + [SMALL_STATE(786)] = 21472, + [SMALL_STATE(787)] = 21586, + [SMALL_STATE(788)] = 21682, + [SMALL_STATE(789)] = 21780, + [SMALL_STATE(790)] = 21876, + [SMALL_STATE(791)] = 21974, + [SMALL_STATE(792)] = 22070, + [SMALL_STATE(793)] = 22166, + [SMALL_STATE(794)] = 22262, + [SMALL_STATE(795)] = 22364, + [SMALL_STATE(796)] = 22460, + [SMALL_STATE(797)] = 22562, + [SMALL_STATE(798)] = 22658, + [SMALL_STATE(799)] = 22754, + [SMALL_STATE(800)] = 22850, + [SMALL_STATE(801)] = 22946, + [SMALL_STATE(802)] = 23044, + [SMALL_STATE(803)] = 23110, + [SMALL_STATE(804)] = 23176, + [SMALL_STATE(805)] = 23278, + [SMALL_STATE(806)] = 23374, + [SMALL_STATE(807)] = 23443, + [SMALL_STATE(808)] = 23512, + [SMALL_STATE(809)] = 23615, + [SMALL_STATE(810)] = 23710, + [SMALL_STATE(811)] = 23805, + [SMALL_STATE(812)] = 23874, + [SMALL_STATE(813)] = 23943, + [SMALL_STATE(814)] = 24012, + [SMALL_STATE(815)] = 24081, + [SMALL_STATE(816)] = 24150, + [SMALL_STATE(817)] = 24245, + [SMALL_STATE(818)] = 24348, + [SMALL_STATE(819)] = 24417, + [SMALL_STATE(820)] = 24486, + [SMALL_STATE(821)] = 24555, + [SMALL_STATE(822)] = 24624, + [SMALL_STATE(823)] = 24693, + [SMALL_STATE(824)] = 24762, + [SMALL_STATE(825)] = 24831, + [SMALL_STATE(826)] = 24934, + [SMALL_STATE(827)] = 25027, + [SMALL_STATE(828)] = 25120, + [SMALL_STATE(829)] = 25189, + [SMALL_STATE(830)] = 25258, + [SMALL_STATE(831)] = 25319, + [SMALL_STATE(832)] = 25414, + [SMALL_STATE(833)] = 25509, + [SMALL_STATE(834)] = 25578, + [SMALL_STATE(835)] = 25647, + [SMALL_STATE(836)] = 25742, + [SMALL_STATE(837)] = 25837, + [SMALL_STATE(838)] = 25906, + [SMALL_STATE(839)] = 25999, + [SMALL_STATE(840)] = 26068, + [SMALL_STATE(841)] = 26163, + [SMALL_STATE(842)] = 26258, + [SMALL_STATE(843)] = 26351, + [SMALL_STATE(844)] = 26420, + [SMALL_STATE(845)] = 26489, + [SMALL_STATE(846)] = 26558, + [SMALL_STATE(847)] = 26627, + [SMALL_STATE(848)] = 26696, + [SMALL_STATE(849)] = 26755, + [SMALL_STATE(850)] = 26816, + [SMALL_STATE(851)] = 26911, + [SMALL_STATE(852)] = 27006, + [SMALL_STATE(853)] = 27075, + [SMALL_STATE(854)] = 27143, + [SMALL_STATE(855)] = 27221, + [SMALL_STATE(856)] = 27285, + [SMALL_STATE(857)] = 27381, + [SMALL_STATE(858)] = 27475, + [SMALL_STATE(859)] = 27569, + [SMALL_STATE(860)] = 27633, + [SMALL_STATE(861)] = 27701, + [SMALL_STATE(862)] = 27769, + [SMALL_STATE(863)] = 27833, + [SMALL_STATE(864)] = 27901, + [SMALL_STATE(865)] = 27969, + [SMALL_STATE(866)] = 28037, + [SMALL_STATE(867)] = 28129, + [SMALL_STATE(868)] = 28197, + [SMALL_STATE(869)] = 28261, + [SMALL_STATE(870)] = 28355, + [SMALL_STATE(871)] = 28419, + [SMALL_STATE(872)] = 28497, + [SMALL_STATE(873)] = 28567, + [SMALL_STATE(874)] = 28635, + [SMALL_STATE(875)] = 28727, + [SMALL_STATE(876)] = 28799, + [SMALL_STATE(877)] = 28863, + [SMALL_STATE(878)] = 28929, + [SMALL_STATE(879)] = 28993, + [SMALL_STATE(880)] = 29057, + [SMALL_STATE(881)] = 29121, + [SMALL_STATE(882)] = 29185, + [SMALL_STATE(883)] = 29248, + [SMALL_STATE(884)] = 29311, + [SMALL_STATE(885)] = 29374, + [SMALL_STATE(886)] = 29437, + [SMALL_STATE(887)] = 29532, + [SMALL_STATE(888)] = 29595, + [SMALL_STATE(889)] = 29690, + [SMALL_STATE(890)] = 29747, + [SMALL_STATE(891)] = 29804, + [SMALL_STATE(892)] = 29899, + [SMALL_STATE(893)] = 29956, + [SMALL_STATE(894)] = 30013, + [SMALL_STATE(895)] = 30076, + [SMALL_STATE(896)] = 30133, + [SMALL_STATE(897)] = 30190, + [SMALL_STATE(898)] = 30247, + [SMALL_STATE(899)] = 30310, + [SMALL_STATE(900)] = 30373, + [SMALL_STATE(901)] = 30442, + [SMALL_STATE(902)] = 30537, + [SMALL_STATE(903)] = 30594, + [SMALL_STATE(904)] = 30651, + [SMALL_STATE(905)] = 30714, + [SMALL_STATE(906)] = 30777, + [SMALL_STATE(907)] = 30870, + [SMALL_STATE(908)] = 30933, + [SMALL_STATE(909)] = 30998, + [SMALL_STATE(910)] = 31091, + [SMALL_STATE(911)] = 31162, + [SMALL_STATE(912)] = 31219, + [SMALL_STATE(913)] = 31276, + [SMALL_STATE(914)] = 31339, + [SMALL_STATE(915)] = 31434, + [SMALL_STATE(916)] = 31497, + [SMALL_STATE(917)] = 31554, + [SMALL_STATE(918)] = 31617, + [SMALL_STATE(919)] = 31674, + [SMALL_STATE(920)] = 31737, + [SMALL_STATE(921)] = 31794, + [SMALL_STATE(922)] = 31851, + [SMALL_STATE(923)] = 31946, + [SMALL_STATE(924)] = 32009, + [SMALL_STATE(925)] = 32066, + [SMALL_STATE(926)] = 32129, + [SMALL_STATE(927)] = 32186, + [SMALL_STATE(928)] = 32243, + [SMALL_STATE(929)] = 32300, + [SMALL_STATE(930)] = 32363, + [SMALL_STATE(931)] = 32426, + [SMALL_STATE(932)] = 32489, + [SMALL_STATE(933)] = 32566, + [SMALL_STATE(934)] = 32629, + [SMALL_STATE(935)] = 32692, + [SMALL_STATE(936)] = 32787, + [SMALL_STATE(937)] = 32850, + [SMALL_STATE(938)] = 32943, + [SMALL_STATE(939)] = 33006, + [SMALL_STATE(940)] = 33083, + [SMALL_STATE(941)] = 33145, + [SMALL_STATE(942)] = 33213, + [SMALL_STATE(943)] = 33279, + [SMALL_STATE(944)] = 33345, + [SMALL_STATE(945)] = 33455, + [SMALL_STATE(946)] = 33515, + [SMALL_STATE(947)] = 33577, + [SMALL_STATE(948)] = 33639, + [SMALL_STATE(949)] = 33701, + [SMALL_STATE(950)] = 33763, + [SMALL_STATE(951)] = 33825, + [SMALL_STATE(952)] = 33885, + [SMALL_STATE(953)] = 33941, + [SMALL_STATE(954)] = 33997, + [SMALL_STATE(955)] = 34053, + [SMALL_STATE(956)] = 34109, + [SMALL_STATE(957)] = 34165, + [SMALL_STATE(958)] = 34221, + [SMALL_STATE(959)] = 34287, + [SMALL_STATE(960)] = 34343, + [SMALL_STATE(961)] = 34409, + [SMALL_STATE(962)] = 34485, + [SMALL_STATE(963)] = 34541, + [SMALL_STATE(964)] = 34597, + [SMALL_STATE(965)] = 34653, + [SMALL_STATE(966)] = 34709, + [SMALL_STATE(967)] = 34765, + [SMALL_STATE(968)] = 34821, + [SMALL_STATE(969)] = 34877, + [SMALL_STATE(970)] = 34933, + [SMALL_STATE(971)] = 35043, + [SMALL_STATE(972)] = 35099, + [SMALL_STATE(973)] = 35161, + [SMALL_STATE(974)] = 35217, + [SMALL_STATE(975)] = 35273, + [SMALL_STATE(976)] = 35335, + [SMALL_STATE(977)] = 35397, + [SMALL_STATE(978)] = 35453, + [SMALL_STATE(979)] = 35509, + [SMALL_STATE(980)] = 35575, + [SMALL_STATE(981)] = 35641, + [SMALL_STATE(982)] = 35697, + [SMALL_STATE(983)] = 35753, + [SMALL_STATE(984)] = 35809, + [SMALL_STATE(985)] = 35865, + [SMALL_STATE(986)] = 35921, + [SMALL_STATE(987)] = 35983, + [SMALL_STATE(988)] = 36039, + [SMALL_STATE(989)] = 36095, + [SMALL_STATE(990)] = 36151, + [SMALL_STATE(991)] = 36207, + [SMALL_STATE(992)] = 36263, + [SMALL_STATE(993)] = 36319, + [SMALL_STATE(994)] = 36375, + [SMALL_STATE(995)] = 36431, + [SMALL_STATE(996)] = 36487, + [SMALL_STATE(997)] = 36543, + [SMALL_STATE(998)] = 36599, + [SMALL_STATE(999)] = 36655, + [SMALL_STATE(1000)] = 36711, + [SMALL_STATE(1001)] = 36773, + [SMALL_STATE(1002)] = 36835, + [SMALL_STATE(1003)] = 36905, + [SMALL_STATE(1004)] = 36981, + [SMALL_STATE(1005)] = 37043, + [SMALL_STATE(1006)] = 37119, + [SMALL_STATE(1007)] = 37229, + [SMALL_STATE(1008)] = 37291, + [SMALL_STATE(1009)] = 37353, + [SMALL_STATE(1010)] = 37429, + [SMALL_STATE(1011)] = 37491, + [SMALL_STATE(1012)] = 37557, + [SMALL_STATE(1013)] = 37623, + [SMALL_STATE(1014)] = 37685, + [SMALL_STATE(1015)] = 37761, + [SMALL_STATE(1016)] = 37823, + [SMALL_STATE(1017)] = 37887, + [SMALL_STATE(1018)] = 37963, + [SMALL_STATE(1019)] = 38073, + [SMALL_STATE(1020)] = 38149, + [SMALL_STATE(1021)] = 38225, + [SMALL_STATE(1022)] = 38287, + [SMALL_STATE(1023)] = 38355, + [SMALL_STATE(1024)] = 38431, + [SMALL_STATE(1025)] = 38507, + [SMALL_STATE(1026)] = 38583, + [SMALL_STATE(1027)] = 38659, + [SMALL_STATE(1028)] = 38735, + [SMALL_STATE(1029)] = 38811, + [SMALL_STATE(1030)] = 38887, + [SMALL_STATE(1031)] = 38963, + [SMALL_STATE(1032)] = 39039, + [SMALL_STATE(1033)] = 39115, + [SMALL_STATE(1034)] = 39177, + [SMALL_STATE(1035)] = 39253, + [SMALL_STATE(1036)] = 39329, + [SMALL_STATE(1037)] = 39439, + [SMALL_STATE(1038)] = 39531, + [SMALL_STATE(1039)] = 39623, + [SMALL_STATE(1040)] = 39715, + [SMALL_STATE(1041)] = 39809, + [SMALL_STATE(1042)] = 39903, + [SMALL_STATE(1043)] = 39965, + [SMALL_STATE(1044)] = 40031, + [SMALL_STATE(1045)] = 40097, + [SMALL_STATE(1046)] = 40191, + [SMALL_STATE(1047)] = 40285, + [SMALL_STATE(1048)] = 40347, + [SMALL_STATE(1049)] = 40441, + [SMALL_STATE(1050)] = 40511, + [SMALL_STATE(1051)] = 40573, + [SMALL_STATE(1052)] = 40635, + [SMALL_STATE(1053)] = 40697, + [SMALL_STATE(1054)] = 40759, + [SMALL_STATE(1055)] = 40853, + [SMALL_STATE(1056)] = 40947, + [SMALL_STATE(1057)] = 41041, + [SMALL_STATE(1058)] = 41137, + [SMALL_STATE(1059)] = 41199, + [SMALL_STATE(1060)] = 41309, + [SMALL_STATE(1061)] = 41377, + [SMALL_STATE(1062)] = 41453, + [SMALL_STATE(1063)] = 41549, + [SMALL_STATE(1064)] = 41613, + [SMALL_STATE(1065)] = 41675, + [SMALL_STATE(1066)] = 41739, + [SMALL_STATE(1067)] = 41815, + [SMALL_STATE(1068)] = 41911, + [SMALL_STATE(1069)] = 42021, + [SMALL_STATE(1070)] = 42131, + [SMALL_STATE(1071)] = 42241, + [SMALL_STATE(1072)] = 42333, + [SMALL_STATE(1073)] = 42425, + [SMALL_STATE(1074)] = 42487, + [SMALL_STATE(1075)] = 42549, + [SMALL_STATE(1076)] = 42611, + [SMALL_STATE(1077)] = 42681, + [SMALL_STATE(1078)] = 42743, + [SMALL_STATE(1079)] = 42804, + [SMALL_STATE(1080)] = 42865, + [SMALL_STATE(1081)] = 42920, + [SMALL_STATE(1082)] = 42981, + [SMALL_STATE(1083)] = 43036, + [SMALL_STATE(1084)] = 43091, + [SMALL_STATE(1085)] = 43150, + [SMALL_STATE(1086)] = 43205, + [SMALL_STATE(1087)] = 43278, + [SMALL_STATE(1088)] = 43333, + [SMALL_STATE(1089)] = 43388, + [SMALL_STATE(1090)] = 43443, + [SMALL_STATE(1091)] = 43498, + [SMALL_STATE(1092)] = 43553, + [SMALL_STATE(1093)] = 43608, + [SMALL_STATE(1094)] = 43669, + [SMALL_STATE(1095)] = 43730, + [SMALL_STATE(1096)] = 43791, + [SMALL_STATE(1097)] = 43852, + [SMALL_STATE(1098)] = 43907, + [SMALL_STATE(1099)] = 43962, + [SMALL_STATE(1100)] = 44023, + [SMALL_STATE(1101)] = 44082, + [SMALL_STATE(1102)] = 44147, + [SMALL_STATE(1103)] = 44212, + [SMALL_STATE(1104)] = 44273, + [SMALL_STATE(1105)] = 44346, + [SMALL_STATE(1106)] = 44401, + [SMALL_STATE(1107)] = 44468, + [SMALL_STATE(1108)] = 44529, + [SMALL_STATE(1109)] = 44590, + [SMALL_STATE(1110)] = 44645, + [SMALL_STATE(1111)] = 44706, + [SMALL_STATE(1112)] = 44781, + [SMALL_STATE(1113)] = 44836, + [SMALL_STATE(1114)] = 44897, + [SMALL_STATE(1115)] = 44958, + [SMALL_STATE(1116)] = 45013, + [SMALL_STATE(1117)] = 45068, + [SMALL_STATE(1118)] = 45129, + [SMALL_STATE(1119)] = 45184, + [SMALL_STATE(1120)] = 45243, + [SMALL_STATE(1121)] = 45298, + [SMALL_STATE(1122)] = 45363, + [SMALL_STATE(1123)] = 45424, + [SMALL_STATE(1124)] = 45485, + [SMALL_STATE(1125)] = 45550, + [SMALL_STATE(1126)] = 45605, + [SMALL_STATE(1127)] = 45660, + [SMALL_STATE(1128)] = 45733, + [SMALL_STATE(1129)] = 45788, + [SMALL_STATE(1130)] = 45843, + [SMALL_STATE(1131)] = 45898, + [SMALL_STATE(1132)] = 45959, + [SMALL_STATE(1133)] = 46014, + [SMALL_STATE(1134)] = 46075, + [SMALL_STATE(1135)] = 46134, + [SMALL_STATE(1136)] = 46189, + [SMALL_STATE(1137)] = 46258, + [SMALL_STATE(1138)] = 46319, + [SMALL_STATE(1139)] = 46380, + [SMALL_STATE(1140)] = 46445, + [SMALL_STATE(1141)] = 46510, + [SMALL_STATE(1142)] = 46571, + [SMALL_STATE(1143)] = 46632, + [SMALL_STATE(1144)] = 46693, + [SMALL_STATE(1145)] = 46754, + [SMALL_STATE(1146)] = 46809, + [SMALL_STATE(1147)] = 46874, + [SMALL_STATE(1148)] = 46939, + [SMALL_STATE(1149)] = 47000, + [SMALL_STATE(1150)] = 47061, + [SMALL_STATE(1151)] = 47122, + [SMALL_STATE(1152)] = 47183, + [SMALL_STATE(1153)] = 47244, + [SMALL_STATE(1154)] = 47319, + [SMALL_STATE(1155)] = 47380, + [SMALL_STATE(1156)] = 47441, + [SMALL_STATE(1157)] = 47502, + [SMALL_STATE(1158)] = 47563, + [SMALL_STATE(1159)] = 47624, + [SMALL_STATE(1160)] = 47685, + [SMALL_STATE(1161)] = 47740, + [SMALL_STATE(1162)] = 47795, + [SMALL_STATE(1163)] = 47888, + [SMALL_STATE(1164)] = 47981, + [SMALL_STATE(1165)] = 48040, + [SMALL_STATE(1166)] = 48101, + [SMALL_STATE(1167)] = 48162, + [SMALL_STATE(1168)] = 48223, + [SMALL_STATE(1169)] = 48288, + [SMALL_STATE(1170)] = 48353, + [SMALL_STATE(1171)] = 48418, + [SMALL_STATE(1172)] = 48473, + [SMALL_STATE(1173)] = 48528, + [SMALL_STATE(1174)] = 48589, + [SMALL_STATE(1175)] = 48650, + [SMALL_STATE(1176)] = 48705, + [SMALL_STATE(1177)] = 48760, + [SMALL_STATE(1178)] = 48815, + [SMALL_STATE(1179)] = 48888, + [SMALL_STATE(1180)] = 48943, + [SMALL_STATE(1181)] = 49004, + [SMALL_STATE(1182)] = 49059, + [SMALL_STATE(1183)] = 49120, + [SMALL_STATE(1184)] = 49185, + [SMALL_STATE(1185)] = 49246, + [SMALL_STATE(1186)] = 49307, + [SMALL_STATE(1187)] = 49368, + [SMALL_STATE(1188)] = 49429, + [SMALL_STATE(1189)] = 49490, + [SMALL_STATE(1190)] = 49555, + [SMALL_STATE(1191)] = 49610, + [SMALL_STATE(1192)] = 49665, + [SMALL_STATE(1193)] = 49730, + [SMALL_STATE(1194)] = 49797, + [SMALL_STATE(1195)] = 49852, + [SMALL_STATE(1196)] = 49945, + [SMALL_STATE(1197)] = 50006, + [SMALL_STATE(1198)] = 50067, + [SMALL_STATE(1199)] = 50160, + [SMALL_STATE(1200)] = 50221, + [SMALL_STATE(1201)] = 50282, + [SMALL_STATE(1202)] = 50375, + [SMALL_STATE(1203)] = 50430, + [SMALL_STATE(1204)] = 50485, + [SMALL_STATE(1205)] = 50578, + [SMALL_STATE(1206)] = 50639, + [SMALL_STATE(1207)] = 50732, + [SMALL_STATE(1208)] = 50793, + [SMALL_STATE(1209)] = 50858, + [SMALL_STATE(1210)] = 50919, + [SMALL_STATE(1211)] = 50974, + [SMALL_STATE(1212)] = 51035, + [SMALL_STATE(1213)] = 51090, + [SMALL_STATE(1214)] = 51145, + [SMALL_STATE(1215)] = 51200, + [SMALL_STATE(1216)] = 51261, + [SMALL_STATE(1217)] = 51322, + [SMALL_STATE(1218)] = 51387, + [SMALL_STATE(1219)] = 51442, + [SMALL_STATE(1220)] = 51507, + [SMALL_STATE(1221)] = 51562, + [SMALL_STATE(1222)] = 51617, + [SMALL_STATE(1223)] = 51672, + [SMALL_STATE(1224)] = 51727, + [SMALL_STATE(1225)] = 51782, + [SMALL_STATE(1226)] = 51837, + [SMALL_STATE(1227)] = 51892, + [SMALL_STATE(1228)] = 51947, + [SMALL_STATE(1229)] = 52002, + [SMALL_STATE(1230)] = 52057, + [SMALL_STATE(1231)] = 52112, + [SMALL_STATE(1232)] = 52171, + [SMALL_STATE(1233)] = 52226, + [SMALL_STATE(1234)] = 52281, + [SMALL_STATE(1235)] = 52336, + [SMALL_STATE(1236)] = 52397, + [SMALL_STATE(1237)] = 52458, + [SMALL_STATE(1238)] = 52521, + [SMALL_STATE(1239)] = 52576, + [SMALL_STATE(1240)] = 52635, + [SMALL_STATE(1241)] = 52690, + [SMALL_STATE(1242)] = 52745, + [SMALL_STATE(1243)] = 52800, + [SMALL_STATE(1244)] = 52855, + [SMALL_STATE(1245)] = 52910, + [SMALL_STATE(1246)] = 52979, + [SMALL_STATE(1247)] = 53034, + [SMALL_STATE(1248)] = 53095, + [SMALL_STATE(1249)] = 53162, + [SMALL_STATE(1250)] = 53217, + [SMALL_STATE(1251)] = 53272, + [SMALL_STATE(1252)] = 53327, + [SMALL_STATE(1253)] = 53382, + [SMALL_STATE(1254)] = 53447, + [SMALL_STATE(1255)] = 53502, + [SMALL_STATE(1256)] = 53567, + [SMALL_STATE(1257)] = 53658, + [SMALL_STATE(1258)] = 53749, + [SMALL_STATE(1259)] = 53814, + [SMALL_STATE(1260)] = 53869, + [SMALL_STATE(1261)] = 53924, + [SMALL_STATE(1262)] = 53979, + [SMALL_STATE(1263)] = 54034, + [SMALL_STATE(1264)] = 54089, + [SMALL_STATE(1265)] = 54150, + [SMALL_STATE(1266)] = 54213, + [SMALL_STATE(1267)] = 54268, + [SMALL_STATE(1268)] = 54329, + [SMALL_STATE(1269)] = 54387, + [SMALL_STATE(1270)] = 54445, + [SMALL_STATE(1271)] = 54499, + [SMALL_STATE(1272)] = 54553, + [SMALL_STATE(1273)] = 54607, + [SMALL_STATE(1274)] = 54661, + [SMALL_STATE(1275)] = 54715, + [SMALL_STATE(1276)] = 54769, + [SMALL_STATE(1277)] = 54829, + [SMALL_STATE(1278)] = 54887, + [SMALL_STATE(1279)] = 54947, + [SMALL_STATE(1280)] = 55007, + [SMALL_STATE(1281)] = 55067, + [SMALL_STATE(1282)] = 55121, + [SMALL_STATE(1283)] = 55175, + [SMALL_STATE(1284)] = 55233, + [SMALL_STATE(1285)] = 55291, + [SMALL_STATE(1286)] = 55345, + [SMALL_STATE(1287)] = 55409, + [SMALL_STATE(1288)] = 55473, + [SMALL_STATE(1289)] = 55527, + [SMALL_STATE(1290)] = 55585, + [SMALL_STATE(1291)] = 55649, + [SMALL_STATE(1292)] = 55713, + [SMALL_STATE(1293)] = 55771, + [SMALL_STATE(1294)] = 55825, + [SMALL_STATE(1295)] = 55889, + [SMALL_STATE(1296)] = 55953, + [SMALL_STATE(1297)] = 56017, + [SMALL_STATE(1298)] = 56077, + [SMALL_STATE(1299)] = 56137, + [SMALL_STATE(1300)] = 56191, + [SMALL_STATE(1301)] = 56245, + [SMALL_STATE(1302)] = 56305, + [SMALL_STATE(1303)] = 56369, + [SMALL_STATE(1304)] = 56429, + [SMALL_STATE(1305)] = 56483, + [SMALL_STATE(1306)] = 56591, + [SMALL_STATE(1307)] = 56651, + [SMALL_STATE(1308)] = 56711, + [SMALL_STATE(1309)] = 56771, + [SMALL_STATE(1310)] = 56831, + [SMALL_STATE(1311)] = 56891, + [SMALL_STATE(1312)] = 56999, + [SMALL_STATE(1313)] = 57053, + [SMALL_STATE(1314)] = 57107, + [SMALL_STATE(1315)] = 57167, + [SMALL_STATE(1316)] = 57275, + [SMALL_STATE(1317)] = 57383, + [SMALL_STATE(1318)] = 57441, + [SMALL_STATE(1319)] = 57501, + [SMALL_STATE(1320)] = 57609, + [SMALL_STATE(1321)] = 57663, + [SMALL_STATE(1322)] = 57721, + [SMALL_STATE(1323)] = 57775, [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(1325)] = 57883, + [SMALL_STATE(1326)] = 57941, + [SMALL_STATE(1327)] = 57995, + [SMALL_STATE(1328)] = 58049, + [SMALL_STATE(1329)] = 58103, + [SMALL_STATE(1330)] = 58157, + [SMALL_STATE(1331)] = 58211, + [SMALL_STATE(1332)] = 58265, + [SMALL_STATE(1333)] = 58319, + [SMALL_STATE(1334)] = 58373, + [SMALL_STATE(1335)] = 58433, [SMALL_STATE(1336)] = 58487, - [SMALL_STATE(1337)] = 58540, - [SMALL_STATE(1338)] = 58597, - [SMALL_STATE(1339)] = 58656, + [SMALL_STATE(1337)] = 58547, + [SMALL_STATE(1338)] = 58601, + [SMALL_STATE(1339)] = 58655, [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(1341)] = 58763, + [SMALL_STATE(1342)] = 58817, + [SMALL_STATE(1343)] = 58871, + [SMALL_STATE(1344)] = 58925, + [SMALL_STATE(1345)] = 58979, + [SMALL_STATE(1346)] = 59033, + [SMALL_STATE(1347)] = 59087, + [SMALL_STATE(1348)] = 59141, + [SMALL_STATE(1349)] = 59195, + [SMALL_STATE(1350)] = 59255, + [SMALL_STATE(1351)] = 59315, + [SMALL_STATE(1352)] = 59369, + [SMALL_STATE(1353)] = 59423, + [SMALL_STATE(1354)] = 59477, + [SMALL_STATE(1355)] = 59531, + [SMALL_STATE(1356)] = 59591, + [SMALL_STATE(1357)] = 59651, + [SMALL_STATE(1358)] = 59705, + [SMALL_STATE(1359)] = 59759, + [SMALL_STATE(1360)] = 59867, + [SMALL_STATE(1361)] = 59921, + [SMALL_STATE(1362)] = 59981, + [SMALL_STATE(1363)] = 60041, + [SMALL_STATE(1364)] = 60095, + [SMALL_STATE(1365)] = 60187, + [SMALL_STATE(1366)] = 60279, + [SMALL_STATE(1367)] = 60333, + [SMALL_STATE(1368)] = 60387, + [SMALL_STATE(1369)] = 60441, + [SMALL_STATE(1370)] = 60495, + [SMALL_STATE(1371)] = 60549, + [SMALL_STATE(1372)] = 60603, + [SMALL_STATE(1373)] = 60657, + [SMALL_STATE(1374)] = 60711, + [SMALL_STATE(1375)] = 60765, + [SMALL_STATE(1376)] = 60825, + [SMALL_STATE(1377)] = 60879, + [SMALL_STATE(1378)] = 60933, + [SMALL_STATE(1379)] = 60987, + [SMALL_STATE(1380)] = 61041, + [SMALL_STATE(1381)] = 61095, + [SMALL_STATE(1382)] = 61149, + [SMALL_STATE(1383)] = 61203, + [SMALL_STATE(1384)] = 61257, + [SMALL_STATE(1385)] = 61311, + [SMALL_STATE(1386)] = 61365, + [SMALL_STATE(1387)] = 61419, + [SMALL_STATE(1388)] = 61473, + [SMALL_STATE(1389)] = 61527, + [SMALL_STATE(1390)] = 61581, + [SMALL_STATE(1391)] = 61635, + [SMALL_STATE(1392)] = 61689, + [SMALL_STATE(1393)] = 61749, + [SMALL_STATE(1394)] = 61803, + [SMALL_STATE(1395)] = 61857, + [SMALL_STATE(1396)] = 61911, + [SMALL_STATE(1397)] = 61965, + [SMALL_STATE(1398)] = 62019, + [SMALL_STATE(1399)] = 62073, + [SMALL_STATE(1400)] = 62127, + [SMALL_STATE(1401)] = 62181, + [SMALL_STATE(1402)] = 62235, + [SMALL_STATE(1403)] = 62289, + [SMALL_STATE(1404)] = 62343, + [SMALL_STATE(1405)] = 62397, + [SMALL_STATE(1406)] = 62457, + [SMALL_STATE(1407)] = 62517, [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(1409)] = 62637, + [SMALL_STATE(1410)] = 62691, + [SMALL_STATE(1411)] = 62745, + [SMALL_STATE(1412)] = 62805, + [SMALL_STATE(1413)] = 62865, + [SMALL_STATE(1414)] = 62919, + [SMALL_STATE(1415)] = 62979, + [SMALL_STATE(1416)] = 63039, + [SMALL_STATE(1417)] = 63099, + [SMALL_STATE(1418)] = 63159, + [SMALL_STATE(1419)] = 63213, + [SMALL_STATE(1420)] = 63273, + [SMALL_STATE(1421)] = 63333, + [SMALL_STATE(1422)] = 63387, + [SMALL_STATE(1423)] = 63445, + [SMALL_STATE(1424)] = 63499, + [SMALL_STATE(1425)] = 63553, + [SMALL_STATE(1426)] = 63619, + [SMALL_STATE(1427)] = 63679, + [SMALL_STATE(1428)] = 63739, + [SMALL_STATE(1429)] = 63799, + [SMALL_STATE(1430)] = 63859, + [SMALL_STATE(1431)] = 63919, + [SMALL_STATE(1432)] = 63979, + [SMALL_STATE(1433)] = 64039, + [SMALL_STATE(1434)] = 64099, + [SMALL_STATE(1435)] = 64153, + [SMALL_STATE(1436)] = 64207, + [SMALL_STATE(1437)] = 64261, + [SMALL_STATE(1438)] = 64315, + [SMALL_STATE(1439)] = 64369, + [SMALL_STATE(1440)] = 64423, + [SMALL_STATE(1441)] = 64477, + [SMALL_STATE(1442)] = 64531, + [SMALL_STATE(1443)] = 64585, + [SMALL_STATE(1444)] = 64639, + [SMALL_STATE(1445)] = 64692, + [SMALL_STATE(1446)] = 64745, + [SMALL_STATE(1447)] = 64802, + [SMALL_STATE(1448)] = 64859, + [SMALL_STATE(1449)] = 64912, + [SMALL_STATE(1450)] = 64971, + [SMALL_STATE(1451)] = 65024, + [SMALL_STATE(1452)] = 65083, + [SMALL_STATE(1453)] = 65136, + [SMALL_STATE(1454)] = 65195, + [SMALL_STATE(1455)] = 65248, + [SMALL_STATE(1456)] = 65307, + [SMALL_STATE(1457)] = 65360, + [SMALL_STATE(1458)] = 65419, + [SMALL_STATE(1459)] = 65472, + [SMALL_STATE(1460)] = 65531, + [SMALL_STATE(1461)] = 65584, + [SMALL_STATE(1462)] = 65643, + [SMALL_STATE(1463)] = 65702, + [SMALL_STATE(1464)] = 65761, + [SMALL_STATE(1465)] = 65820, + [SMALL_STATE(1466)] = 65879, + [SMALL_STATE(1467)] = 65938, + [SMALL_STATE(1468)] = 65997, + [SMALL_STATE(1469)] = 66056, + [SMALL_STATE(1470)] = 66115, + [SMALL_STATE(1471)] = 66168, + [SMALL_STATE(1472)] = 66221, + [SMALL_STATE(1473)] = 66274, + [SMALL_STATE(1474)] = 66327, + [SMALL_STATE(1475)] = 66380, + [SMALL_STATE(1476)] = 66437, + [SMALL_STATE(1477)] = 66490, + [SMALL_STATE(1478)] = 66549, + [SMALL_STATE(1479)] = 66602, + [SMALL_STATE(1480)] = 66659, + [SMALL_STATE(1481)] = 66718, + [SMALL_STATE(1482)] = 66777, + [SMALL_STATE(1483)] = 66830, + [SMALL_STATE(1484)] = 66883, + [SMALL_STATE(1485)] = 66936, + [SMALL_STATE(1486)] = 66989, + [SMALL_STATE(1487)] = 67046, + [SMALL_STATE(1488)] = 67099, + [SMALL_STATE(1489)] = 67152, + [SMALL_STATE(1490)] = 67205, + [SMALL_STATE(1491)] = 67258, + [SMALL_STATE(1492)] = 67317, + [SMALL_STATE(1493)] = 67374, + [SMALL_STATE(1494)] = 67427, + [SMALL_STATE(1495)] = 67480, + [SMALL_STATE(1496)] = 67533, + [SMALL_STATE(1497)] = 67592, + [SMALL_STATE(1498)] = 67645, + [SMALL_STATE(1499)] = 67698, + [SMALL_STATE(1500)] = 67757, + [SMALL_STATE(1501)] = 67816, + [SMALL_STATE(1502)] = 67875, + [SMALL_STATE(1503)] = 67934, + [SMALL_STATE(1504)] = 67991, + [SMALL_STATE(1505)] = 68050, + [SMALL_STATE(1506)] = 68107, + [SMALL_STATE(1507)] = 68166, + [SMALL_STATE(1508)] = 68225, + [SMALL_STATE(1509)] = 68284, + [SMALL_STATE(1510)] = 68343, + [SMALL_STATE(1511)] = 68402, + [SMALL_STATE(1512)] = 68455, + [SMALL_STATE(1513)] = 68514, + [SMALL_STATE(1514)] = 68567, + [SMALL_STATE(1515)] = 68620, + [SMALL_STATE(1516)] = 68673, + [SMALL_STATE(1517)] = 68726, + [SMALL_STATE(1518)] = 68785, + [SMALL_STATE(1519)] = 68838, + [SMALL_STATE(1520)] = 68891, + [SMALL_STATE(1521)] = 68944, + [SMALL_STATE(1522)] = 68997, + [SMALL_STATE(1523)] = 69056, + [SMALL_STATE(1524)] = 69109, + [SMALL_STATE(1525)] = 69168, + [SMALL_STATE(1526)] = 69227, + [SMALL_STATE(1527)] = 69286, + [SMALL_STATE(1528)] = 69345, + [SMALL_STATE(1529)] = 69398, + [SMALL_STATE(1530)] = 69455, + [SMALL_STATE(1531)] = 69514, + [SMALL_STATE(1532)] = 69573, + [SMALL_STATE(1533)] = 69626, + [SMALL_STATE(1534)] = 69685, + [SMALL_STATE(1535)] = 69744, + [SMALL_STATE(1536)] = 69797, + [SMALL_STATE(1537)] = 69850, + [SMALL_STATE(1538)] = 69907, + [SMALL_STATE(1539)] = 69966, + [SMALL_STATE(1540)] = 70019, + [SMALL_STATE(1541)] = 70078, + [SMALL_STATE(1542)] = 70135, + [SMALL_STATE(1543)] = 70188, + [SMALL_STATE(1544)] = 70241, + [SMALL_STATE(1545)] = 70298, + [SMALL_STATE(1546)] = 70357, + [SMALL_STATE(1547)] = 70416, + [SMALL_STATE(1548)] = 70473, + [SMALL_STATE(1549)] = 70532, + [SMALL_STATE(1550)] = 70589, + [SMALL_STATE(1551)] = 70642, + [SMALL_STATE(1552)] = 70701, + [SMALL_STATE(1553)] = 70760, + [SMALL_STATE(1554)] = 70819, + [SMALL_STATE(1555)] = 70908, + [SMALL_STATE(1556)] = 70961, + [SMALL_STATE(1557)] = 71020, + [SMALL_STATE(1558)] = 71109, + [SMALL_STATE(1559)] = 71162, + [SMALL_STATE(1560)] = 71221, + [SMALL_STATE(1561)] = 71310, + [SMALL_STATE(1562)] = 71363, + [SMALL_STATE(1563)] = 71420, + [SMALL_STATE(1564)] = 71473, + [SMALL_STATE(1565)] = 71530, + [SMALL_STATE(1566)] = 71583, + [SMALL_STATE(1567)] = 71640, + [SMALL_STATE(1568)] = 71693, + [SMALL_STATE(1569)] = 71750, + [SMALL_STATE(1570)] = 71803, + [SMALL_STATE(1571)] = 71856, + [SMALL_STATE(1572)] = 71909, + [SMALL_STATE(1573)] = 71968, + [SMALL_STATE(1574)] = 72025, + [SMALL_STATE(1575)] = 72084, + [SMALL_STATE(1576)] = 72149, + [SMALL_STATE(1577)] = 72202, + [SMALL_STATE(1578)] = 72255, + [SMALL_STATE(1579)] = 72314, + [SMALL_STATE(1580)] = 72373, + [SMALL_STATE(1581)] = 72430, + [SMALL_STATE(1582)] = 72489, + [SMALL_STATE(1583)] = 72542, + [SMALL_STATE(1584)] = 72599, + [SMALL_STATE(1585)] = 72652, + [SMALL_STATE(1586)] = 72711, + [SMALL_STATE(1587)] = 72764, + [SMALL_STATE(1588)] = 72817, + [SMALL_STATE(1589)] = 72874, + [SMALL_STATE(1590)] = 72933, + [SMALL_STATE(1591)] = 72990, + [SMALL_STATE(1592)] = 73043, + [SMALL_STATE(1593)] = 73102, + [SMALL_STATE(1594)] = 73155, + [SMALL_STATE(1595)] = 73214, + [SMALL_STATE(1596)] = 73273, + [SMALL_STATE(1597)] = 73332, + [SMALL_STATE(1598)] = 73391, + [SMALL_STATE(1599)] = 73444, + [SMALL_STATE(1600)] = 73503, + [SMALL_STATE(1601)] = 73556, + [SMALL_STATE(1602)] = 73609, + [SMALL_STATE(1603)] = 73662, + [SMALL_STATE(1604)] = 73721, + [SMALL_STATE(1605)] = 73780, + [SMALL_STATE(1606)] = 73833, + [SMALL_STATE(1607)] = 73886, + [SMALL_STATE(1608)] = 73939, + [SMALL_STATE(1609)] = 73998, + [SMALL_STATE(1610)] = 74057, + [SMALL_STATE(1611)] = 74110, + [SMALL_STATE(1612)] = 74163, + [SMALL_STATE(1613)] = 74216, + [SMALL_STATE(1614)] = 74275, + [SMALL_STATE(1615)] = 74328, + [SMALL_STATE(1616)] = 74381, + [SMALL_STATE(1617)] = 74438, + [SMALL_STATE(1618)] = 74491, + [SMALL_STATE(1619)] = 74550, + [SMALL_STATE(1620)] = 74603, + [SMALL_STATE(1621)] = 74656, + [SMALL_STATE(1622)] = 74715, + [SMALL_STATE(1623)] = 74774, + [SMALL_STATE(1624)] = 74833, + [SMALL_STATE(1625)] = 74890, + [SMALL_STATE(1626)] = 74943, + [SMALL_STATE(1627)] = 74996, + [SMALL_STATE(1628)] = 75055, + [SMALL_STATE(1629)] = 75114, + [SMALL_STATE(1630)] = 75173, + [SMALL_STATE(1631)] = 75232, + [SMALL_STATE(1632)] = 75291, + [SMALL_STATE(1633)] = 75344, + [SMALL_STATE(1634)] = 75397, + [SMALL_STATE(1635)] = 75456, + [SMALL_STATE(1636)] = 75515, + [SMALL_STATE(1637)] = 75568, + [SMALL_STATE(1638)] = 75621, + [SMALL_STATE(1639)] = 75674, + [SMALL_STATE(1640)] = 75727, + [SMALL_STATE(1641)] = 75786, + [SMALL_STATE(1642)] = 75839, + [SMALL_STATE(1643)] = 75898, + [SMALL_STATE(1644)] = 75957, + [SMALL_STATE(1645)] = 76016, + [SMALL_STATE(1646)] = 76068, + [SMALL_STATE(1647)] = 76120, + [SMALL_STATE(1648)] = 76172, + [SMALL_STATE(1649)] = 76224, + [SMALL_STATE(1650)] = 76276, + [SMALL_STATE(1651)] = 76328, + [SMALL_STATE(1652)] = 76380, + [SMALL_STATE(1653)] = 76432, + [SMALL_STATE(1654)] = 76490, + [SMALL_STATE(1655)] = 76542, + [SMALL_STATE(1656)] = 76594, + [SMALL_STATE(1657)] = 76646, + [SMALL_STATE(1658)] = 76698, + [SMALL_STATE(1659)] = 76750, + [SMALL_STATE(1660)] = 76806, + [SMALL_STATE(1661)] = 76858, + [SMALL_STATE(1662)] = 76916, + [SMALL_STATE(1663)] = 76968, + [SMALL_STATE(1664)] = 77026, + [SMALL_STATE(1665)] = 77084, + [SMALL_STATE(1666)] = 77140, + [SMALL_STATE(1667)] = 77192, + [SMALL_STATE(1668)] = 77244, + [SMALL_STATE(1669)] = 77296, + [SMALL_STATE(1670)] = 77354, + [SMALL_STATE(1671)] = 77412, + [SMALL_STATE(1672)] = 77470, + [SMALL_STATE(1673)] = 77528, + [SMALL_STATE(1674)] = 77580, + [SMALL_STATE(1675)] = 77632, + [SMALL_STATE(1676)] = 77684, + [SMALL_STATE(1677)] = 77736, + [SMALL_STATE(1678)] = 77794, + [SMALL_STATE(1679)] = 77846, + [SMALL_STATE(1680)] = 77898, + [SMALL_STATE(1681)] = 77950, + [SMALL_STATE(1682)] = 78002, + [SMALL_STATE(1683)] = 78060, + [SMALL_STATE(1684)] = 78118, + [SMALL_STATE(1685)] = 78170, + [SMALL_STATE(1686)] = 78222, + [SMALL_STATE(1687)] = 78278, + [SMALL_STATE(1688)] = 78330, + [SMALL_STATE(1689)] = 78382, + [SMALL_STATE(1690)] = 78434, + [SMALL_STATE(1691)] = 78486, + [SMALL_STATE(1692)] = 78538, + [SMALL_STATE(1693)] = 78590, + [SMALL_STATE(1694)] = 78642, + [SMALL_STATE(1695)] = 78694, + [SMALL_STATE(1696)] = 78746, + [SMALL_STATE(1697)] = 78798, + [SMALL_STATE(1698)] = 78856, + [SMALL_STATE(1699)] = 78908, + [SMALL_STATE(1700)] = 78996, + [SMALL_STATE(1701)] = 79048, + [SMALL_STATE(1702)] = 79100, + [SMALL_STATE(1703)] = 79188, + [SMALL_STATE(1704)] = 79246, + [SMALL_STATE(1705)] = 79298, + [SMALL_STATE(1706)] = 79350, + [SMALL_STATE(1707)] = 79402, + [SMALL_STATE(1708)] = 79454, + [SMALL_STATE(1709)] = 79506, + [SMALL_STATE(1710)] = 79558, + [SMALL_STATE(1711)] = 79610, + [SMALL_STATE(1712)] = 79662, + [SMALL_STATE(1713)] = 79714, + [SMALL_STATE(1714)] = 79766, + [SMALL_STATE(1715)] = 79824, + [SMALL_STATE(1716)] = 79880, + [SMALL_STATE(1717)] = 79932, + [SMALL_STATE(1718)] = 79984, + [SMALL_STATE(1719)] = 80036, + [SMALL_STATE(1720)] = 80088, + [SMALL_STATE(1721)] = 80146, + [SMALL_STATE(1722)] = 80198, + [SMALL_STATE(1723)] = 80250, + [SMALL_STATE(1724)] = 80302, + [SMALL_STATE(1725)] = 80354, + [SMALL_STATE(1726)] = 80406, + [SMALL_STATE(1727)] = 80458, + [SMALL_STATE(1728)] = 80510, + [SMALL_STATE(1729)] = 80562, + [SMALL_STATE(1730)] = 80614, + [SMALL_STATE(1731)] = 80672, + [SMALL_STATE(1732)] = 80724, + [SMALL_STATE(1733)] = 80782, + [SMALL_STATE(1734)] = 80834, + [SMALL_STATE(1735)] = 80886, + [SMALL_STATE(1736)] = 80944, + [SMALL_STATE(1737)] = 80996, + [SMALL_STATE(1738)] = 81048, + [SMALL_STATE(1739)] = 81100, + [SMALL_STATE(1740)] = 81158, + [SMALL_STATE(1741)] = 81210, + [SMALL_STATE(1742)] = 81262, + [SMALL_STATE(1743)] = 81314, + [SMALL_STATE(1744)] = 81366, + [SMALL_STATE(1745)] = 81418, + [SMALL_STATE(1746)] = 81476, + [SMALL_STATE(1747)] = 81534, + [SMALL_STATE(1748)] = 81586, + [SMALL_STATE(1749)] = 81638, + [SMALL_STATE(1750)] = 81690, + [SMALL_STATE(1751)] = 81742, + [SMALL_STATE(1752)] = 81794, + [SMALL_STATE(1753)] = 81852, + [SMALL_STATE(1754)] = 81904, + [SMALL_STATE(1755)] = 81956, + [SMALL_STATE(1756)] = 82008, + [SMALL_STATE(1757)] = 82060, + [SMALL_STATE(1758)] = 82118, + [SMALL_STATE(1759)] = 82170, + [SMALL_STATE(1760)] = 82222, + [SMALL_STATE(1761)] = 82284, + [SMALL_STATE(1762)] = 82340, + [SMALL_STATE(1763)] = 82392, + [SMALL_STATE(1764)] = 82450, + [SMALL_STATE(1765)] = 82552, + [SMALL_STATE(1766)] = 82604, + [SMALL_STATE(1767)] = 82656, + [SMALL_STATE(1768)] = 82708, + [SMALL_STATE(1769)] = 82770, + [SMALL_STATE(1770)] = 82826, + [SMALL_STATE(1771)] = 82878, + [SMALL_STATE(1772)] = 82936, + [SMALL_STATE(1773)] = 82988, + [SMALL_STATE(1774)] = 83046, + [SMALL_STATE(1775)] = 83098, + [SMALL_STATE(1776)] = 83150, + [SMALL_STATE(1777)] = 83202, + [SMALL_STATE(1778)] = 83254, + [SMALL_STATE(1779)] = 83306, + [SMALL_STATE(1780)] = 83362, + [SMALL_STATE(1781)] = 83414, + [SMALL_STATE(1782)] = 83472, + [SMALL_STATE(1783)] = 83524, + [SMALL_STATE(1784)] = 83576, + [SMALL_STATE(1785)] = 83628, + [SMALL_STATE(1786)] = 83680, + [SMALL_STATE(1787)] = 83738, + [SMALL_STATE(1788)] = 83790, + [SMALL_STATE(1789)] = 83842, + [SMALL_STATE(1790)] = 83894, + [SMALL_STATE(1791)] = 83946, + [SMALL_STATE(1792)] = 83998, + [SMALL_STATE(1793)] = 84050, + [SMALL_STATE(1794)] = 84108, + [SMALL_STATE(1795)] = 84160, + [SMALL_STATE(1796)] = 84212, + [SMALL_STATE(1797)] = 84264, + [SMALL_STATE(1798)] = 84316, + [SMALL_STATE(1799)] = 84372, + [SMALL_STATE(1800)] = 84424, + [SMALL_STATE(1801)] = 84476, + [SMALL_STATE(1802)] = 84528, + [SMALL_STATE(1803)] = 84580, + [SMALL_STATE(1804)] = 84632, + [SMALL_STATE(1805)] = 84734, + [SMALL_STATE(1806)] = 84786, + [SMALL_STATE(1807)] = 84838, + [SMALL_STATE(1808)] = 84890, + [SMALL_STATE(1809)] = 84942, + [SMALL_STATE(1810)] = 84994, + [SMALL_STATE(1811)] = 85046, + [SMALL_STATE(1812)] = 85098, + [SMALL_STATE(1813)] = 85150, + [SMALL_STATE(1814)] = 85202, + [SMALL_STATE(1815)] = 85258, + [SMALL_STATE(1816)] = 85316, + [SMALL_STATE(1817)] = 85368, + [SMALL_STATE(1818)] = 85420, + [SMALL_STATE(1819)] = 85472, + [SMALL_STATE(1820)] = 85524, + [SMALL_STATE(1821)] = 85576, + [SMALL_STATE(1822)] = 85628, + [SMALL_STATE(1823)] = 85680, + [SMALL_STATE(1824)] = 85732, + [SMALL_STATE(1825)] = 85784, + [SMALL_STATE(1826)] = 85836, + [SMALL_STATE(1827)] = 85888, + [SMALL_STATE(1828)] = 85940, + [SMALL_STATE(1829)] = 85992, + [SMALL_STATE(1830)] = 86044, + [SMALL_STATE(1831)] = 86102, + [SMALL_STATE(1832)] = 86154, + [SMALL_STATE(1833)] = 86206, + [SMALL_STATE(1834)] = 86258, + [SMALL_STATE(1835)] = 86316, + [SMALL_STATE(1836)] = 86374, + [SMALL_STATE(1837)] = 86432, + [SMALL_STATE(1838)] = 86484, + [SMALL_STATE(1839)] = 86586, + [SMALL_STATE(1840)] = 86642, + [SMALL_STATE(1841)] = 86698, + [SMALL_STATE(1842)] = 86750, + [SMALL_STATE(1843)] = 86808, + [SMALL_STATE(1844)] = 86860, + [SMALL_STATE(1845)] = 86912, + [SMALL_STATE(1846)] = 86970, + [SMALL_STATE(1847)] = 87022, + [SMALL_STATE(1848)] = 87074, + [SMALL_STATE(1849)] = 87126, + [SMALL_STATE(1850)] = 87178, + [SMALL_STATE(1851)] = 87230, + [SMALL_STATE(1852)] = 87290, + [SMALL_STATE(1853)] = 87342, + [SMALL_STATE(1854)] = 87394, + [SMALL_STATE(1855)] = 87446, + [SMALL_STATE(1856)] = 87504, + [SMALL_STATE(1857)] = 87562, + [SMALL_STATE(1858)] = 87622, + [SMALL_STATE(1859)] = 87680, + [SMALL_STATE(1860)] = 87738, + [SMALL_STATE(1861)] = 87790, + [SMALL_STATE(1862)] = 87848, + [SMALL_STATE(1863)] = 87906, + [SMALL_STATE(1864)] = 87964, + [SMALL_STATE(1865)] = 88022, + [SMALL_STATE(1866)] = 88078, + [SMALL_STATE(1867)] = 88136, + [SMALL_STATE(1868)] = 88188, + [SMALL_STATE(1869)] = 88246, + [SMALL_STATE(1870)] = 88298, + [SMALL_STATE(1871)] = 88350, + [SMALL_STATE(1872)] = 88402, + [SMALL_STATE(1873)] = 88460, + [SMALL_STATE(1874)] = 88518, + [SMALL_STATE(1875)] = 88576, + [SMALL_STATE(1876)] = 88634, + [SMALL_STATE(1877)] = 88692, + [SMALL_STATE(1878)] = 88744, + [SMALL_STATE(1879)] = 88796, + [SMALL_STATE(1880)] = 88848, + [SMALL_STATE(1881)] = 88906, + [SMALL_STATE(1882)] = 88958, + [SMALL_STATE(1883)] = 89016, + [SMALL_STATE(1884)] = 89084, + [SMALL_STATE(1885)] = 89136, + [SMALL_STATE(1886)] = 89194, + [SMALL_STATE(1887)] = 89246, + [SMALL_STATE(1888)] = 89298, + [SMALL_STATE(1889)] = 89400, + [SMALL_STATE(1890)] = 89452, + [SMALL_STATE(1891)] = 89554, + [SMALL_STATE(1892)] = 89612, + [SMALL_STATE(1893)] = 89670, + [SMALL_STATE(1894)] = 89722, + [SMALL_STATE(1895)] = 89774, + [SMALL_STATE(1896)] = 89826, + [SMALL_STATE(1897)] = 89878, + [SMALL_STATE(1898)] = 89946, + [SMALL_STATE(1899)] = 89998, + [SMALL_STATE(1900)] = 90056, + [SMALL_STATE(1901)] = 90114, + [SMALL_STATE(1902)] = 90166, + [SMALL_STATE(1903)] = 90222, + [SMALL_STATE(1904)] = 90274, + [SMALL_STATE(1905)] = 90332, + [SMALL_STATE(1906)] = 90390, + [SMALL_STATE(1907)] = 90448, + [SMALL_STATE(1908)] = 90508, + [SMALL_STATE(1909)] = 90560, + [SMALL_STATE(1910)] = 90612, + [SMALL_STATE(1911)] = 90664, + [SMALL_STATE(1912)] = 90722, + [SMALL_STATE(1913)] = 90774, + [SMALL_STATE(1914)] = 90826, + [SMALL_STATE(1915)] = 90878, + [SMALL_STATE(1916)] = 90930, + [SMALL_STATE(1917)] = 90982, + [SMALL_STATE(1918)] = 91034, + [SMALL_STATE(1919)] = 91086, + [SMALL_STATE(1920)] = 91144, + [SMALL_STATE(1921)] = 91210, + [SMALL_STATE(1922)] = 91262, + [SMALL_STATE(1923)] = 91314, + [SMALL_STATE(1924)] = 91372, + [SMALL_STATE(1925)] = 91436, + [SMALL_STATE(1926)] = 91492, + [SMALL_STATE(1927)] = 91544, + [SMALL_STATE(1928)] = 91596, + [SMALL_STATE(1929)] = 91648, + [SMALL_STATE(1930)] = 91700, + [SMALL_STATE(1931)] = 91752, + [SMALL_STATE(1932)] = 91810, + [SMALL_STATE(1933)] = 91868, + [SMALL_STATE(1934)] = 91920, + [SMALL_STATE(1935)] = 91978, + [SMALL_STATE(1936)] = 92080, + [SMALL_STATE(1937)] = 92132, + [SMALL_STATE(1938)] = 92188, + [SMALL_STATE(1939)] = 92240, + [SMALL_STATE(1940)] = 92292, + [SMALL_STATE(1941)] = 92344, + [SMALL_STATE(1942)] = 92396, + [SMALL_STATE(1943)] = 92448, + [SMALL_STATE(1944)] = 92500, + [SMALL_STATE(1945)] = 92552, + [SMALL_STATE(1946)] = 92609, + [SMALL_STATE(1947)] = 92664, + [SMALL_STATE(1948)] = 92719, + [SMALL_STATE(1949)] = 92776, + [SMALL_STATE(1950)] = 92827, + [SMALL_STATE(1951)] = 92878, + [SMALL_STATE(1952)] = 92929, + [SMALL_STATE(1953)] = 92980, + [SMALL_STATE(1954)] = 93031, + [SMALL_STATE(1955)] = 93082, + [SMALL_STATE(1956)] = 93133, + [SMALL_STATE(1957)] = 93232, + [SMALL_STATE(1958)] = 93283, + [SMALL_STATE(1959)] = 93340, + [SMALL_STATE(1960)] = 93391, + [SMALL_STATE(1961)] = 93448, + [SMALL_STATE(1962)] = 93499, + [SMALL_STATE(1963)] = 93556, + [SMALL_STATE(1964)] = 93607, + [SMALL_STATE(1965)] = 93658, + [SMALL_STATE(1966)] = 93709, + [SMALL_STATE(1967)] = 93760, + [SMALL_STATE(1968)] = 93811, + [SMALL_STATE(1969)] = 93910, + [SMALL_STATE(1970)] = 93961, + [SMALL_STATE(1971)] = 94012, + [SMALL_STATE(1972)] = 94063, + [SMALL_STATE(1973)] = 94114, + [SMALL_STATE(1974)] = 94165, + [SMALL_STATE(1975)] = 94216, + [SMALL_STATE(1976)] = 94267, + [SMALL_STATE(1977)] = 94318, + [SMALL_STATE(1978)] = 94369, + [SMALL_STATE(1979)] = 94420, + [SMALL_STATE(1980)] = 94471, + [SMALL_STATE(1981)] = 94528, + [SMALL_STATE(1982)] = 94585, + [SMALL_STATE(1983)] = 94642, + [SMALL_STATE(1984)] = 94693, + [SMALL_STATE(1985)] = 94744, + [SMALL_STATE(1986)] = 94795, + [SMALL_STATE(1987)] = 94846, + [SMALL_STATE(1988)] = 94897, + [SMALL_STATE(1989)] = 94954, + [SMALL_STATE(1990)] = 95005, + [SMALL_STATE(1991)] = 95056, + [SMALL_STATE(1992)] = 95107, + [SMALL_STATE(1993)] = 95158, + [SMALL_STATE(1994)] = 95209, + [SMALL_STATE(1995)] = 95260, + [SMALL_STATE(1996)] = 95311, + [SMALL_STATE(1997)] = 95362, + [SMALL_STATE(1998)] = 95413, + [SMALL_STATE(1999)] = 95464, + [SMALL_STATE(2000)] = 95515, + [SMALL_STATE(2001)] = 95566, + [SMALL_STATE(2002)] = 95617, + [SMALL_STATE(2003)] = 95668, + [SMALL_STATE(2004)] = 95719, + [SMALL_STATE(2005)] = 95770, + [SMALL_STATE(2006)] = 95821, + [SMALL_STATE(2007)] = 95872, + [SMALL_STATE(2008)] = 95923, + [SMALL_STATE(2009)] = 95974, + [SMALL_STATE(2010)] = 96025, + [SMALL_STATE(2011)] = 96076, + [SMALL_STATE(2012)] = 96127, + [SMALL_STATE(2013)] = 96178, + [SMALL_STATE(2014)] = 96229, + [SMALL_STATE(2015)] = 96280, + [SMALL_STATE(2016)] = 96335, + [SMALL_STATE(2017)] = 96390, + [SMALL_STATE(2018)] = 96445, + [SMALL_STATE(2019)] = 96502, + [SMALL_STATE(2020)] = 96559, + [SMALL_STATE(2021)] = 96614, + [SMALL_STATE(2022)] = 96669, + [SMALL_STATE(2023)] = 96738, + [SMALL_STATE(2024)] = 96837, + [SMALL_STATE(2025)] = 96888, + [SMALL_STATE(2026)] = 96943, + [SMALL_STATE(2027)] = 96998, + [SMALL_STATE(2028)] = 97057, + [SMALL_STATE(2029)] = 97116, + [SMALL_STATE(2030)] = 97167, + [SMALL_STATE(2031)] = 97222, + [SMALL_STATE(2032)] = 97277, + [SMALL_STATE(2033)] = 97328, + [SMALL_STATE(2034)] = 97379, + [SMALL_STATE(2035)] = 97430, + [SMALL_STATE(2036)] = 97481, + [SMALL_STATE(2037)] = 97532, + [SMALL_STATE(2038)] = 97583, + [SMALL_STATE(2039)] = 97638, + [SMALL_STATE(2040)] = 97689, + [SMALL_STATE(2041)] = 97740, + [SMALL_STATE(2042)] = 97791, + [SMALL_STATE(2043)] = 97842, + [SMALL_STATE(2044)] = 97893, + [SMALL_STATE(2045)] = 97944, + [SMALL_STATE(2046)] = 97995, + [SMALL_STATE(2047)] = 98046, + [SMALL_STATE(2048)] = 98097, + [SMALL_STATE(2049)] = 98148, + [SMALL_STATE(2050)] = 98199, + [SMALL_STATE(2051)] = 98256, + [SMALL_STATE(2052)] = 98313, + [SMALL_STATE(2053)] = 98364, + [SMALL_STATE(2054)] = 98415, + [SMALL_STATE(2055)] = 98466, + [SMALL_STATE(2056)] = 98521, + [SMALL_STATE(2057)] = 98572, + [SMALL_STATE(2058)] = 98623, + [SMALL_STATE(2059)] = 98678, + [SMALL_STATE(2060)] = 98729, + [SMALL_STATE(2061)] = 98780, + [SMALL_STATE(2062)] = 98831, + [SMALL_STATE(2063)] = 98882, + [SMALL_STATE(2064)] = 98933, + [SMALL_STATE(2065)] = 98984, + [SMALL_STATE(2066)] = 99035, + [SMALL_STATE(2067)] = 99086, + [SMALL_STATE(2068)] = 99141, + [SMALL_STATE(2069)] = 99196, + [SMALL_STATE(2070)] = 99247, + [SMALL_STATE(2071)] = 99298, + [SMALL_STATE(2072)] = 99353, + [SMALL_STATE(2073)] = 99408, + [SMALL_STATE(2074)] = 99465, + [SMALL_STATE(2075)] = 99522, + [SMALL_STATE(2076)] = 99577, + [SMALL_STATE(2077)] = 99628, + [SMALL_STATE(2078)] = 99679, + [SMALL_STATE(2079)] = 99730, + [SMALL_STATE(2080)] = 99781, + [SMALL_STATE(2081)] = 99832, + [SMALL_STATE(2082)] = 99887, + [SMALL_STATE(2083)] = 99938, + [SMALL_STATE(2084)] = 99989, + [SMALL_STATE(2085)] = 100040, + [SMALL_STATE(2086)] = 100095, + [SMALL_STATE(2087)] = 100150, + [SMALL_STATE(2088)] = 100249, + [SMALL_STATE(2089)] = 100304, + [SMALL_STATE(2090)] = 100359, + [SMALL_STATE(2091)] = 100416, + [SMALL_STATE(2092)] = 100473, + [SMALL_STATE(2093)] = 100530, + [SMALL_STATE(2094)] = 100581, + [SMALL_STATE(2095)] = 100632, + [SMALL_STATE(2096)] = 100683, + [SMALL_STATE(2097)] = 100734, + [SMALL_STATE(2098)] = 100785, + [SMALL_STATE(2099)] = 100884, + [SMALL_STATE(2100)] = 100983, + [SMALL_STATE(2101)] = 101038, + [SMALL_STATE(2102)] = 101089, + [SMALL_STATE(2103)] = 101144, + [SMALL_STATE(2104)] = 101195, + [SMALL_STATE(2105)] = 101246, + [SMALL_STATE(2106)] = 101303, + [SMALL_STATE(2107)] = 101360, + [SMALL_STATE(2108)] = 101459, + [SMALL_STATE(2109)] = 101516, + [SMALL_STATE(2110)] = 101573, + [SMALL_STATE(2111)] = 101628, + [SMALL_STATE(2112)] = 101727, + [SMALL_STATE(2113)] = 101782, + [SMALL_STATE(2114)] = 101839, + [SMALL_STATE(2115)] = 101896, + [SMALL_STATE(2116)] = 101947, + [SMALL_STATE(2117)] = 102046, + [SMALL_STATE(2118)] = 102145, + [SMALL_STATE(2119)] = 102196, + [SMALL_STATE(2120)] = 102295, + [SMALL_STATE(2121)] = 102346, + [SMALL_STATE(2122)] = 102445, + [SMALL_STATE(2123)] = 102544, + [SMALL_STATE(2124)] = 102595, + [SMALL_STATE(2125)] = 102650, + [SMALL_STATE(2126)] = 102701, + [SMALL_STATE(2127)] = 102752, + [SMALL_STATE(2128)] = 102803, + [SMALL_STATE(2129)] = 102854, + [SMALL_STATE(2130)] = 102905, + [SMALL_STATE(2131)] = 102956, + [SMALL_STATE(2132)] = 103007, + [SMALL_STATE(2133)] = 103058, + [SMALL_STATE(2134)] = 103109, + [SMALL_STATE(2135)] = 103164, + [SMALL_STATE(2136)] = 103219, + [SMALL_STATE(2137)] = 103270, + [SMALL_STATE(2138)] = 103325, + [SMALL_STATE(2139)] = 103376, + [SMALL_STATE(2140)] = 103433, + [SMALL_STATE(2141)] = 103484, + [SMALL_STATE(2142)] = 103535, + [SMALL_STATE(2143)] = 103586, + [SMALL_STATE(2144)] = 103637, + [SMALL_STATE(2145)] = 103694, + [SMALL_STATE(2146)] = 103745, + [SMALL_STATE(2147)] = 103796, + [SMALL_STATE(2148)] = 103847, + [SMALL_STATE(2149)] = 103898, + [SMALL_STATE(2150)] = 103955, + [SMALL_STATE(2151)] = 104006, + [SMALL_STATE(2152)] = 104057, + [SMALL_STATE(2153)] = 104108, + [SMALL_STATE(2154)] = 104197, + [SMALL_STATE(2155)] = 104252, + [SMALL_STATE(2156)] = 104351, + [SMALL_STATE(2157)] = 104402, + [SMALL_STATE(2158)] = 104469, + [SMALL_STATE(2159)] = 104520, + [SMALL_STATE(2160)] = 104571, + [SMALL_STATE(2161)] = 104622, + [SMALL_STATE(2162)] = 104673, + [SMALL_STATE(2163)] = 104724, + [SMALL_STATE(2164)] = 104775, + [SMALL_STATE(2165)] = 104830, + [SMALL_STATE(2166)] = 104881, + [SMALL_STATE(2167)] = 104932, + [SMALL_STATE(2168)] = 104983, + [SMALL_STATE(2169)] = 105034, + [SMALL_STATE(2170)] = 105089, + [SMALL_STATE(2171)] = 105152, + [SMALL_STATE(2172)] = 105207, + [SMALL_STATE(2173)] = 105258, + [SMALL_STATE(2174)] = 105309, + [SMALL_STATE(2175)] = 105360, + [SMALL_STATE(2176)] = 105417, + [SMALL_STATE(2177)] = 105474, + [SMALL_STATE(2178)] = 105529, + [SMALL_STATE(2179)] = 105584, + [SMALL_STATE(2180)] = 105683, + [SMALL_STATE(2181)] = 105740, + [SMALL_STATE(2182)] = 105797, + [SMALL_STATE(2183)] = 105854, + [SMALL_STATE(2184)] = 105909, + [SMALL_STATE(2185)] = 105966, + [SMALL_STATE(2186)] = 106023, + [SMALL_STATE(2187)] = 106080, + [SMALL_STATE(2188)] = 106137, + [SMALL_STATE(2189)] = 106192, + [SMALL_STATE(2190)] = 106249, + [SMALL_STATE(2191)] = 106306, + [SMALL_STATE(2192)] = 106363, + [SMALL_STATE(2193)] = 106420, + [SMALL_STATE(2194)] = 106477, + [SMALL_STATE(2195)] = 106534, + [SMALL_STATE(2196)] = 106591, + [SMALL_STATE(2197)] = 106648, + [SMALL_STATE(2198)] = 106703, + [SMALL_STATE(2199)] = 106753, + [SMALL_STATE(2200)] = 106803, + [SMALL_STATE(2201)] = 106899, + [SMALL_STATE(2202)] = 106949, + [SMALL_STATE(2203)] = 106999, + [SMALL_STATE(2204)] = 107049, + [SMALL_STATE(2205)] = 107099, + [SMALL_STATE(2206)] = 107149, + [SMALL_STATE(2207)] = 107199, + [SMALL_STATE(2208)] = 107249, + [SMALL_STATE(2209)] = 107299, + [SMALL_STATE(2210)] = 107349, + [SMALL_STATE(2211)] = 107403, + [SMALL_STATE(2212)] = 107453, + [SMALL_STATE(2213)] = 107503, + [SMALL_STATE(2214)] = 107557, + [SMALL_STATE(2215)] = 107607, + [SMALL_STATE(2216)] = 107657, + [SMALL_STATE(2217)] = 107707, + [SMALL_STATE(2218)] = 107757, + [SMALL_STATE(2219)] = 107817, + [SMALL_STATE(2220)] = 107913, + [SMALL_STATE(2221)] = 108009, + [SMALL_STATE(2222)] = 108105, + [SMALL_STATE(2223)] = 108201, + [SMALL_STATE(2224)] = 108297, + [SMALL_STATE(2225)] = 108393, + [SMALL_STATE(2226)] = 108489, + [SMALL_STATE(2227)] = 108585, + [SMALL_STATE(2228)] = 108681, + [SMALL_STATE(2229)] = 108777, + [SMALL_STATE(2230)] = 108873, + [SMALL_STATE(2231)] = 108969, + [SMALL_STATE(2232)] = 109065, + [SMALL_STATE(2233)] = 109161, + [SMALL_STATE(2234)] = 109257, + [SMALL_STATE(2235)] = 109307, + [SMALL_STATE(2236)] = 109357, + [SMALL_STATE(2237)] = 109411, + [SMALL_STATE(2238)] = 109461, + [SMALL_STATE(2239)] = 109511, + [SMALL_STATE(2240)] = 109561, + [SMALL_STATE(2241)] = 109611, + [SMALL_STATE(2242)] = 109665, + [SMALL_STATE(2243)] = 109715, + [SMALL_STATE(2244)] = 109765, + [SMALL_STATE(2245)] = 109815, + [SMALL_STATE(2246)] = 109865, + [SMALL_STATE(2247)] = 109915, + [SMALL_STATE(2248)] = 109965, + [SMALL_STATE(2249)] = 110015, + [SMALL_STATE(2250)] = 110065, + [SMALL_STATE(2251)] = 110115, + [SMALL_STATE(2252)] = 110211, + [SMALL_STATE(2253)] = 110265, + [SMALL_STATE(2254)] = 110315, + [SMALL_STATE(2255)] = 110365, + [SMALL_STATE(2256)] = 110461, + [SMALL_STATE(2257)] = 110557, + [SMALL_STATE(2258)] = 110607, + [SMALL_STATE(2259)] = 110657, + [SMALL_STATE(2260)] = 110707, + [SMALL_STATE(2261)] = 110757, + [SMALL_STATE(2262)] = 110807, + [SMALL_STATE(2263)] = 110857, + [SMALL_STATE(2264)] = 110907, + [SMALL_STATE(2265)] = 110957, + [SMALL_STATE(2266)] = 111053, + [SMALL_STATE(2267)] = 111149, + [SMALL_STATE(2268)] = 111199, + [SMALL_STATE(2269)] = 111249, + [SMALL_STATE(2270)] = 111307, + [SMALL_STATE(2271)] = 111365, + [SMALL_STATE(2272)] = 111415, + [SMALL_STATE(2273)] = 111465, + [SMALL_STATE(2274)] = 111561, + [SMALL_STATE(2275)] = 111611, + [SMALL_STATE(2276)] = 111661, + [SMALL_STATE(2277)] = 111711, + [SMALL_STATE(2278)] = 111765, + [SMALL_STATE(2279)] = 111815, + [SMALL_STATE(2280)] = 111869, + [SMALL_STATE(2281)] = 111919, + [SMALL_STATE(2282)] = 112015, + [SMALL_STATE(2283)] = 112111, + [SMALL_STATE(2284)] = 112161, + [SMALL_STATE(2285)] = 112215, + [SMALL_STATE(2286)] = 112265, + [SMALL_STATE(2287)] = 112319, + [SMALL_STATE(2288)] = 112369, + [SMALL_STATE(2289)] = 112419, + [SMALL_STATE(2290)] = 112473, + [SMALL_STATE(2291)] = 112527, + [SMALL_STATE(2292)] = 112577, + [SMALL_STATE(2293)] = 112627, + [SMALL_STATE(2294)] = 112681, + [SMALL_STATE(2295)] = 112735, + [SMALL_STATE(2296)] = 112785, + [SMALL_STATE(2297)] = 112839, + [SMALL_STATE(2298)] = 112889, + [SMALL_STATE(2299)] = 112939, + [SMALL_STATE(2300)] = 112989, + [SMALL_STATE(2301)] = 113039, + [SMALL_STATE(2302)] = 113135, + [SMALL_STATE(2303)] = 113231, + [SMALL_STATE(2304)] = 113291, + [SMALL_STATE(2305)] = 113345, + [SMALL_STATE(2306)] = 113395, + [SMALL_STATE(2307)] = 113445, + [SMALL_STATE(2308)] = 113495, + [SMALL_STATE(2309)] = 113591, + [SMALL_STATE(2310)] = 113687, + [SMALL_STATE(2311)] = 113783, + [SMALL_STATE(2312)] = 113879, + [SMALL_STATE(2313)] = 113975, + [SMALL_STATE(2314)] = 114071, + [SMALL_STATE(2315)] = 114167, + [SMALL_STATE(2316)] = 114263, + [SMALL_STATE(2317)] = 114359, + [SMALL_STATE(2318)] = 114455, + [SMALL_STATE(2319)] = 114551, + [SMALL_STATE(2320)] = 114647, + [SMALL_STATE(2321)] = 114743, + [SMALL_STATE(2322)] = 114839, + [SMALL_STATE(2323)] = 114889, + [SMALL_STATE(2324)] = 114985, + [SMALL_STATE(2325)] = 115035, + [SMALL_STATE(2326)] = 115091, + [SMALL_STATE(2327)] = 115147, + [SMALL_STATE(2328)] = 115203, + [SMALL_STATE(2329)] = 115299, + [SMALL_STATE(2330)] = 115395, + [SMALL_STATE(2331)] = 115455, + [SMALL_STATE(2332)] = 115505, + [SMALL_STATE(2333)] = 115559, + [SMALL_STATE(2334)] = 115655, + [SMALL_STATE(2335)] = 115751, + [SMALL_STATE(2336)] = 115811, + [SMALL_STATE(2337)] = 115907, + [SMALL_STATE(2338)] = 116003, + [SMALL_STATE(2339)] = 116063, + [SMALL_STATE(2340)] = 116159, + [SMALL_STATE(2341)] = 116255, + [SMALL_STATE(2342)] = 116315, + [SMALL_STATE(2343)] = 116411, + [SMALL_STATE(2344)] = 116507, + [SMALL_STATE(2345)] = 116603, + [SMALL_STATE(2346)] = 116699, + [SMALL_STATE(2347)] = 116795, + [SMALL_STATE(2348)] = 116891, + [SMALL_STATE(2349)] = 116951, + [SMALL_STATE(2350)] = 117047, + [SMALL_STATE(2351)] = 117143, + [SMALL_STATE(2352)] = 117239, + [SMALL_STATE(2353)] = 117299, + [SMALL_STATE(2354)] = 117395, + [SMALL_STATE(2355)] = 117491, + [SMALL_STATE(2356)] = 117551, + [SMALL_STATE(2357)] = 117611, + [SMALL_STATE(2358)] = 117671, + [SMALL_STATE(2359)] = 117731, + [SMALL_STATE(2360)] = 117791, + [SMALL_STATE(2361)] = 117851, + [SMALL_STATE(2362)] = 117911, + [SMALL_STATE(2363)] = 117971, + [SMALL_STATE(2364)] = 118031, + [SMALL_STATE(2365)] = 118091, + [SMALL_STATE(2366)] = 118151, + [SMALL_STATE(2367)] = 118211, + [SMALL_STATE(2368)] = 118271, + [SMALL_STATE(2369)] = 118331, + [SMALL_STATE(2370)] = 118391, + [SMALL_STATE(2371)] = 118451, + [SMALL_STATE(2372)] = 118511, + [SMALL_STATE(2373)] = 118571, + [SMALL_STATE(2374)] = 118631, + [SMALL_STATE(2375)] = 118691, + [SMALL_STATE(2376)] = 118751, + [SMALL_STATE(2377)] = 118811, + [SMALL_STATE(2378)] = 118871, + [SMALL_STATE(2379)] = 118931, + [SMALL_STATE(2380)] = 118991, + [SMALL_STATE(2381)] = 119051, + [SMALL_STATE(2382)] = 119111, + [SMALL_STATE(2383)] = 119171, + [SMALL_STATE(2384)] = 119231, + [SMALL_STATE(2385)] = 119291, + [SMALL_STATE(2386)] = 119351, + [SMALL_STATE(2387)] = 119411, + [SMALL_STATE(2388)] = 119471, + [SMALL_STATE(2389)] = 119531, + [SMALL_STATE(2390)] = 119591, + [SMALL_STATE(2391)] = 119651, + [SMALL_STATE(2392)] = 119711, + [SMALL_STATE(2393)] = 119771, + [SMALL_STATE(2394)] = 119831, + [SMALL_STATE(2395)] = 119891, + [SMALL_STATE(2396)] = 119951, + [SMALL_STATE(2397)] = 120011, + [SMALL_STATE(2398)] = 120071, + [SMALL_STATE(2399)] = 120131, + [SMALL_STATE(2400)] = 120191, + [SMALL_STATE(2401)] = 120251, + [SMALL_STATE(2402)] = 120311, + [SMALL_STATE(2403)] = 120371, + [SMALL_STATE(2404)] = 120431, + [SMALL_STATE(2405)] = 120491, + [SMALL_STATE(2406)] = 120551, + [SMALL_STATE(2407)] = 120611, + [SMALL_STATE(2408)] = 120671, + [SMALL_STATE(2409)] = 120731, + [SMALL_STATE(2410)] = 120791, + [SMALL_STATE(2411)] = 120851, + [SMALL_STATE(2412)] = 120911, + [SMALL_STATE(2413)] = 120971, + [SMALL_STATE(2414)] = 121031, + [SMALL_STATE(2415)] = 121091, + [SMALL_STATE(2416)] = 121151, + [SMALL_STATE(2417)] = 121211, + [SMALL_STATE(2418)] = 121271, + [SMALL_STATE(2419)] = 121331, + [SMALL_STATE(2420)] = 121391, + [SMALL_STATE(2421)] = 121451, + [SMALL_STATE(2422)] = 121511, + [SMALL_STATE(2423)] = 121571, + [SMALL_STATE(2424)] = 121631, + [SMALL_STATE(2425)] = 121691, + [SMALL_STATE(2426)] = 121751, + [SMALL_STATE(2427)] = 121811, + [SMALL_STATE(2428)] = 121871, + [SMALL_STATE(2429)] = 121931, + [SMALL_STATE(2430)] = 121991, + [SMALL_STATE(2431)] = 122051, + [SMALL_STATE(2432)] = 122111, + [SMALL_STATE(2433)] = 122171, + [SMALL_STATE(2434)] = 122221, + [SMALL_STATE(2435)] = 122317, + [SMALL_STATE(2436)] = 122413, + [SMALL_STATE(2437)] = 122463, + [SMALL_STATE(2438)] = 122519, + [SMALL_STATE(2439)] = 122575, + [SMALL_STATE(2440)] = 122671, + [SMALL_STATE(2441)] = 122721, + [SMALL_STATE(2442)] = 122817, + [SMALL_STATE(2443)] = 122867, + [SMALL_STATE(2444)] = 122917, + [SMALL_STATE(2445)] = 123013, + [SMALL_STATE(2446)] = 123109, + [SMALL_STATE(2447)] = 123159, + [SMALL_STATE(2448)] = 123209, + [SMALL_STATE(2449)] = 123259, + [SMALL_STATE(2450)] = 123355, + [SMALL_STATE(2451)] = 123451, + [SMALL_STATE(2452)] = 123501, + [SMALL_STATE(2453)] = 123551, + [SMALL_STATE(2454)] = 123601, + [SMALL_STATE(2455)] = 123697, + [SMALL_STATE(2456)] = 123747, + [SMALL_STATE(2457)] = 123801, + [SMALL_STATE(2458)] = 123851, + [SMALL_STATE(2459)] = 123901, + [SMALL_STATE(2460)] = 123955, + [SMALL_STATE(2461)] = 124011, + [SMALL_STATE(2462)] = 124061, + [SMALL_STATE(2463)] = 124111, + [SMALL_STATE(2464)] = 124169, + [SMALL_STATE(2465)] = 124225, + [SMALL_STATE(2466)] = 124321, + [SMALL_STATE(2467)] = 124371, + [SMALL_STATE(2468)] = 124425, + [SMALL_STATE(2469)] = 124479, + [SMALL_STATE(2470)] = 124529, + [SMALL_STATE(2471)] = 124579, + [SMALL_STATE(2472)] = 124675, + [SMALL_STATE(2473)] = 124771, + [SMALL_STATE(2474)] = 124867, + [SMALL_STATE(2475)] = 124963, + [SMALL_STATE(2476)] = 125059, + [SMALL_STATE(2477)] = 125155, + [SMALL_STATE(2478)] = 125251, + [SMALL_STATE(2479)] = 125347, + [SMALL_STATE(2480)] = 125443, + [SMALL_STATE(2481)] = 125539, + [SMALL_STATE(2482)] = 125635, + [SMALL_STATE(2483)] = 125731, + [SMALL_STATE(2484)] = 125785, + [SMALL_STATE(2485)] = 125839, + [SMALL_STATE(2486)] = 125893, + [SMALL_STATE(2487)] = 125943, + [SMALL_STATE(2488)] = 126001, + [SMALL_STATE(2489)] = 126051, + [SMALL_STATE(2490)] = 126101, + [SMALL_STATE(2491)] = 126151, + [SMALL_STATE(2492)] = 126209, + [SMALL_STATE(2493)] = 126259, + [SMALL_STATE(2494)] = 126355, + [SMALL_STATE(2495)] = 126405, + [SMALL_STATE(2496)] = 126463, + [SMALL_STATE(2497)] = 126513, + [SMALL_STATE(2498)] = 126563, + [SMALL_STATE(2499)] = 126617, + [SMALL_STATE(2500)] = 126667, + [SMALL_STATE(2501)] = 126763, + [SMALL_STATE(2502)] = 126817, + [SMALL_STATE(2503)] = 126913, + [SMALL_STATE(2504)] = 127009, + [SMALL_STATE(2505)] = 127059, + [SMALL_STATE(2506)] = 127115, + [SMALL_STATE(2507)] = 127211, + [SMALL_STATE(2508)] = 127307, + [SMALL_STATE(2509)] = 127363, + [SMALL_STATE(2510)] = 127417, + [SMALL_STATE(2511)] = 127513, + [SMALL_STATE(2512)] = 127609, + [SMALL_STATE(2513)] = 127705, + [SMALL_STATE(2514)] = 127801, + [SMALL_STATE(2515)] = 127897, + [SMALL_STATE(2516)] = 127993, + [SMALL_STATE(2517)] = 128089, + [SMALL_STATE(2518)] = 128185, + [SMALL_STATE(2519)] = 128281, + [SMALL_STATE(2520)] = 128377, + [SMALL_STATE(2521)] = 128473, + [SMALL_STATE(2522)] = 128569, + [SMALL_STATE(2523)] = 128665, + [SMALL_STATE(2524)] = 128761, + [SMALL_STATE(2525)] = 128857, + [SMALL_STATE(2526)] = 128953, + [SMALL_STATE(2527)] = 129049, + [SMALL_STATE(2528)] = 129103, + [SMALL_STATE(2529)] = 129199, + [SMALL_STATE(2530)] = 129295, + [SMALL_STATE(2531)] = 129345, + [SMALL_STATE(2532)] = 129399, + [SMALL_STATE(2533)] = 129449, + [SMALL_STATE(2534)] = 129545, + [SMALL_STATE(2535)] = 129641, + [SMALL_STATE(2536)] = 129737, + [SMALL_STATE(2537)] = 129787, + [SMALL_STATE(2538)] = 129837, + [SMALL_STATE(2539)] = 129887, + [SMALL_STATE(2540)] = 129937, + [SMALL_STATE(2541)] = 129987, + [SMALL_STATE(2542)] = 130037, + [SMALL_STATE(2543)] = 130087, + [SMALL_STATE(2544)] = 130137, + [SMALL_STATE(2545)] = 130187, + [SMALL_STATE(2546)] = 130237, + [SMALL_STATE(2547)] = 130287, + [SMALL_STATE(2548)] = 130337, + [SMALL_STATE(2549)] = 130387, + [SMALL_STATE(2550)] = 130437, + [SMALL_STATE(2551)] = 130533, + [SMALL_STATE(2552)] = 130583, + [SMALL_STATE(2553)] = 130633, + [SMALL_STATE(2554)] = 130692, + [SMALL_STATE(2555)] = 130745, + [SMALL_STATE(2556)] = 130798, + [SMALL_STATE(2557)] = 130847, + [SMALL_STATE(2558)] = 130900, + [SMALL_STATE(2559)] = 130953, + [SMALL_STATE(2560)] = 131002, + [SMALL_STATE(2561)] = 131051, + [SMALL_STATE(2562)] = 131100, + [SMALL_STATE(2563)] = 131149, + [SMALL_STATE(2564)] = 131198, + [SMALL_STATE(2565)] = 131247, + [SMALL_STATE(2566)] = 131296, + [SMALL_STATE(2567)] = 131345, + [SMALL_STATE(2568)] = 131394, + [SMALL_STATE(2569)] = 131443, + [SMALL_STATE(2570)] = 131492, + [SMALL_STATE(2571)] = 131547, + [SMALL_STATE(2572)] = 131602, + [SMALL_STATE(2573)] = 131657, + [SMALL_STATE(2574)] = 131712, + [SMALL_STATE(2575)] = 131761, + [SMALL_STATE(2576)] = 131810, + [SMALL_STATE(2577)] = 131859, + [SMALL_STATE(2578)] = 131908, + [SMALL_STATE(2579)] = 131961, + [SMALL_STATE(2580)] = 132010, + [SMALL_STATE(2581)] = 132059, + [SMALL_STATE(2582)] = 132108, + [SMALL_STATE(2583)] = 132157, + [SMALL_STATE(2584)] = 132206, + [SMALL_STATE(2585)] = 132259, + [SMALL_STATE(2586)] = 132308, + [SMALL_STATE(2587)] = 132357, + [SMALL_STATE(2588)] = 132406, + [SMALL_STATE(2589)] = 132455, + [SMALL_STATE(2590)] = 132504, + [SMALL_STATE(2591)] = 132557, + [SMALL_STATE(2592)] = 132612, + [SMALL_STATE(2593)] = 132661, + [SMALL_STATE(2594)] = 132716, + [SMALL_STATE(2595)] = 132769, + [SMALL_STATE(2596)] = 132818, + [SMALL_STATE(2597)] = 132871, + [SMALL_STATE(2598)] = 132920, + [SMALL_STATE(2599)] = 132969, + [SMALL_STATE(2600)] = 133028, + [SMALL_STATE(2601)] = 133077, + [SMALL_STATE(2602)] = 133130, + [SMALL_STATE(2603)] = 133183, + [SMALL_STATE(2604)] = 133232, + [SMALL_STATE(2605)] = 133289, + [SMALL_STATE(2606)] = 133346, + [SMALL_STATE(2607)] = 133399, + [SMALL_STATE(2608)] = 133452, + [SMALL_STATE(2609)] = 133505, + [SMALL_STATE(2610)] = 133558, + [SMALL_STATE(2611)] = 133607, + [SMALL_STATE(2612)] = 133660, + [SMALL_STATE(2613)] = 133713, + [SMALL_STATE(2614)] = 133762, + [SMALL_STATE(2615)] = 133811, + [SMALL_STATE(2616)] = 133860, + [SMALL_STATE(2617)] = 133909, + [SMALL_STATE(2618)] = 133958, + [SMALL_STATE(2619)] = 134007, + [SMALL_STATE(2620)] = 134056, + [SMALL_STATE(2621)] = 134109, + [SMALL_STATE(2622)] = 134162, + [SMALL_STATE(2623)] = 134215, + [SMALL_STATE(2624)] = 134270, + [SMALL_STATE(2625)] = 134325, + [SMALL_STATE(2626)] = 134374, + [SMALL_STATE(2627)] = 134429, + [SMALL_STATE(2628)] = 134484, + [SMALL_STATE(2629)] = 134537, + [SMALL_STATE(2630)] = 134592, + [SMALL_STATE(2631)] = 134647, + [SMALL_STATE(2632)] = 134702, + [SMALL_STATE(2633)] = 134751, + [SMALL_STATE(2634)] = 134806, + [SMALL_STATE(2635)] = 134861, + [SMALL_STATE(2636)] = 134916, + [SMALL_STATE(2637)] = 134971, + [SMALL_STATE(2638)] = 135026, + [SMALL_STATE(2639)] = 135075, + [SMALL_STATE(2640)] = 135128, + [SMALL_STATE(2641)] = 135181, + [SMALL_STATE(2642)] = 135236, + [SMALL_STATE(2643)] = 135291, + [SMALL_STATE(2644)] = 135346, + [SMALL_STATE(2645)] = 135401, + [SMALL_STATE(2646)] = 135450, + [SMALL_STATE(2647)] = 135503, + [SMALL_STATE(2648)] = 135552, + [SMALL_STATE(2649)] = 135600, + [SMALL_STATE(2650)] = 135648, + [SMALL_STATE(2651)] = 135702, + [SMALL_STATE(2652)] = 135750, + [SMALL_STATE(2653)] = 135804, + [SMALL_STATE(2654)] = 135856, + [SMALL_STATE(2655)] = 135908, + [SMALL_STATE(2656)] = 135964, + [SMALL_STATE(2657)] = 136020, + [SMALL_STATE(2658)] = 136070, + [SMALL_STATE(2659)] = 136164, + [SMALL_STATE(2660)] = 136258, + [SMALL_STATE(2661)] = 136306, + [SMALL_STATE(2662)] = 136358, + [SMALL_STATE(2663)] = 136410, + [SMALL_STATE(2664)] = 136462, + [SMALL_STATE(2665)] = 136514, + [SMALL_STATE(2666)] = 136566, + [SMALL_STATE(2667)] = 136618, + [SMALL_STATE(2668)] = 136674, + [SMALL_STATE(2669)] = 136728, + [SMALL_STATE(2670)] = 136784, + [SMALL_STATE(2671)] = 136878, + [SMALL_STATE(2672)] = 136972, + [SMALL_STATE(2673)] = 137024, + [SMALL_STATE(2674)] = 137118, + [SMALL_STATE(2675)] = 137166, + [SMALL_STATE(2676)] = 137260, + [SMALL_STATE(2677)] = 137312, + [SMALL_STATE(2678)] = 137364, + [SMALL_STATE(2679)] = 137412, + [SMALL_STATE(2680)] = 137460, + [SMALL_STATE(2681)] = 137508, + [SMALL_STATE(2682)] = 137562, + [SMALL_STATE(2683)] = 137616, + [SMALL_STATE(2684)] = 137668, + [SMALL_STATE(2685)] = 137722, + [SMALL_STATE(2686)] = 137770, + [SMALL_STATE(2687)] = 137818, + [SMALL_STATE(2688)] = 137870, + [SMALL_STATE(2689)] = 137918, + [SMALL_STATE(2690)] = 137972, + [SMALL_STATE(2691)] = 138028, + [SMALL_STATE(2692)] = 138084, + [SMALL_STATE(2693)] = 138138, + [SMALL_STATE(2694)] = 138190, + [SMALL_STATE(2695)] = 138244, + [SMALL_STATE(2696)] = 138338, + [SMALL_STATE(2697)] = 138390, + [SMALL_STATE(2698)] = 138446, + [SMALL_STATE(2699)] = 138540, + [SMALL_STATE(2700)] = 138634, + [SMALL_STATE(2701)] = 138690, + [SMALL_STATE(2702)] = 138742, + [SMALL_STATE(2703)] = 138836, + [SMALL_STATE(2704)] = 138890, + [SMALL_STATE(2705)] = 138942, + [SMALL_STATE(2706)] = 138994, + [SMALL_STATE(2707)] = 139088, + [SMALL_STATE(2708)] = 139182, + [SMALL_STATE(2709)] = 139234, + [SMALL_STATE(2710)] = 139286, + [SMALL_STATE(2711)] = 139380, + [SMALL_STATE(2712)] = 139474, + [SMALL_STATE(2713)] = 139528, + [SMALL_STATE(2714)] = 139580, + [SMALL_STATE(2715)] = 139636, + [SMALL_STATE(2716)] = 139692, + [SMALL_STATE(2717)] = 139746, + [SMALL_STATE(2718)] = 139794, + [SMALL_STATE(2719)] = 139842, + [SMALL_STATE(2720)] = 139894, + [SMALL_STATE(2721)] = 139948, + [SMALL_STATE(2722)] = 139996, + [SMALL_STATE(2723)] = 140044, + [SMALL_STATE(2724)] = 140098, + [SMALL_STATE(2725)] = 140154, + [SMALL_STATE(2726)] = 140210, + [SMALL_STATE(2727)] = 140258, + [SMALL_STATE(2728)] = 140306, + [SMALL_STATE(2729)] = 140354, + [SMALL_STATE(2730)] = 140402, + [SMALL_STATE(2731)] = 140450, + [SMALL_STATE(2732)] = 140498, + [SMALL_STATE(2733)] = 140546, + [SMALL_STATE(2734)] = 140598, + [SMALL_STATE(2735)] = 140650, + [SMALL_STATE(2736)] = 140698, + [SMALL_STATE(2737)] = 140746, + [SMALL_STATE(2738)] = 140794, + [SMALL_STATE(2739)] = 140848, + [SMALL_STATE(2740)] = 140900, + [SMALL_STATE(2741)] = 140948, + [SMALL_STATE(2742)] = 141000, + [SMALL_STATE(2743)] = 141052, + [SMALL_STATE(2744)] = 141104, + [SMALL_STATE(2745)] = 141198, + [SMALL_STATE(2746)] = 141252, + [SMALL_STATE(2747)] = 141304, + [SMALL_STATE(2748)] = 141356, + [SMALL_STATE(2749)] = 141408, + [SMALL_STATE(2750)] = 141460, + [SMALL_STATE(2751)] = 141514, + [SMALL_STATE(2752)] = 141568, + [SMALL_STATE(2753)] = 141616, + [SMALL_STATE(2754)] = 141668, + [SMALL_STATE(2755)] = 141722, + [SMALL_STATE(2756)] = 141776, + [SMALL_STATE(2757)] = 141830, + [SMALL_STATE(2758)] = 141884, + [SMALL_STATE(2759)] = 141938, + [SMALL_STATE(2760)] = 141990, + [SMALL_STATE(2761)] = 142042, + [SMALL_STATE(2762)] = 142094, + [SMALL_STATE(2763)] = 142146, + [SMALL_STATE(2764)] = 142240, + [SMALL_STATE(2765)] = 142294, + [SMALL_STATE(2766)] = 142348, + [SMALL_STATE(2767)] = 142402, + [SMALL_STATE(2768)] = 142454, + [SMALL_STATE(2769)] = 142502, + [SMALL_STATE(2770)] = 142550, + [SMALL_STATE(2771)] = 142598, + [SMALL_STATE(2772)] = 142646, + [SMALL_STATE(2773)] = 142694, + [SMALL_STATE(2774)] = 142741, + [SMALL_STATE(2775)] = 142788, + [SMALL_STATE(2776)] = 142841, + [SMALL_STATE(2777)] = 142892, + [SMALL_STATE(2778)] = 142939, + [SMALL_STATE(2779)] = 142986, + [SMALL_STATE(2780)] = 143033, + [SMALL_STATE(2781)] = 143084, + [SMALL_STATE(2782)] = 143131, + [SMALL_STATE(2783)] = 143178, + [SMALL_STATE(2784)] = 143231, + [SMALL_STATE(2785)] = 143278, + [SMALL_STATE(2786)] = 143329, + [SMALL_STATE(2787)] = 143376, + [SMALL_STATE(2788)] = 143427, + [SMALL_STATE(2789)] = 143474, + [SMALL_STATE(2790)] = 143525, + [SMALL_STATE(2791)] = 143572, + [SMALL_STATE(2792)] = 143625, + [SMALL_STATE(2793)] = 143672, + [SMALL_STATE(2794)] = 143719, + [SMALL_STATE(2795)] = 143766, + [SMALL_STATE(2796)] = 143813, + [SMALL_STATE(2797)] = 143860, + [SMALL_STATE(2798)] = 143907, + [SMALL_STATE(2799)] = 143958, + [SMALL_STATE(2800)] = 144005, + [SMALL_STATE(2801)] = 144056, + [SMALL_STATE(2802)] = 144103, + [SMALL_STATE(2803)] = 144150, + [SMALL_STATE(2804)] = 144197, + [SMALL_STATE(2805)] = 144244, + [SMALL_STATE(2806)] = 144297, + [SMALL_STATE(2807)] = 144344, + [SMALL_STATE(2808)] = 144391, + [SMALL_STATE(2809)] = 144438, + [SMALL_STATE(2810)] = 144485, + [SMALL_STATE(2811)] = 144532, + [SMALL_STATE(2812)] = 144583, + [SMALL_STATE(2813)] = 144630, + [SMALL_STATE(2814)] = 144677, + [SMALL_STATE(2815)] = 144728, + [SMALL_STATE(2816)] = 144775, + [SMALL_STATE(2817)] = 144826, + [SMALL_STATE(2818)] = 144873, + [SMALL_STATE(2819)] = 144920, + [SMALL_STATE(2820)] = 144973, + [SMALL_STATE(2821)] = 145020, + [SMALL_STATE(2822)] = 145067, + [SMALL_STATE(2823)] = 145114, + [SMALL_STATE(2824)] = 145161, + [SMALL_STATE(2825)] = 145214, + [SMALL_STATE(2826)] = 145261, + [SMALL_STATE(2827)] = 145308, + [SMALL_STATE(2828)] = 145361, + [SMALL_STATE(2829)] = 145412, + [SMALL_STATE(2830)] = 145459, + [SMALL_STATE(2831)] = 145506, + [SMALL_STATE(2832)] = 145553, + [SMALL_STATE(2833)] = 145606, + [SMALL_STATE(2834)] = 145655, + [SMALL_STATE(2835)] = 145702, + [SMALL_STATE(2836)] = 145749, + [SMALL_STATE(2837)] = 145796, + [SMALL_STATE(2838)] = 145843, + [SMALL_STATE(2839)] = 145890, + [SMALL_STATE(2840)] = 145937, + [SMALL_STATE(2841)] = 145984, + [SMALL_STATE(2842)] = 146031, + [SMALL_STATE(2843)] = 146078, + [SMALL_STATE(2844)] = 146125, + [SMALL_STATE(2845)] = 146172, + [SMALL_STATE(2846)] = 146221, + [SMALL_STATE(2847)] = 146274, + [SMALL_STATE(2848)] = 146321, + [SMALL_STATE(2849)] = 146368, + [SMALL_STATE(2850)] = 146415, + [SMALL_STATE(2851)] = 146462, + [SMALL_STATE(2852)] = 146509, + [SMALL_STATE(2853)] = 146560, + [SMALL_STATE(2854)] = 146607, + [SMALL_STATE(2855)] = 146658, + [SMALL_STATE(2856)] = 146707, + [SMALL_STATE(2857)] = 146754, + [SMALL_STATE(2858)] = 146805, + [SMALL_STATE(2859)] = 146858, + [SMALL_STATE(2860)] = 146905, + [SMALL_STATE(2861)] = 146956, + [SMALL_STATE(2862)] = 147003, + [SMALL_STATE(2863)] = 147050, + [SMALL_STATE(2864)] = 147097, + [SMALL_STATE(2865)] = 147146, + [SMALL_STATE(2866)] = 147197, + [SMALL_STATE(2867)] = 147244, + [SMALL_STATE(2868)] = 147291, + [SMALL_STATE(2869)] = 147338, + [SMALL_STATE(2870)] = 147385, + [SMALL_STATE(2871)] = 147436, + [SMALL_STATE(2872)] = 147483, + [SMALL_STATE(2873)] = 147530, + [SMALL_STATE(2874)] = 147577, + [SMALL_STATE(2875)] = 147630, + [SMALL_STATE(2876)] = 147683, + [SMALL_STATE(2877)] = 147736, + [SMALL_STATE(2878)] = 147787, + [SMALL_STATE(2879)] = 147834, + [SMALL_STATE(2880)] = 147881, + [SMALL_STATE(2881)] = 147930, + [SMALL_STATE(2882)] = 147979, + [SMALL_STATE(2883)] = 148026, + [SMALL_STATE(2884)] = 148073, + [SMALL_STATE(2885)] = 148120, + [SMALL_STATE(2886)] = 148167, + [SMALL_STATE(2887)] = 148214, + [SMALL_STATE(2888)] = 148261, + [SMALL_STATE(2889)] = 148308, + [SMALL_STATE(2890)] = 148359, + [SMALL_STATE(2891)] = 148406, + [SMALL_STATE(2892)] = 148453, + [SMALL_STATE(2893)] = 148500, + [SMALL_STATE(2894)] = 148547, + [SMALL_STATE(2895)] = 148594, + [SMALL_STATE(2896)] = 148645, + [SMALL_STATE(2897)] = 148692, + [SMALL_STATE(2898)] = 148739, + [SMALL_STATE(2899)] = 148790, + [SMALL_STATE(2900)] = 148841, + [SMALL_STATE(2901)] = 148888, + [SMALL_STATE(2902)] = 148935, + [SMALL_STATE(2903)] = 148982, + [SMALL_STATE(2904)] = 149029, + [SMALL_STATE(2905)] = 149076, + [SMALL_STATE(2906)] = 149123, + [SMALL_STATE(2907)] = 149172, + [SMALL_STATE(2908)] = 149219, + [SMALL_STATE(2909)] = 149266, + [SMALL_STATE(2910)] = 149313, + [SMALL_STATE(2911)] = 149360, + [SMALL_STATE(2912)] = 149407, + [SMALL_STATE(2913)] = 149454, + [SMALL_STATE(2914)] = 149505, + [SMALL_STATE(2915)] = 149587, + [SMALL_STATE(2916)] = 149663, + [SMALL_STATE(2917)] = 149713, + [SMALL_STATE(2918)] = 149759, + [SMALL_STATE(2919)] = 149805, + [SMALL_STATE(2920)] = 149851, + [SMALL_STATE(2921)] = 149933, + [SMALL_STATE(2922)] = 149983, + [SMALL_STATE(2923)] = 150041, + [SMALL_STATE(2924)] = 150097, + [SMALL_STATE(2925)] = 150179, + [SMALL_STATE(2926)] = 150227, + [SMALL_STATE(2927)] = 150277, + [SMALL_STATE(2928)] = 150323, + [SMALL_STATE(2929)] = 150379, + [SMALL_STATE(2930)] = 150425, + [SMALL_STATE(2931)] = 150507, + [SMALL_STATE(2932)] = 150577, + [SMALL_STATE(2933)] = 150627, + [SMALL_STATE(2934)] = 150673, + [SMALL_STATE(2935)] = 150719, + [SMALL_STATE(2936)] = 150765, + [SMALL_STATE(2937)] = 150847, + [SMALL_STATE(2938)] = 150893, + [SMALL_STATE(2939)] = 150939, + [SMALL_STATE(2940)] = 150985, + [SMALL_STATE(2941)] = 151067, + [SMALL_STATE(2942)] = 151117, + [SMALL_STATE(2943)] = 151199, + [SMALL_STATE(2944)] = 151281, + [SMALL_STATE(2945)] = 151363, + [SMALL_STATE(2946)] = 151409, + [SMALL_STATE(2947)] = 151491, + [SMALL_STATE(2948)] = 151537, + [SMALL_STATE(2949)] = 151619, + [SMALL_STATE(2950)] = 151701, + [SMALL_STATE(2951)] = 151783, + [SMALL_STATE(2952)] = 151865, + [SMALL_STATE(2953)] = 151947, + [SMALL_STATE(2954)] = 152029, + [SMALL_STATE(2955)] = 152111, + [SMALL_STATE(2956)] = 152193, + [SMALL_STATE(2957)] = 152275, + [SMALL_STATE(2958)] = 152357, + [SMALL_STATE(2959)] = 152439, + [SMALL_STATE(2960)] = 152521, + [SMALL_STATE(2961)] = 152603, + [SMALL_STATE(2962)] = 152685, + [SMALL_STATE(2963)] = 152731, + [SMALL_STATE(2964)] = 152813, + [SMALL_STATE(2965)] = 152895, + [SMALL_STATE(2966)] = 152977, + [SMALL_STATE(2967)] = 153059, + [SMALL_STATE(2968)] = 153127, + [SMALL_STATE(2969)] = 153209, + [SMALL_STATE(2970)] = 153291, + [SMALL_STATE(2971)] = 153337, + [SMALL_STATE(2972)] = 153419, + [SMALL_STATE(2973)] = 153485, + [SMALL_STATE(2974)] = 153567, + [SMALL_STATE(2975)] = 153613, + [SMALL_STATE(2976)] = 153695, + [SMALL_STATE(2977)] = 153777, + [SMALL_STATE(2978)] = 153859, + [SMALL_STATE(2979)] = 153941, + [SMALL_STATE(2980)] = 153991, + [SMALL_STATE(2981)] = 154073, + [SMALL_STATE(2982)] = 154155, + [SMALL_STATE(2983)] = 154201, + [SMALL_STATE(2984)] = 154283, + [SMALL_STATE(2985)] = 154329, + [SMALL_STATE(2986)] = 154411, + [SMALL_STATE(2987)] = 154457, + [SMALL_STATE(2988)] = 154539, + [SMALL_STATE(2989)] = 154621, + [SMALL_STATE(2990)] = 154667, + [SMALL_STATE(2991)] = 154749, + [SMALL_STATE(2992)] = 154795, + [SMALL_STATE(2993)] = 154877, + [SMALL_STATE(2994)] = 154959, + [SMALL_STATE(2995)] = 155041, + [SMALL_STATE(2996)] = 155087, + [SMALL_STATE(2997)] = 155169, + [SMALL_STATE(2998)] = 155251, + [SMALL_STATE(2999)] = 155315, + [SMALL_STATE(3000)] = 155397, + [SMALL_STATE(3001)] = 155479, + [SMALL_STATE(3002)] = 155561, + [SMALL_STATE(3003)] = 155643, + [SMALL_STATE(3004)] = 155725, + [SMALL_STATE(3005)] = 155807, + [SMALL_STATE(3006)] = 155889, + [SMALL_STATE(3007)] = 155971, + [SMALL_STATE(3008)] = 156053, + [SMALL_STATE(3009)] = 156135, + [SMALL_STATE(3010)] = 156217, + [SMALL_STATE(3011)] = 156299, + [SMALL_STATE(3012)] = 156381, + [SMALL_STATE(3013)] = 156463, + [SMALL_STATE(3014)] = 156545, + [SMALL_STATE(3015)] = 156627, + [SMALL_STATE(3016)] = 156709, + [SMALL_STATE(3017)] = 156755, + [SMALL_STATE(3018)] = 156837, + [SMALL_STATE(3019)] = 156919, + [SMALL_STATE(3020)] = 156967, + [SMALL_STATE(3021)] = 157049, + [SMALL_STATE(3022)] = 157095, + [SMALL_STATE(3023)] = 157177, + [SMALL_STATE(3024)] = 157223, + [SMALL_STATE(3025)] = 157269, + [SMALL_STATE(3026)] = 157315, + [SMALL_STATE(3027)] = 157377, + [SMALL_STATE(3028)] = 157437, + [SMALL_STATE(3029)] = 157493, + [SMALL_STATE(3030)] = 157547, + [SMALL_STATE(3031)] = 157599, + [SMALL_STATE(3032)] = 157649, + [SMALL_STATE(3033)] = 157697, + [SMALL_STATE(3034)] = 157743, + [SMALL_STATE(3035)] = 157789, + [SMALL_STATE(3036)] = 157839, + [SMALL_STATE(3037)] = 157889, + [SMALL_STATE(3038)] = 157961, + [SMALL_STATE(3039)] = 158007, + [SMALL_STATE(3040)] = 158053, + [SMALL_STATE(3041)] = 158099, + [SMALL_STATE(3042)] = 158145, + [SMALL_STATE(3043)] = 158195, + [SMALL_STATE(3044)] = 158241, + [SMALL_STATE(3045)] = 158287, + [SMALL_STATE(3046)] = 158333, + [SMALL_STATE(3047)] = 158379, + [SMALL_STATE(3048)] = 158425, + [SMALL_STATE(3049)] = 158471, + [SMALL_STATE(3050)] = 158527, + [SMALL_STATE(3051)] = 158605, + [SMALL_STATE(3052)] = 158677, + [SMALL_STATE(3053)] = 158747, + [SMALL_STATE(3054)] = 158815, + [SMALL_STATE(3055)] = 158881, + [SMALL_STATE(3056)] = 158927, + [SMALL_STATE(3057)] = 158991, + [SMALL_STATE(3058)] = 159053, + [SMALL_STATE(3059)] = 159099, + [SMALL_STATE(3060)] = 159157, + [SMALL_STATE(3061)] = 159211, + [SMALL_STATE(3062)] = 159263, + [SMALL_STATE(3063)] = 159313, + [SMALL_STATE(3064)] = 159363, + [SMALL_STATE(3065)] = 159409, + [SMALL_STATE(3066)] = 159459, + [SMALL_STATE(3067)] = 159505, + [SMALL_STATE(3068)] = 159555, + [SMALL_STATE(3069)] = 159605, + [SMALL_STATE(3070)] = 159651, + [SMALL_STATE(3071)] = 159697, + [SMALL_STATE(3072)] = 159743, + [SMALL_STATE(3073)] = 159789, + [SMALL_STATE(3074)] = 159835, + [SMALL_STATE(3075)] = 159881, + [SMALL_STATE(3076)] = 159927, + [SMALL_STATE(3077)] = 159981, + [SMALL_STATE(3078)] = 160035, + [SMALL_STATE(3079)] = 160081, + [SMALL_STATE(3080)] = 160127, + [SMALL_STATE(3081)] = 160173, + [SMALL_STATE(3082)] = 160221, + [SMALL_STATE(3083)] = 160271, + [SMALL_STATE(3084)] = 160327, + [SMALL_STATE(3085)] = 160383, + [SMALL_STATE(3086)] = 160429, + [SMALL_STATE(3087)] = 160485, + [SMALL_STATE(3088)] = 160533, + [SMALL_STATE(3089)] = 160589, + [SMALL_STATE(3090)] = 160635, + [SMALL_STATE(3091)] = 160681, + [SMALL_STATE(3092)] = 160731, + [SMALL_STATE(3093)] = 160781, + [SMALL_STATE(3094)] = 160827, + [SMALL_STATE(3095)] = 160873, + [SMALL_STATE(3096)] = 160919, + [SMALL_STATE(3097)] = 160965, + [SMALL_STATE(3098)] = 161011, + [SMALL_STATE(3099)] = 161057, + [SMALL_STATE(3100)] = 161103, + [SMALL_STATE(3101)] = 161149, + [SMALL_STATE(3102)] = 161195, + [SMALL_STATE(3103)] = 161245, + [SMALL_STATE(3104)] = 161291, + [SMALL_STATE(3105)] = 161365, + [SMALL_STATE(3106)] = 161411, + [SMALL_STATE(3107)] = 161457, + [SMALL_STATE(3108)] = 161507, + [SMALL_STATE(3109)] = 161553, + [SMALL_STATE(3110)] = 161599, + [SMALL_STATE(3111)] = 161681, + [SMALL_STATE(3112)] = 161727, + [SMALL_STATE(3113)] = 161773, + [SMALL_STATE(3114)] = 161823, + [SMALL_STATE(3115)] = 161869, + [SMALL_STATE(3116)] = 161915, + [SMALL_STATE(3117)] = 161961, + [SMALL_STATE(3118)] = 162007, + [SMALL_STATE(3119)] = 162053, + [SMALL_STATE(3120)] = 162099, + [SMALL_STATE(3121)] = 162151, + [SMALL_STATE(3122)] = 162197, + [SMALL_STATE(3123)] = 162279, + [SMALL_STATE(3124)] = 162331, + [SMALL_STATE(3125)] = 162381, + [SMALL_STATE(3126)] = 162427, + [SMALL_STATE(3127)] = 162477, + [SMALL_STATE(3128)] = 162523, + [SMALL_STATE(3129)] = 162569, + [SMALL_STATE(3130)] = 162615, + [SMALL_STATE(3131)] = 162661, + [SMALL_STATE(3132)] = 162707, + [SMALL_STATE(3133)] = 162753, + [SMALL_STATE(3134)] = 162799, + [SMALL_STATE(3135)] = 162845, + [SMALL_STATE(3136)] = 162891, + [SMALL_STATE(3137)] = 162937, + [SMALL_STATE(3138)] = 162983, + [SMALL_STATE(3139)] = 163029, + [SMALL_STATE(3140)] = 163075, + [SMALL_STATE(3141)] = 163121, + [SMALL_STATE(3142)] = 163167, + [SMALL_STATE(3143)] = 163213, + [SMALL_STATE(3144)] = 163259, + [SMALL_STATE(3145)] = 163305, + [SMALL_STATE(3146)] = 163351, + [SMALL_STATE(3147)] = 163401, + [SMALL_STATE(3148)] = 163447, + [SMALL_STATE(3149)] = 163529, + [SMALL_STATE(3150)] = 163603, + [SMALL_STATE(3151)] = 163653, + [SMALL_STATE(3152)] = 163729, + [SMALL_STATE(3153)] = 163782, + [SMALL_STATE(3154)] = 163847, + [SMALL_STATE(3155)] = 163926, + [SMALL_STATE(3156)] = 163971, + [SMALL_STATE(3157)] = 164018, + [SMALL_STATE(3158)] = 164065, + [SMALL_STATE(3159)] = 164110, + [SMALL_STATE(3160)] = 164173, + [SMALL_STATE(3161)] = 164218, + [SMALL_STATE(3162)] = 164297, + [SMALL_STATE(3163)] = 164342, + [SMALL_STATE(3164)] = 164397, + [SMALL_STATE(3165)] = 164444, + [SMALL_STATE(3166)] = 164499, + [SMALL_STATE(3167)] = 164578, + [SMALL_STATE(3168)] = 164623, + [SMALL_STATE(3169)] = 164702, + [SMALL_STATE(3170)] = 164763, + [SMALL_STATE(3171)] = 164836, + [SMALL_STATE(3172)] = 164915, + [SMALL_STATE(3173)] = 164960, + [SMALL_STATE(3174)] = 165017, + [SMALL_STATE(3175)] = 165062, + [SMALL_STATE(3176)] = 165107, + [SMALL_STATE(3177)] = 165162, + [SMALL_STATE(3178)] = 165211, + [SMALL_STATE(3179)] = 165264, + [SMALL_STATE(3180)] = 165309, + [SMALL_STATE(3181)] = 165358, + [SMALL_STATE(3182)] = 165415, + [SMALL_STATE(3183)] = 165486, + [SMALL_STATE(3184)] = 165531, + [SMALL_STATE(3185)] = 165610, + [SMALL_STATE(3186)] = 165665, + [SMALL_STATE(3187)] = 165716, + [SMALL_STATE(3188)] = 165791, + [SMALL_STATE(3189)] = 165836, + [SMALL_STATE(3190)] = 165885, + [SMALL_STATE(3191)] = 165930, + [SMALL_STATE(3192)] = 165975, + [SMALL_STATE(3193)] = 166054, + [SMALL_STATE(3194)] = 166103, + [SMALL_STATE(3195)] = 166148, + [SMALL_STATE(3196)] = 166227, + [SMALL_STATE(3197)] = 166304, + [SMALL_STATE(3198)] = 166375, + [SMALL_STATE(3199)] = 166424, + [SMALL_STATE(3200)] = 166477, + [SMALL_STATE(3201)] = 166554, + [SMALL_STATE(3202)] = 166599, + [SMALL_STATE(3203)] = 166672, + [SMALL_STATE(3204)] = 166741, + [SMALL_STATE(3205)] = 166786, + [SMALL_STATE(3206)] = 166859, + [SMALL_STATE(3207)] = 166912, + [SMALL_STATE(3208)] = 166991, + [SMALL_STATE(3209)] = 167036, + [SMALL_STATE(3210)] = 167091, + [SMALL_STATE(3211)] = 167158, + [SMALL_STATE(3212)] = 167223, + [SMALL_STATE(3213)] = 167278, + [SMALL_STATE(3214)] = 167333, + [SMALL_STATE(3215)] = 167378, + [SMALL_STATE(3216)] = 167441, + [SMALL_STATE(3217)] = 167486, + [SMALL_STATE(3218)] = 167543, + [SMALL_STATE(3219)] = 167622, + [SMALL_STATE(3220)] = 167697, + [SMALL_STATE(3221)] = 167776, + [SMALL_STATE(3222)] = 167821, + [SMALL_STATE(3223)] = 167882, + [SMALL_STATE(3224)] = 167927, + [SMALL_STATE(3225)] = 167982, + [SMALL_STATE(3226)] = 168045, + [SMALL_STATE(3227)] = 168120, + [SMALL_STATE(3228)] = 168197, + [SMALL_STATE(3229)] = 168268, + [SMALL_STATE(3230)] = 168347, + [SMALL_STATE(3231)] = 168416, + [SMALL_STATE(3232)] = 168483, + [SMALL_STATE(3233)] = 168548, + [SMALL_STATE(3234)] = 168611, + [SMALL_STATE(3235)] = 168672, + [SMALL_STATE(3236)] = 168721, + [SMALL_STATE(3237)] = 168778, + [SMALL_STATE(3238)] = 168831, + [SMALL_STATE(3239)] = 168882, + [SMALL_STATE(3240)] = 168931, + [SMALL_STATE(3241)] = 168980, + [SMALL_STATE(3242)] = 169037, + [SMALL_STATE(3243)] = 169082, + [SMALL_STATE(3244)] = 169153, + [SMALL_STATE(3245)] = 169232, + [SMALL_STATE(3246)] = 169277, + [SMALL_STATE(3247)] = 169334, + [SMALL_STATE(3248)] = 169379, + [SMALL_STATE(3249)] = 169432, + [SMALL_STATE(3250)] = 169483, + [SMALL_STATE(3251)] = 169528, + [SMALL_STATE(3252)] = 169573, + [SMALL_STATE(3253)] = 169628, + [SMALL_STATE(3254)] = 169697, + [SMALL_STATE(3255)] = 169746, + [SMALL_STATE(3256)] = 169795, + [SMALL_STATE(3257)] = 169846, + [SMALL_STATE(3258)] = 169893, + [SMALL_STATE(3259)] = 169940, + [SMALL_STATE(3260)] = 169995, + [SMALL_STATE(3261)] = 170040, + [SMALL_STATE(3262)] = 170115, + [SMALL_STATE(3263)] = 170194, + [SMALL_STATE(3264)] = 170271, + [SMALL_STATE(3265)] = 170350, + [SMALL_STATE(3266)] = 170429, + [SMALL_STATE(3267)] = 170484, + [SMALL_STATE(3268)] = 170529, + [SMALL_STATE(3269)] = 170608, + [SMALL_STATE(3270)] = 170657, + [SMALL_STATE(3271)] = 170712, + [SMALL_STATE(3272)] = 170763, + [SMALL_STATE(3273)] = 170820, + [SMALL_STATE(3274)] = 170899, + [SMALL_STATE(3275)] = 170976, + [SMALL_STATE(3276)] = 171031, + [SMALL_STATE(3277)] = 171076, + [SMALL_STATE(3278)] = 171123, + [SMALL_STATE(3279)] = 171170, + [SMALL_STATE(3280)] = 171225, + [SMALL_STATE(3281)] = 171270, + [SMALL_STATE(3282)] = 171331, + [SMALL_STATE(3283)] = 171380, + [SMALL_STATE(3284)] = 171427, + [SMALL_STATE(3285)] = 171476, + [SMALL_STATE(3286)] = 171531, + [SMALL_STATE(3287)] = 171586, + [SMALL_STATE(3288)] = 171631, + [SMALL_STATE(3289)] = 171700, + [SMALL_STATE(3290)] = 171779, + [SMALL_STATE(3291)] = 171858, + [SMALL_STATE(3292)] = 171929, + [SMALL_STATE(3293)] = 172008, + [SMALL_STATE(3294)] = 172075, + [SMALL_STATE(3295)] = 172140, + [SMALL_STATE(3296)] = 172187, + [SMALL_STATE(3297)] = 172266, + [SMALL_STATE(3298)] = 172311, + [SMALL_STATE(3299)] = 172390, + [SMALL_STATE(3300)] = 172469, + [SMALL_STATE(3301)] = 172548, + [SMALL_STATE(3302)] = 172593, + [SMALL_STATE(3303)] = 172656, + [SMALL_STATE(3304)] = 172705, + [SMALL_STATE(3305)] = 172750, + [SMALL_STATE(3306)] = 172829, + [SMALL_STATE(3307)] = 172874, + [SMALL_STATE(3308)] = 172919, + [SMALL_STATE(3309)] = 172998, + [SMALL_STATE(3310)] = 173077, + [SMALL_STATE(3311)] = 173126, + [SMALL_STATE(3312)] = 173173, + [SMALL_STATE(3313)] = 173218, + [SMALL_STATE(3314)] = 173297, + [SMALL_STATE(3315)] = 173376, + [SMALL_STATE(3316)] = 173455, + [SMALL_STATE(3317)] = 173500, + [SMALL_STATE(3318)] = 173545, + [SMALL_STATE(3319)] = 173614, + [SMALL_STATE(3320)] = 173659, + [SMALL_STATE(3321)] = 173704, + [SMALL_STATE(3322)] = 173771, + [SMALL_STATE(3323)] = 173850, + [SMALL_STATE(3324)] = 173897, + [SMALL_STATE(3325)] = 173970, + [SMALL_STATE(3326)] = 174015, + [SMALL_STATE(3327)] = 174060, + [SMALL_STATE(3328)] = 174127, + [SMALL_STATE(3329)] = 174188, + [SMALL_STATE(3330)] = 174267, + [SMALL_STATE(3331)] = 174332, + [SMALL_STATE(3332)] = 174411, + [SMALL_STATE(3333)] = 174490, + [SMALL_STATE(3334)] = 174569, + [SMALL_STATE(3335)] = 174648, + [SMALL_STATE(3336)] = 174707, + [SMALL_STATE(3337)] = 174752, + [SMALL_STATE(3338)] = 174809, + [SMALL_STATE(3339)] = 174864, + [SMALL_STATE(3340)] = 174919, + [SMALL_STATE(3341)] = 174976, + [SMALL_STATE(3342)] = 175031, + [SMALL_STATE(3343)] = 175084, + [SMALL_STATE(3344)] = 175131, + [SMALL_STATE(3345)] = 175210, + [SMALL_STATE(3346)] = 175259, + [SMALL_STATE(3347)] = 175304, + [SMALL_STATE(3348)] = 175351, + [SMALL_STATE(3349)] = 175396, + [SMALL_STATE(3350)] = 175443, + [SMALL_STATE(3351)] = 175522, + [SMALL_STATE(3352)] = 175567, + [SMALL_STATE(3353)] = 175646, + [SMALL_STATE(3354)] = 175691, + [SMALL_STATE(3355)] = 175736, + [SMALL_STATE(3356)] = 175781, + [SMALL_STATE(3357)] = 175826, + [SMALL_STATE(3358)] = 175905, + [SMALL_STATE(3359)] = 175984, + [SMALL_STATE(3360)] = 176029, + [SMALL_STATE(3361)] = 176074, + [SMALL_STATE(3362)] = 176119, + [SMALL_STATE(3363)] = 176198, + [SMALL_STATE(3364)] = 176277, + [SMALL_STATE(3365)] = 176326, + [SMALL_STATE(3366)] = 176371, + [SMALL_STATE(3367)] = 176416, + [SMALL_STATE(3368)] = 176460, + [SMALL_STATE(3369)] = 176536, + [SMALL_STATE(3370)] = 176580, + [SMALL_STATE(3371)] = 176624, + [SMALL_STATE(3372)] = 176712, + [SMALL_STATE(3373)] = 176788, + [SMALL_STATE(3374)] = 176834, + [SMALL_STATE(3375)] = 176878, + [SMALL_STATE(3376)] = 176944, + [SMALL_STATE(3377)] = 176988, + [SMALL_STATE(3378)] = 177050, + [SMALL_STATE(3379)] = 177094, + [SMALL_STATE(3380)] = 177166, + [SMALL_STATE(3381)] = 177254, + [SMALL_STATE(3382)] = 177330, + [SMALL_STATE(3383)] = 177374, + [SMALL_STATE(3384)] = 177444, + [SMALL_STATE(3385)] = 177488, + [SMALL_STATE(3386)] = 177564, + [SMALL_STATE(3387)] = 177638, + [SMALL_STATE(3388)] = 177682, + [SMALL_STATE(3389)] = 177750, + [SMALL_STATE(3390)] = 177816, + [SMALL_STATE(3391)] = 177880, + [SMALL_STATE(3392)] = 177942, + [SMALL_STATE(3393)] = 178002, + [SMALL_STATE(3394)] = 178060, + [SMALL_STATE(3395)] = 178104, + [SMALL_STATE(3396)] = 178158, + [SMALL_STATE(3397)] = 178210, + [SMALL_STATE(3398)] = 178254, + [SMALL_STATE(3399)] = 178326, + [SMALL_STATE(3400)] = 178402, + [SMALL_STATE(3401)] = 178490, + [SMALL_STATE(3402)] = 178540, + [SMALL_STATE(3403)] = 178616, + [SMALL_STATE(3404)] = 178664, + [SMALL_STATE(3405)] = 178710, + [SMALL_STATE(3406)] = 178786, + [SMALL_STATE(3407)] = 178830, + [SMALL_STATE(3408)] = 178918, + [SMALL_STATE(3409)] = 178994, + [SMALL_STATE(3410)] = 179038, + [SMALL_STATE(3411)] = 179088, + [SMALL_STATE(3412)] = 179138, + [SMALL_STATE(3413)] = 179214, + [SMALL_STATE(3414)] = 179258, + [SMALL_STATE(3415)] = 179322, + [SMALL_STATE(3416)] = 179398, + [SMALL_STATE(3417)] = 179486, + [SMALL_STATE(3418)] = 179562, + [SMALL_STATE(3419)] = 179650, + [SMALL_STATE(3420)] = 179726, + [SMALL_STATE(3421)] = 179770, + [SMALL_STATE(3422)] = 179814, + [SMALL_STATE(3423)] = 179902, + [SMALL_STATE(3424)] = 179946, + [SMALL_STATE(3425)] = 179990, + [SMALL_STATE(3426)] = 180066, + [SMALL_STATE(3427)] = 180140, + [SMALL_STATE(3428)] = 180184, + [SMALL_STATE(3429)] = 180260, + [SMALL_STATE(3430)] = 180304, + [SMALL_STATE(3431)] = 180348, + [SMALL_STATE(3432)] = 180392, + [SMALL_STATE(3433)] = 180468, + [SMALL_STATE(3434)] = 180512, + [SMALL_STATE(3435)] = 180556, + [SMALL_STATE(3436)] = 180600, + [SMALL_STATE(3437)] = 180644, + [SMALL_STATE(3438)] = 180688, + [SMALL_STATE(3439)] = 180756, + [SMALL_STATE(3440)] = 180822, + [SMALL_STATE(3441)] = 180886, + [SMALL_STATE(3442)] = 180950, + [SMALL_STATE(3443)] = 181026, + [SMALL_STATE(3444)] = 181088, + [SMALL_STATE(3445)] = 181148, + [SMALL_STATE(3446)] = 181206, + [SMALL_STATE(3447)] = 181260, + [SMALL_STATE(3448)] = 181314, + [SMALL_STATE(3449)] = 181366, + [SMALL_STATE(3450)] = 181410, + [SMALL_STATE(3451)] = 181460, + [SMALL_STATE(3452)] = 181508, + [SMALL_STATE(3453)] = 181556, + [SMALL_STATE(3454)] = 181604, + [SMALL_STATE(3455)] = 181648, + [SMALL_STATE(3456)] = 181736, + [SMALL_STATE(3457)] = 181812, + [SMALL_STATE(3458)] = 181856, + [SMALL_STATE(3459)] = 181910, + [SMALL_STATE(3460)] = 181954, + [SMALL_STATE(3461)] = 182008, + [SMALL_STATE(3462)] = 182052, + [SMALL_STATE(3463)] = 182122, + [SMALL_STATE(3464)] = 182168, + [SMALL_STATE(3465)] = 182240, + [SMALL_STATE(3466)] = 182302, + [SMALL_STATE(3467)] = 182378, + [SMALL_STATE(3468)] = 182454, + [SMALL_STATE(3469)] = 182498, + [SMALL_STATE(3470)] = 182552, + [SMALL_STATE(3471)] = 182596, + [SMALL_STATE(3472)] = 182672, + [SMALL_STATE(3473)] = 182716, + [SMALL_STATE(3474)] = 182804, + [SMALL_STATE(3475)] = 182880, + [SMALL_STATE(3476)] = 182956, + [SMALL_STATE(3477)] = 183000, + [SMALL_STATE(3478)] = 183076, + [SMALL_STATE(3479)] = 183120, + [SMALL_STATE(3480)] = 183196, + [SMALL_STATE(3481)] = 183272, + [SMALL_STATE(3482)] = 183340, + [SMALL_STATE(3483)] = 183416, + [SMALL_STATE(3484)] = 183492, + [SMALL_STATE(3485)] = 183568, + [SMALL_STATE(3486)] = 183644, + [SMALL_STATE(3487)] = 183720, + [SMALL_STATE(3488)] = 183764, + [SMALL_STATE(3489)] = 183840, + [SMALL_STATE(3490)] = 183894, + [SMALL_STATE(3491)] = 183938, + [SMALL_STATE(3492)] = 184014, + [SMALL_STATE(3493)] = 184058, + [SMALL_STATE(3494)] = 184102, + [SMALL_STATE(3495)] = 184178, + [SMALL_STATE(3496)] = 184222, + [SMALL_STATE(3497)] = 184298, + [SMALL_STATE(3498)] = 184342, + [SMALL_STATE(3499)] = 184392, + [SMALL_STATE(3500)] = 184436, + [SMALL_STATE(3501)] = 184480, + [SMALL_STATE(3502)] = 184556, + [SMALL_STATE(3503)] = 184610, + [SMALL_STATE(3504)] = 184686, + [SMALL_STATE(3505)] = 184774, + [SMALL_STATE(3506)] = 184850, + [SMALL_STATE(3507)] = 184894, + [SMALL_STATE(3508)] = 184938, + [SMALL_STATE(3509)] = 184982, + [SMALL_STATE(3510)] = 185026, + [SMALL_STATE(3511)] = 185102, + [SMALL_STATE(3512)] = 185146, + [SMALL_STATE(3513)] = 185190, + [SMALL_STATE(3514)] = 185250, + [SMALL_STATE(3515)] = 185294, + [SMALL_STATE(3516)] = 185370, + [SMALL_STATE(3517)] = 185414, + [SMALL_STATE(3518)] = 185490, + [SMALL_STATE(3519)] = 185566, + [SMALL_STATE(3520)] = 185642, + [SMALL_STATE(3521)] = 185690, + [SMALL_STATE(3522)] = 185766, + [SMALL_STATE(3523)] = 185810, + [SMALL_STATE(3524)] = 185886, + [SMALL_STATE(3525)] = 185930, + [SMALL_STATE(3526)] = 186006, + [SMALL_STATE(3527)] = 186074, + [SMALL_STATE(3528)] = 186150, + [SMALL_STATE(3529)] = 186216, + [SMALL_STATE(3530)] = 186292, + [SMALL_STATE(3531)] = 186356, + [SMALL_STATE(3532)] = 186432, + [SMALL_STATE(3533)] = 186508, + [SMALL_STATE(3534)] = 186572, + [SMALL_STATE(3535)] = 186618, + [SMALL_STATE(3536)] = 186694, + [SMALL_STATE(3537)] = 186748, + [SMALL_STATE(3538)] = 186824, + [SMALL_STATE(3539)] = 186878, + [SMALL_STATE(3540)] = 186954, + [SMALL_STATE(3541)] = 187016, + [SMALL_STATE(3542)] = 187092, + [SMALL_STATE(3543)] = 187152, + [SMALL_STATE(3544)] = 187228, + [SMALL_STATE(3545)] = 187286, + [SMALL_STATE(3546)] = 187362, + [SMALL_STATE(3547)] = 187406, + [SMALL_STATE(3548)] = 187482, + [SMALL_STATE(3549)] = 187536, + [SMALL_STATE(3550)] = 187594, + [SMALL_STATE(3551)] = 187670, + [SMALL_STATE(3552)] = 187714, + [SMALL_STATE(3553)] = 187758, + [SMALL_STATE(3554)] = 187802, + [SMALL_STATE(3555)] = 187846, + [SMALL_STATE(3556)] = 187890, + [SMALL_STATE(3557)] = 187942, + [SMALL_STATE(3558)] = 188018, + [SMALL_STATE(3559)] = 188068, + [SMALL_STATE(3560)] = 188144, + [SMALL_STATE(3561)] = 188192, + [SMALL_STATE(3562)] = 188236, + [SMALL_STATE(3563)] = 188312, + [SMALL_STATE(3564)] = 188360, + [SMALL_STATE(3565)] = 188414, + [SMALL_STATE(3566)] = 188458, + [SMALL_STATE(3567)] = 188534, + [SMALL_STATE(3568)] = 188610, + [SMALL_STATE(3569)] = 188664, + [SMALL_STATE(3570)] = 188708, + [SMALL_STATE(3571)] = 188784, + [SMALL_STATE(3572)] = 188860, + [SMALL_STATE(3573)] = 188936, + [SMALL_STATE(3574)] = 188980, + [SMALL_STATE(3575)] = 189056, + [SMALL_STATE(3576)] = 189132, + [SMALL_STATE(3577)] = 189176, + [SMALL_STATE(3578)] = 189230, + [SMALL_STATE(3579)] = 189284, + [SMALL_STATE(3580)] = 189328, + [SMALL_STATE(3581)] = 189372, + [SMALL_STATE(3582)] = 189442, + [SMALL_STATE(3583)] = 189486, + [SMALL_STATE(3584)] = 189530, + [SMALL_STATE(3585)] = 189584, + [SMALL_STATE(3586)] = 189634, + [SMALL_STATE(3587)] = 189710, + [SMALL_STATE(3588)] = 189754, + [SMALL_STATE(3589)] = 189830, + [SMALL_STATE(3590)] = 189874, + [SMALL_STATE(3591)] = 189918, + [SMALL_STATE(3592)] = 189970, + [SMALL_STATE(3593)] = 190046, + [SMALL_STATE(3594)] = 190122, + [SMALL_STATE(3595)] = 190172, + [SMALL_STATE(3596)] = 190248, + [SMALL_STATE(3597)] = 190336, + [SMALL_STATE(3598)] = 190390, + [SMALL_STATE(3599)] = 190464, + [SMALL_STATE(3600)] = 190540, + [SMALL_STATE(3601)] = 190610, + [SMALL_STATE(3602)] = 190678, + [SMALL_STATE(3603)] = 190744, + [SMALL_STATE(3604)] = 190808, + [SMALL_STATE(3605)] = 190870, + [SMALL_STATE(3606)] = 190930, + [SMALL_STATE(3607)] = 190986, + [SMALL_STATE(3608)] = 191038, + [SMALL_STATE(3609)] = 191088, + [SMALL_STATE(3610)] = 191136, + [SMALL_STATE(3611)] = 191184, + [SMALL_STATE(3612)] = 191260, + [SMALL_STATE(3613)] = 191304, + [SMALL_STATE(3614)] = 191392, + [SMALL_STATE(3615)] = 191480, + [SMALL_STATE(3616)] = 191556, + [SMALL_STATE(3617)] = 191612, + [SMALL_STATE(3618)] = 191666, + [SMALL_STATE(3619)] = 191720, + [SMALL_STATE(3620)] = 191764, + [SMALL_STATE(3621)] = 191852, + [SMALL_STATE(3622)] = 191940, + [SMALL_STATE(3623)] = 191990, + [SMALL_STATE(3624)] = 192066, + [SMALL_STATE(3625)] = 192110, + [SMALL_STATE(3626)] = 192198, + [SMALL_STATE(3627)] = 192242, + [SMALL_STATE(3628)] = 192312, + [SMALL_STATE(3629)] = 192356, + [SMALL_STATE(3630)] = 192400, + [SMALL_STATE(3631)] = 192444, + [SMALL_STATE(3632)] = 192498, + [SMALL_STATE(3633)] = 192574, + [SMALL_STATE(3634)] = 192620, + [SMALL_STATE(3635)] = 192674, + [SMALL_STATE(3636)] = 192718, + [SMALL_STATE(3637)] = 192762, + [SMALL_STATE(3638)] = 192816, + [SMALL_STATE(3639)] = 192860, + [SMALL_STATE(3640)] = 192936, + [SMALL_STATE(3641)] = 192990, + [SMALL_STATE(3642)] = 193066, + [SMALL_STATE(3643)] = 193114, + [SMALL_STATE(3644)] = 193164, + [SMALL_STATE(3645)] = 193240, + [SMALL_STATE(3646)] = 193316, + [SMALL_STATE(3647)] = 193362, + [SMALL_STATE(3648)] = 193447, + [SMALL_STATE(3649)] = 193490, + [SMALL_STATE(3650)] = 193533, + [SMALL_STATE(3651)] = 193618, + [SMALL_STATE(3652)] = 193703, + [SMALL_STATE(3653)] = 193788, + [SMALL_STATE(3654)] = 193873, + [SMALL_STATE(3655)] = 193916, + [SMALL_STATE(3656)] = 193969, + [SMALL_STATE(3657)] = 194012, + [SMALL_STATE(3658)] = 194097, + [SMALL_STATE(3659)] = 194140, + [SMALL_STATE(3660)] = 194225, + [SMALL_STATE(3661)] = 194310, + [SMALL_STATE(3662)] = 194395, + [SMALL_STATE(3663)] = 194438, + [SMALL_STATE(3664)] = 194491, + [SMALL_STATE(3665)] = 194576, + [SMALL_STATE(3666)] = 194661, + [SMALL_STATE(3667)] = 194704, + [SMALL_STATE(3668)] = 194757, + [SMALL_STATE(3669)] = 194842, + [SMALL_STATE(3670)] = 194895, + [SMALL_STATE(3671)] = 194980, + [SMALL_STATE(3672)] = 195023, + [SMALL_STATE(3673)] = 195066, + [SMALL_STATE(3674)] = 195109, + [SMALL_STATE(3675)] = 195194, + [SMALL_STATE(3676)] = 195279, + [SMALL_STATE(3677)] = 195332, + [SMALL_STATE(3678)] = 195375, + [SMALL_STATE(3679)] = 195418, + [SMALL_STATE(3680)] = 195471, + [SMALL_STATE(3681)] = 195556, + [SMALL_STATE(3682)] = 195641, + [SMALL_STATE(3683)] = 195726, + [SMALL_STATE(3684)] = 195779, + [SMALL_STATE(3685)] = 195864, + [SMALL_STATE(3686)] = 195917, + [SMALL_STATE(3687)] = 196002, + [SMALL_STATE(3688)] = 196045, + [SMALL_STATE(3689)] = 196130, + [SMALL_STATE(3690)] = 196173, + [SMALL_STATE(3691)] = 196226, + [SMALL_STATE(3692)] = 196311, + [SMALL_STATE(3693)] = 196354, + [SMALL_STATE(3694)] = 196439, + [SMALL_STATE(3695)] = 196482, + [SMALL_STATE(3696)] = 196525, + [SMALL_STATE(3697)] = 196578, + [SMALL_STATE(3698)] = 196631, + [SMALL_STATE(3699)] = 196684, + [SMALL_STATE(3700)] = 196737, + [SMALL_STATE(3701)] = 196790, + [SMALL_STATE(3702)] = 196833, + [SMALL_STATE(3703)] = 196886, + [SMALL_STATE(3704)] = 196939, + [SMALL_STATE(3705)] = 196982, + [SMALL_STATE(3706)] = 197025, + [SMALL_STATE(3707)] = 197110, + [SMALL_STATE(3708)] = 197156, + [SMALL_STATE(3709)] = 197202, + [SMALL_STATE(3710)] = 197278, + [SMALL_STATE(3711)] = 197360, + [SMALL_STATE(3712)] = 197406, + [SMALL_STATE(3713)] = 197484, + [SMALL_STATE(3714)] = 197530, + [SMALL_STATE(3715)] = 197576, + [SMALL_STATE(3716)] = 197654, + [SMALL_STATE(3717)] = 197740, + [SMALL_STATE(3718)] = 197786, + [SMALL_STATE(3719)] = 197832, + [SMALL_STATE(3720)] = 197878, + [SMALL_STATE(3721)] = 197956, + [SMALL_STATE(3722)] = 198004, + [SMALL_STATE(3723)] = 198050, + [SMALL_STATE(3724)] = 198136, + [SMALL_STATE(3725)] = 198182, + [SMALL_STATE(3726)] = 198228, + [SMALL_STATE(3727)] = 198274, + [SMALL_STATE(3728)] = 198320, + [SMALL_STATE(3729)] = 198406, + [SMALL_STATE(3730)] = 198484, + [SMALL_STATE(3731)] = 198532, + [SMALL_STATE(3732)] = 198578, + [SMALL_STATE(3733)] = 198656, + [SMALL_STATE(3734)] = 198737, + [SMALL_STATE(3735)] = 198810, + [SMALL_STATE(3736)] = 198883, + [SMALL_STATE(3737)] = 198924, + [SMALL_STATE(3738)] = 198975, + [SMALL_STATE(3739)] = 199016, + [SMALL_STATE(3740)] = 199097, + [SMALL_STATE(3741)] = 199178, + [SMALL_STATE(3742)] = 199259, + [SMALL_STATE(3743)] = 199300, + [SMALL_STATE(3744)] = 199381, + [SMALL_STATE(3745)] = 199462, + [SMALL_STATE(3746)] = 199503, + [SMALL_STATE(3747)] = 199544, + [SMALL_STATE(3748)] = 199625, + [SMALL_STATE(3749)] = 199706, + [SMALL_STATE(3750)] = 199747, + [SMALL_STATE(3751)] = 199788, + [SMALL_STATE(3752)] = 199829, + [SMALL_STATE(3753)] = 199910, + [SMALL_STATE(3754)] = 199951, + [SMALL_STATE(3755)] = 200032, + [SMALL_STATE(3756)] = 200113, + [SMALL_STATE(3757)] = 200154, + [SMALL_STATE(3758)] = 200195, + [SMALL_STATE(3759)] = 200246, + [SMALL_STATE(3760)] = 200327, + [SMALL_STATE(3761)] = 200400, + [SMALL_STATE(3762)] = 200481, + [SMALL_STATE(3763)] = 200522, + [SMALL_STATE(3764)] = 200563, + [SMALL_STATE(3765)] = 200644, + [SMALL_STATE(3766)] = 200685, + [SMALL_STATE(3767)] = 200766, + [SMALL_STATE(3768)] = 200807, + [SMALL_STATE(3769)] = 200888, + [SMALL_STATE(3770)] = 200969, + [SMALL_STATE(3771)] = 201010, + [SMALL_STATE(3772)] = 201091, + [SMALL_STATE(3773)] = 201132, + [SMALL_STATE(3774)] = 201213, + [SMALL_STATE(3775)] = 201294, + [SMALL_STATE(3776)] = 201335, + [SMALL_STATE(3777)] = 201416, + [SMALL_STATE(3778)] = 201489, + [SMALL_STATE(3779)] = 201530, + [SMALL_STATE(3780)] = 201611, + [SMALL_STATE(3781)] = 201692, + [SMALL_STATE(3782)] = 201773, + [SMALL_STATE(3783)] = 201814, + [SMALL_STATE(3784)] = 201895, + [SMALL_STATE(3785)] = 201976, + [SMALL_STATE(3786)] = 202056, + [SMALL_STATE(3787)] = 202100, + [SMALL_STATE(3788)] = 202144, + [SMALL_STATE(3789)] = 202224, + [SMALL_STATE(3790)] = 202304, + [SMALL_STATE(3791)] = 202354, + [SMALL_STATE(3792)] = 202434, + [SMALL_STATE(3793)] = 202514, + [SMALL_STATE(3794)] = 202564, + [SMALL_STATE(3795)] = 202644, + [SMALL_STATE(3796)] = 202688, + [SMALL_STATE(3797)] = 202732, + [SMALL_STATE(3798)] = 202812, + [SMALL_STATE(3799)] = 202856, + [SMALL_STATE(3800)] = 202936, + [SMALL_STATE(3801)] = 202986, + [SMALL_STATE(3802)] = 203066, + [SMALL_STATE(3803)] = 203146, + [SMALL_STATE(3804)] = 203226, + [SMALL_STATE(3805)] = 203306, + [SMALL_STATE(3806)] = 203386, + [SMALL_STATE(3807)] = 203466, + [SMALL_STATE(3808)] = 203510, + [SMALL_STATE(3809)] = 203590, + [SMALL_STATE(3810)] = 203670, + [SMALL_STATE(3811)] = 203750, + [SMALL_STATE(3812)] = 203830, + [SMALL_STATE(3813)] = 203910, + [SMALL_STATE(3814)] = 203960, + [SMALL_STATE(3815)] = 204004, + [SMALL_STATE(3816)] = 204081, + [SMALL_STATE(3817)] = 204158, + [SMALL_STATE(3818)] = 204235, + [SMALL_STATE(3819)] = 204312, + [SMALL_STATE(3820)] = 204389, + [SMALL_STATE(3821)] = 204466, + [SMALL_STATE(3822)] = 204543, + [SMALL_STATE(3823)] = 204620, + [SMALL_STATE(3824)] = 204697, + [SMALL_STATE(3825)] = 204774, + [SMALL_STATE(3826)] = 204851, + [SMALL_STATE(3827)] = 204928, + [SMALL_STATE(3828)] = 205003, + [SMALL_STATE(3829)] = 205080, + [SMALL_STATE(3830)] = 205157, + [SMALL_STATE(3831)] = 205234, + [SMALL_STATE(3832)] = 205311, + [SMALL_STATE(3833)] = 205388, + [SMALL_STATE(3834)] = 205463, + [SMALL_STATE(3835)] = 205540, + [SMALL_STATE(3836)] = 205617, + [SMALL_STATE(3837)] = 205694, + [SMALL_STATE(3838)] = 205771, + [SMALL_STATE(3839)] = 205842, + [SMALL_STATE(3840)] = 205919, + [SMALL_STATE(3841)] = 205996, + [SMALL_STATE(3842)] = 206073, + [SMALL_STATE(3843)] = 206150, + [SMALL_STATE(3844)] = 206227, + [SMALL_STATE(3845)] = 206304, + [SMALL_STATE(3846)] = 206381, + [SMALL_STATE(3847)] = 206458, + [SMALL_STATE(3848)] = 206535, + [SMALL_STATE(3849)] = 206612, + [SMALL_STATE(3850)] = 206689, + [SMALL_STATE(3851)] = 206766, + [SMALL_STATE(3852)] = 206841, + [SMALL_STATE(3853)] = 206918, + [SMALL_STATE(3854)] = 206995, + [SMALL_STATE(3855)] = 207072, + [SMALL_STATE(3856)] = 207149, + [SMALL_STATE(3857)] = 207226, + [SMALL_STATE(3858)] = 207265, + [SMALL_STATE(3859)] = 207342, + [SMALL_STATE(3860)] = 207419, + [SMALL_STATE(3861)] = 207496, + [SMALL_STATE(3862)] = 207573, + [SMALL_STATE(3863)] = 207650, + [SMALL_STATE(3864)] = 207727, + [SMALL_STATE(3865)] = 207804, + [SMALL_STATE(3866)] = 207881, + [SMALL_STATE(3867)] = 207958, + [SMALL_STATE(3868)] = 208035, + [SMALL_STATE(3869)] = 208112, + [SMALL_STATE(3870)] = 208189, + [SMALL_STATE(3871)] = 208228, + [SMALL_STATE(3872)] = 208305, + [SMALL_STATE(3873)] = 208382, + [SMALL_STATE(3874)] = 208459, + [SMALL_STATE(3875)] = 208536, + [SMALL_STATE(3876)] = 208611, + [SMALL_STATE(3877)] = 208688, + [SMALL_STATE(3878)] = 208765, + [SMALL_STATE(3879)] = 208840, + [SMALL_STATE(3880)] = 208917, + [SMALL_STATE(3881)] = 208994, + [SMALL_STATE(3882)] = 209071, + [SMALL_STATE(3883)] = 209148, + [SMALL_STATE(3884)] = 209225, + [SMALL_STATE(3885)] = 209302, + [SMALL_STATE(3886)] = 209379, + [SMALL_STATE(3887)] = 209456, + [SMALL_STATE(3888)] = 209533, + [SMALL_STATE(3889)] = 209610, + [SMALL_STATE(3890)] = 209685, + [SMALL_STATE(3891)] = 209762, + [SMALL_STATE(3892)] = 209837, + [SMALL_STATE(3893)] = 209912, + [SMALL_STATE(3894)] = 209989, + [SMALL_STATE(3895)] = 210066, + [SMALL_STATE(3896)] = 210143, + [SMALL_STATE(3897)] = 210220, + [SMALL_STATE(3898)] = 210297, + [SMALL_STATE(3899)] = 210374, + [SMALL_STATE(3900)] = 210449, + [SMALL_STATE(3901)] = 210488, + [SMALL_STATE(3902)] = 210563, + [SMALL_STATE(3903)] = 210640, + [SMALL_STATE(3904)] = 210717, + [SMALL_STATE(3905)] = 210792, + [SMALL_STATE(3906)] = 210869, + [SMALL_STATE(3907)] = 210946, + [SMALL_STATE(3908)] = 211023, + [SMALL_STATE(3909)] = 211100, + [SMALL_STATE(3910)] = 211177, + [SMALL_STATE(3911)] = 211254, + [SMALL_STATE(3912)] = 211331, + [SMALL_STATE(3913)] = 211408, + [SMALL_STATE(3914)] = 211483, + [SMALL_STATE(3915)] = 211558, + [SMALL_STATE(3916)] = 211633, + [SMALL_STATE(3917)] = 211708, + [SMALL_STATE(3918)] = 211785, + [SMALL_STATE(3919)] = 211862, + [SMALL_STATE(3920)] = 211939, + [SMALL_STATE(3921)] = 212016, + [SMALL_STATE(3922)] = 212055, + [SMALL_STATE(3923)] = 212130, + [SMALL_STATE(3924)] = 212205, + [SMALL_STATE(3925)] = 212282, + [SMALL_STATE(3926)] = 212359, + [SMALL_STATE(3927)] = 212408, + [SMALL_STATE(3928)] = 212483, + [SMALL_STATE(3929)] = 212560, + [SMALL_STATE(3930)] = 212637, + [SMALL_STATE(3931)] = 212686, + [SMALL_STATE(3932)] = 212763, + [SMALL_STATE(3933)] = 212840, + [SMALL_STATE(3934)] = 212917, + [SMALL_STATE(3935)] = 212994, + [SMALL_STATE(3936)] = 213069, + [SMALL_STATE(3937)] = 213108, + [SMALL_STATE(3938)] = 213147, + [SMALL_STATE(3939)] = 213222, + [SMALL_STATE(3940)] = 213297, + [SMALL_STATE(3941)] = 213374, + [SMALL_STATE(3942)] = 213451, + [SMALL_STATE(3943)] = 213526, + [SMALL_STATE(3944)] = 213603, + [SMALL_STATE(3945)] = 213680, + [SMALL_STATE(3946)] = 213757, + [SMALL_STATE(3947)] = 213834, + [SMALL_STATE(3948)] = 213911, + [SMALL_STATE(3949)] = 213988, + [SMALL_STATE(3950)] = 214065, + [SMALL_STATE(3951)] = 214142, + [SMALL_STATE(3952)] = 214219, + [SMALL_STATE(3953)] = 214294, + [SMALL_STATE(3954)] = 214371, + [SMALL_STATE(3955)] = 214448, + [SMALL_STATE(3956)] = 214525, + [SMALL_STATE(3957)] = 214600, + [SMALL_STATE(3958)] = 214675, + [SMALL_STATE(3959)] = 214750, + [SMALL_STATE(3960)] = 214827, + [SMALL_STATE(3961)] = 214904, + [SMALL_STATE(3962)] = 214981, + [SMALL_STATE(3963)] = 215056, + [SMALL_STATE(3964)] = 215131, + [SMALL_STATE(3965)] = 215208, + [SMALL_STATE(3966)] = 215257, + [SMALL_STATE(3967)] = 215332, + [SMALL_STATE(3968)] = 215407, + [SMALL_STATE(3969)] = 215484, + [SMALL_STATE(3970)] = 215559, + [SMALL_STATE(3971)] = 215636, + [SMALL_STATE(3972)] = 215685, + [SMALL_STATE(3973)] = 215734, + [SMALL_STATE(3974)] = 215811, + [SMALL_STATE(3975)] = 215888, + [SMALL_STATE(3976)] = 215965, + [SMALL_STATE(3977)] = 216042, + [SMALL_STATE(3978)] = 216117, + [SMALL_STATE(3979)] = 216194, + [SMALL_STATE(3980)] = 216271, + [SMALL_STATE(3981)] = 216348, + [SMALL_STATE(3982)] = 216425, + [SMALL_STATE(3983)] = 216502, + [SMALL_STATE(3984)] = 216579, + [SMALL_STATE(3985)] = 216656, + [SMALL_STATE(3986)] = 216695, + [SMALL_STATE(3987)] = 216772, + [SMALL_STATE(3988)] = 216849, + [SMALL_STATE(3989)] = 216924, + [SMALL_STATE(3990)] = 216999, + [SMALL_STATE(3991)] = 217076, + [SMALL_STATE(3992)] = 217153, + [SMALL_STATE(3993)] = 217230, + [SMALL_STATE(3994)] = 217305, + [SMALL_STATE(3995)] = 217380, + [SMALL_STATE(3996)] = 217455, + [SMALL_STATE(3997)] = 217532, + [SMALL_STATE(3998)] = 217609, + [SMALL_STATE(3999)] = 217686, + [SMALL_STATE(4000)] = 217761, + [SMALL_STATE(4001)] = 217838, + [SMALL_STATE(4002)] = 217915, + [SMALL_STATE(4003)] = 217992, + [SMALL_STATE(4004)] = 218069, + [SMALL_STATE(4005)] = 218146, + [SMALL_STATE(4006)] = 218223, + [SMALL_STATE(4007)] = 218300, + [SMALL_STATE(4008)] = 218377, + [SMALL_STATE(4009)] = 218454, + [SMALL_STATE(4010)] = 218531, + [SMALL_STATE(4011)] = 218608, + [SMALL_STATE(4012)] = 218685, + [SMALL_STATE(4013)] = 218762, + [SMALL_STATE(4014)] = 218811, + [SMALL_STATE(4015)] = 218888, + [SMALL_STATE(4016)] = 218963, + [SMALL_STATE(4017)] = 219040, + [SMALL_STATE(4018)] = 219117, + [SMALL_STATE(4019)] = 219194, + [SMALL_STATE(4020)] = 219271, + [SMALL_STATE(4021)] = 219346, + [SMALL_STATE(4022)] = 219423, + [SMALL_STATE(4023)] = 219500, + [SMALL_STATE(4024)] = 219577, + [SMALL_STATE(4025)] = 219654, + [SMALL_STATE(4026)] = 219731, + [SMALL_STATE(4027)] = 219808, + [SMALL_STATE(4028)] = 219885, + [SMALL_STATE(4029)] = 219962, + [SMALL_STATE(4030)] = 220039, + [SMALL_STATE(4031)] = 220116, + [SMALL_STATE(4032)] = 220193, + [SMALL_STATE(4033)] = 220270, + [SMALL_STATE(4034)] = 220345, + [SMALL_STATE(4035)] = 220422, + [SMALL_STATE(4036)] = 220499, + [SMALL_STATE(4037)] = 220576, + [SMALL_STATE(4038)] = 220653, + [SMALL_STATE(4039)] = 220728, + [SMALL_STATE(4040)] = 220805, + [SMALL_STATE(4041)] = 220882, + [SMALL_STATE(4042)] = 220931, + [SMALL_STATE(4043)] = 221008, + [SMALL_STATE(4044)] = 221083, + [SMALL_STATE(4045)] = 221160, + [SMALL_STATE(4046)] = 221237, + [SMALL_STATE(4047)] = 221314, + [SMALL_STATE(4048)] = 221389, + [SMALL_STATE(4049)] = 221466, + [SMALL_STATE(4050)] = 221543, + [SMALL_STATE(4051)] = 221620, + [SMALL_STATE(4052)] = 221695, + [SMALL_STATE(4053)] = 221772, + [SMALL_STATE(4054)] = 221849, + [SMALL_STATE(4055)] = 221888, + [SMALL_STATE(4056)] = 221965, + [SMALL_STATE(4057)] = 222042, + [SMALL_STATE(4058)] = 222119, + [SMALL_STATE(4059)] = 222196, + [SMALL_STATE(4060)] = 222273, + [SMALL_STATE(4061)] = 222350, + [SMALL_STATE(4062)] = 222427, + [SMALL_STATE(4063)] = 222502, + [SMALL_STATE(4064)] = 222577, + [SMALL_STATE(4065)] = 222654, + [SMALL_STATE(4066)] = 222729, + [SMALL_STATE(4067)] = 222806, + [SMALL_STATE(4068)] = 222883, + [SMALL_STATE(4069)] = 222960, + [SMALL_STATE(4070)] = 223037, + [SMALL_STATE(4071)] = 223114, + [SMALL_STATE(4072)] = 223189, + [SMALL_STATE(4073)] = 223266, + [SMALL_STATE(4074)] = 223343, + [SMALL_STATE(4075)] = 223420, + [SMALL_STATE(4076)] = 223469, + [SMALL_STATE(4077)] = 223544, + [SMALL_STATE(4078)] = 223621, + [SMALL_STATE(4079)] = 223660, + [SMALL_STATE(4080)] = 223737, + [SMALL_STATE(4081)] = 223814, + [SMALL_STATE(4082)] = 223891, + [SMALL_STATE(4083)] = 223968, + [SMALL_STATE(4084)] = 224045, + [SMALL_STATE(4085)] = 224120, + [SMALL_STATE(4086)] = 224197, + [SMALL_STATE(4087)] = 224271, + [SMALL_STATE(4088)] = 224343, + [SMALL_STATE(4089)] = 224415, + [SMALL_STATE(4090)] = 224487, + [SMALL_STATE(4091)] = 224557, + [SMALL_STATE(4092)] = 224627, + [SMALL_STATE(4093)] = 224675, + [SMALL_STATE(4094)] = 224723, + [SMALL_STATE(4095)] = 224795, + [SMALL_STATE(4096)] = 224867, + [SMALL_STATE(4097)] = 224941, + [SMALL_STATE(4098)] = 225011, + [SMALL_STATE(4099)] = 225081, + [SMALL_STATE(4100)] = 225153, + [SMALL_STATE(4101)] = 225225, + [SMALL_STATE(4102)] = 225299, + [SMALL_STATE(4103)] = 225369, + [SMALL_STATE(4104)] = 225439, + [SMALL_STATE(4105)] = 225511, + [SMALL_STATE(4106)] = 225583, + [SMALL_STATE(4107)] = 225657, + [SMALL_STATE(4108)] = 225727, + [SMALL_STATE(4109)] = 225797, + [SMALL_STATE(4110)] = 225869, + [SMALL_STATE(4111)] = 225941, + [SMALL_STATE(4112)] = 226015, + [SMALL_STATE(4113)] = 226085, + [SMALL_STATE(4114)] = 226155, + [SMALL_STATE(4115)] = 226227, + [SMALL_STATE(4116)] = 226299, + [SMALL_STATE(4117)] = 226371, + [SMALL_STATE(4118)] = 226443, + [SMALL_STATE(4119)] = 226515, + [SMALL_STATE(4120)] = 226587, + [SMALL_STATE(4121)] = 226659, + [SMALL_STATE(4122)] = 226731, + [SMALL_STATE(4123)] = 226803, + [SMALL_STATE(4124)] = 226875, + [SMALL_STATE(4125)] = 226947, + [SMALL_STATE(4126)] = 227019, + [SMALL_STATE(4127)] = 227091, + [SMALL_STATE(4128)] = 227163, + [SMALL_STATE(4129)] = 227235, + [SMALL_STATE(4130)] = 227307, + [SMALL_STATE(4131)] = 227379, + [SMALL_STATE(4132)] = 227451, + [SMALL_STATE(4133)] = 227523, + [SMALL_STATE(4134)] = 227595, + [SMALL_STATE(4135)] = 227667, + [SMALL_STATE(4136)] = 227739, + [SMALL_STATE(4137)] = 227811, + [SMALL_STATE(4138)] = 227883, + [SMALL_STATE(4139)] = 227955, + [SMALL_STATE(4140)] = 228027, + [SMALL_STATE(4141)] = 228099, + [SMALL_STATE(4142)] = 228171, + [SMALL_STATE(4143)] = 228243, + [SMALL_STATE(4144)] = 228315, + [SMALL_STATE(4145)] = 228387, + [SMALL_STATE(4146)] = 228459, + [SMALL_STATE(4147)] = 228531, + [SMALL_STATE(4148)] = 228603, + [SMALL_STATE(4149)] = 228675, + [SMALL_STATE(4150)] = 228747, + [SMALL_STATE(4151)] = 228819, + [SMALL_STATE(4152)] = 228891, + [SMALL_STATE(4153)] = 228963, + [SMALL_STATE(4154)] = 229035, + [SMALL_STATE(4155)] = 229107, + [SMALL_STATE(4156)] = 229179, + [SMALL_STATE(4157)] = 229251, + [SMALL_STATE(4158)] = 229321, + [SMALL_STATE(4159)] = 229393, + [SMALL_STATE(4160)] = 229465, + [SMALL_STATE(4161)] = 229535, + [SMALL_STATE(4162)] = 229607, + [SMALL_STATE(4163)] = 229679, + [SMALL_STATE(4164)] = 229751, + [SMALL_STATE(4165)] = 229799, + [SMALL_STATE(4166)] = 229847, + [SMALL_STATE(4167)] = 229921, + [SMALL_STATE(4168)] = 229969, + [SMALL_STATE(4169)] = 230017, + [SMALL_STATE(4170)] = 230065, + [SMALL_STATE(4171)] = 230113, + [SMALL_STATE(4172)] = 230185, + [SMALL_STATE(4173)] = 230257, + [SMALL_STATE(4174)] = 230329, + [SMALL_STATE(4175)] = 230403, + [SMALL_STATE(4176)] = 230475, + [SMALL_STATE(4177)] = 230547, + [SMALL_STATE(4178)] = 230619, + [SMALL_STATE(4179)] = 230693, + [SMALL_STATE(4180)] = 230765, + [SMALL_STATE(4181)] = 230832, + [SMALL_STATE(4182)] = 230899, + [SMALL_STATE(4183)] = 230966, + [SMALL_STATE(4184)] = 231033, + [SMALL_STATE(4185)] = 231100, + [SMALL_STATE(4186)] = 231167, + [SMALL_STATE(4187)] = 231234, + [SMALL_STATE(4188)] = 231301, + [SMALL_STATE(4189)] = 231368, + [SMALL_STATE(4190)] = 231435, + [SMALL_STATE(4191)] = 231502, + [SMALL_STATE(4192)] = 231559, + [SMALL_STATE(4193)] = 231626, + [SMALL_STATE(4194)] = 231693, + [SMALL_STATE(4195)] = 231760, + [SMALL_STATE(4196)] = 231827, + [SMALL_STATE(4197)] = 231898, + [SMALL_STATE(4198)] = 231965, + [SMALL_STATE(4199)] = 232036, + [SMALL_STATE(4200)] = 232103, + [SMALL_STATE(4201)] = 232170, + [SMALL_STATE(4202)] = 232237, + [SMALL_STATE(4203)] = 232304, + [SMALL_STATE(4204)] = 232371, + [SMALL_STATE(4205)] = 232438, + [SMALL_STATE(4206)] = 232505, + [SMALL_STATE(4207)] = 232572, + [SMALL_STATE(4208)] = 232639, + [SMALL_STATE(4209)] = 232706, + [SMALL_STATE(4210)] = 232773, + [SMALL_STATE(4211)] = 232840, + [SMALL_STATE(4212)] = 232907, + [SMALL_STATE(4213)] = 232974, + [SMALL_STATE(4214)] = 233041, + [SMALL_STATE(4215)] = 233108, + [SMALL_STATE(4216)] = 233175, + [SMALL_STATE(4217)] = 233242, + [SMALL_STATE(4218)] = 233309, + [SMALL_STATE(4219)] = 233376, + [SMALL_STATE(4220)] = 233443, + [SMALL_STATE(4221)] = 233510, + [SMALL_STATE(4222)] = 233577, + [SMALL_STATE(4223)] = 233644, + [SMALL_STATE(4224)] = 233711, + [SMALL_STATE(4225)] = 233782, + [SMALL_STATE(4226)] = 233849, + [SMALL_STATE(4227)] = 233920, + [SMALL_STATE(4228)] = 233987, + [SMALL_STATE(4229)] = 234054, + [SMALL_STATE(4230)] = 234121, + [SMALL_STATE(4231)] = 234188, + [SMALL_STATE(4232)] = 234255, + [SMALL_STATE(4233)] = 234322, + [SMALL_STATE(4234)] = 234389, + [SMALL_STATE(4235)] = 234456, + [SMALL_STATE(4236)] = 234523, + [SMALL_STATE(4237)] = 234590, + [SMALL_STATE(4238)] = 234657, + [SMALL_STATE(4239)] = 234724, + [SMALL_STATE(4240)] = 234791, + [SMALL_STATE(4241)] = 234862, + [SMALL_STATE(4242)] = 234929, + [SMALL_STATE(4243)] = 235000, + [SMALL_STATE(4244)] = 235067, + [SMALL_STATE(4245)] = 235134, + [SMALL_STATE(4246)] = 235201, + [SMALL_STATE(4247)] = 235268, + [SMALL_STATE(4248)] = 235335, + [SMALL_STATE(4249)] = 235402, + [SMALL_STATE(4250)] = 235469, + [SMALL_STATE(4251)] = 235536, + [SMALL_STATE(4252)] = 235603, + [SMALL_STATE(4253)] = 235674, + [SMALL_STATE(4254)] = 235741, + [SMALL_STATE(4255)] = 235812, + [SMALL_STATE(4256)] = 235879, + [SMALL_STATE(4257)] = 235946, + [SMALL_STATE(4258)] = 235989, + [SMALL_STATE(4259)] = 236056, + [SMALL_STATE(4260)] = 236123, + [SMALL_STATE(4261)] = 236190, + [SMALL_STATE(4262)] = 236257, + [SMALL_STATE(4263)] = 236328, + [SMALL_STATE(4264)] = 236395, + [SMALL_STATE(4265)] = 236466, + [SMALL_STATE(4266)] = 236533, + [SMALL_STATE(4267)] = 236600, + [SMALL_STATE(4268)] = 236671, + [SMALL_STATE(4269)] = 236714, + [SMALL_STATE(4270)] = 236785, + [SMALL_STATE(4271)] = 236852, + [SMALL_STATE(4272)] = 236919, + [SMALL_STATE(4273)] = 236964, + [SMALL_STATE(4274)] = 237031, + [SMALL_STATE(4275)] = 237102, + [SMALL_STATE(4276)] = 237173, + [SMALL_STATE(4277)] = 237240, + [SMALL_STATE(4278)] = 237311, + [SMALL_STATE(4279)] = 237378, + [SMALL_STATE(4280)] = 237449, + [SMALL_STATE(4281)] = 237516, + [SMALL_STATE(4282)] = 237583, + [SMALL_STATE(4283)] = 237654, + [SMALL_STATE(4284)] = 237721, + [SMALL_STATE(4285)] = 237792, + [SMALL_STATE(4286)] = 237859, + [SMALL_STATE(4287)] = 237926, + [SMALL_STATE(4288)] = 237997, + [SMALL_STATE(4289)] = 238068, + [SMALL_STATE(4290)] = 238135, + [SMALL_STATE(4291)] = 238202, + [SMALL_STATE(4292)] = 238273, + [SMALL_STATE(4293)] = 238340, + [SMALL_STATE(4294)] = 238411, + [SMALL_STATE(4295)] = 238478, + [SMALL_STATE(4296)] = 238545, + [SMALL_STATE(4297)] = 238616, + [SMALL_STATE(4298)] = 238683, + [SMALL_STATE(4299)] = 238754, + [SMALL_STATE(4300)] = 238821, + [SMALL_STATE(4301)] = 238888, + [SMALL_STATE(4302)] = 238955, + [SMALL_STATE(4303)] = 239026, + [SMALL_STATE(4304)] = 239093, + [SMALL_STATE(4305)] = 239164, + [SMALL_STATE(4306)] = 239231, + [SMALL_STATE(4307)] = 239298, + [SMALL_STATE(4308)] = 239365, + [SMALL_STATE(4309)] = 239436, + [SMALL_STATE(4310)] = 239503, + [SMALL_STATE(4311)] = 239574, + [SMALL_STATE(4312)] = 239631, + [SMALL_STATE(4313)] = 239698, + [SMALL_STATE(4314)] = 239765, + [SMALL_STATE(4315)] = 239836, + [SMALL_STATE(4316)] = 239903, + [SMALL_STATE(4317)] = 239974, + [SMALL_STATE(4318)] = 240041, + [SMALL_STATE(4319)] = 240112, + [SMALL_STATE(4320)] = 240183, + [SMALL_STATE(4321)] = 240250, + [SMALL_STATE(4322)] = 240317, + [SMALL_STATE(4323)] = 240384, + [SMALL_STATE(4324)] = 240455, + [SMALL_STATE(4325)] = 240522, + [SMALL_STATE(4326)] = 240593, + [SMALL_STATE(4327)] = 240660, + [SMALL_STATE(4328)] = 240727, + [SMALL_STATE(4329)] = 240798, + [SMALL_STATE(4330)] = 240865, + [SMALL_STATE(4331)] = 240936, + [SMALL_STATE(4332)] = 241003, + [SMALL_STATE(4333)] = 241074, + [SMALL_STATE(4334)] = 241145, + [SMALL_STATE(4335)] = 241212, + [SMALL_STATE(4336)] = 241279, + [SMALL_STATE(4337)] = 241346, + [SMALL_STATE(4338)] = 241413, + [SMALL_STATE(4339)] = 241484, + [SMALL_STATE(4340)] = 241551, + [SMALL_STATE(4341)] = 241622, + [SMALL_STATE(4342)] = 241689, + [SMALL_STATE(4343)] = 241760, + [SMALL_STATE(4344)] = 241827, + [SMALL_STATE(4345)] = 241898, + [SMALL_STATE(4346)] = 241965, + [SMALL_STATE(4347)] = 242032, + [SMALL_STATE(4348)] = 242103, + [SMALL_STATE(4349)] = 242170, + [SMALL_STATE(4350)] = 242241, + [SMALL_STATE(4351)] = 242308, + [SMALL_STATE(4352)] = 242375, + [SMALL_STATE(4353)] = 242442, + [SMALL_STATE(4354)] = 242513, + [SMALL_STATE(4355)] = 242584, + [SMALL_STATE(4356)] = 242651, + [SMALL_STATE(4357)] = 242718, + [SMALL_STATE(4358)] = 242785, + [SMALL_STATE(4359)] = 242856, + [SMALL_STATE(4360)] = 242923, + [SMALL_STATE(4361)] = 242994, + [SMALL_STATE(4362)] = 243061, + [SMALL_STATE(4363)] = 243128, + [SMALL_STATE(4364)] = 243199, + [SMALL_STATE(4365)] = 243266, + [SMALL_STATE(4366)] = 243337, + [SMALL_STATE(4367)] = 243404, + [SMALL_STATE(4368)] = 243475, + [SMALL_STATE(4369)] = 243546, + [SMALL_STATE(4370)] = 243613, + [SMALL_STATE(4371)] = 243680, + [SMALL_STATE(4372)] = 243747, + [SMALL_STATE(4373)] = 243814, + [SMALL_STATE(4374)] = 243881, + [SMALL_STATE(4375)] = 243948, + [SMALL_STATE(4376)] = 244015, + [SMALL_STATE(4377)] = 244082, + [SMALL_STATE(4378)] = 244149, + [SMALL_STATE(4379)] = 244216, + [SMALL_STATE(4380)] = 244283, + [SMALL_STATE(4381)] = 244350, + [SMALL_STATE(4382)] = 244417, + [SMALL_STATE(4383)] = 244484, + [SMALL_STATE(4384)] = 244551, + [SMALL_STATE(4385)] = 244618, + [SMALL_STATE(4386)] = 244685, + [SMALL_STATE(4387)] = 244752, + [SMALL_STATE(4388)] = 244819, + [SMALL_STATE(4389)] = 244886, + [SMALL_STATE(4390)] = 244953, + [SMALL_STATE(4391)] = 245020, + [SMALL_STATE(4392)] = 245087, + [SMALL_STATE(4393)] = 245154, + [SMALL_STATE(4394)] = 245221, + [SMALL_STATE(4395)] = 245288, + [SMALL_STATE(4396)] = 245355, + [SMALL_STATE(4397)] = 245422, + [SMALL_STATE(4398)] = 245489, + [SMALL_STATE(4399)] = 245556, + [SMALL_STATE(4400)] = 245623, + [SMALL_STATE(4401)] = 245690, + [SMALL_STATE(4402)] = 245757, + [SMALL_STATE(4403)] = 245824, + [SMALL_STATE(4404)] = 245891, + [SMALL_STATE(4405)] = 245958, + [SMALL_STATE(4406)] = 246025, + [SMALL_STATE(4407)] = 246092, + [SMALL_STATE(4408)] = 246159, + [SMALL_STATE(4409)] = 246226, + [SMALL_STATE(4410)] = 246293, + [SMALL_STATE(4411)] = 246360, + [SMALL_STATE(4412)] = 246427, + [SMALL_STATE(4413)] = 246498, + [SMALL_STATE(4414)] = 246565, + [SMALL_STATE(4415)] = 246632, + [SMALL_STATE(4416)] = 246699, + [SMALL_STATE(4417)] = 246766, + [SMALL_STATE(4418)] = 246833, + [SMALL_STATE(4419)] = 246900, + [SMALL_STATE(4420)] = 246967, + [SMALL_STATE(4421)] = 247034, + [SMALL_STATE(4422)] = 247099, + [SMALL_STATE(4423)] = 247166, + [SMALL_STATE(4424)] = 247233, + [SMALL_STATE(4425)] = 247304, + [SMALL_STATE(4426)] = 247371, + [SMALL_STATE(4427)] = 247438, + [SMALL_STATE(4428)] = 247481, + [SMALL_STATE(4429)] = 247548, + [SMALL_STATE(4430)] = 247615, + [SMALL_STATE(4431)] = 247682, + [SMALL_STATE(4432)] = 247749, + [SMALL_STATE(4433)] = 247816, + [SMALL_STATE(4434)] = 247887, + [SMALL_STATE(4435)] = 247954, + [SMALL_STATE(4436)] = 248021, + [SMALL_STATE(4437)] = 248092, + [SMALL_STATE(4438)] = 248163, + [SMALL_STATE(4439)] = 248234, + [SMALL_STATE(4440)] = 248305, + [SMALL_STATE(4441)] = 248372, + [SMALL_STATE(4442)] = 248439, + [SMALL_STATE(4443)] = 248506, + [SMALL_STATE(4444)] = 248549, + [SMALL_STATE(4445)] = 248616, + [SMALL_STATE(4446)] = 248691, + [SMALL_STATE(4447)] = 248758, + [SMALL_STATE(4448)] = 248825, + [SMALL_STATE(4449)] = 248896, + [SMALL_STATE(4450)] = 248967, + [SMALL_STATE(4451)] = 249038, + [SMALL_STATE(4452)] = 249109, + [SMALL_STATE(4453)] = 249176, + [SMALL_STATE(4454)] = 249243, + [SMALL_STATE(4455)] = 249314, + [SMALL_STATE(4456)] = 249385, + [SMALL_STATE(4457)] = 249456, + [SMALL_STATE(4458)] = 249527, + [SMALL_STATE(4459)] = 249594, + [SMALL_STATE(4460)] = 249665, + [SMALL_STATE(4461)] = 249736, + [SMALL_STATE(4462)] = 249807, + [SMALL_STATE(4463)] = 249878, + [SMALL_STATE(4464)] = 249945, + [SMALL_STATE(4465)] = 250012, + [SMALL_STATE(4466)] = 250079, + [SMALL_STATE(4467)] = 250146, + [SMALL_STATE(4468)] = 250213, + [SMALL_STATE(4469)] = 250280, + [SMALL_STATE(4470)] = 250347, + [SMALL_STATE(4471)] = 250414, + [SMALL_STATE(4472)] = 250481, + [SMALL_STATE(4473)] = 250548, + [SMALL_STATE(4474)] = 250615, + [SMALL_STATE(4475)] = 250682, + [SMALL_STATE(4476)] = 250749, + [SMALL_STATE(4477)] = 250816, + [SMALL_STATE(4478)] = 250883, + [SMALL_STATE(4479)] = 250950, + [SMALL_STATE(4480)] = 251017, + [SMALL_STATE(4481)] = 251084, + [SMALL_STATE(4482)] = 251127, + [SMALL_STATE(4483)] = 251194, + [SMALL_STATE(4484)] = 251261, + [SMALL_STATE(4485)] = 251328, + [SMALL_STATE(4486)] = 251395, + [SMALL_STATE(4487)] = 251462, + [SMALL_STATE(4488)] = 251529, + [SMALL_STATE(4489)] = 251596, + [SMALL_STATE(4490)] = 251663, + [SMALL_STATE(4491)] = 251730, + [SMALL_STATE(4492)] = 251797, + [SMALL_STATE(4493)] = 251864, + [SMALL_STATE(4494)] = 251931, + [SMALL_STATE(4495)] = 251998, + [SMALL_STATE(4496)] = 252065, + [SMALL_STATE(4497)] = 252132, + [SMALL_STATE(4498)] = 252199, + [SMALL_STATE(4499)] = 252266, + [SMALL_STATE(4500)] = 252333, + [SMALL_STATE(4501)] = 252400, + [SMALL_STATE(4502)] = 252467, + [SMALL_STATE(4503)] = 252534, + [SMALL_STATE(4504)] = 252601, + [SMALL_STATE(4505)] = 252668, + [SMALL_STATE(4506)] = 252735, + [SMALL_STATE(4507)] = 252802, + [SMALL_STATE(4508)] = 252869, + [SMALL_STATE(4509)] = 252940, + [SMALL_STATE(4510)] = 253015, + [SMALL_STATE(4511)] = 253082, + [SMALL_STATE(4512)] = 253149, + [SMALL_STATE(4513)] = 253216, + [SMALL_STATE(4514)] = 253283, + [SMALL_STATE(4515)] = 253350, + [SMALL_STATE(4516)] = 253417, + [SMALL_STATE(4517)] = 253484, + [SMALL_STATE(4518)] = 253551, + [SMALL_STATE(4519)] = 253618, + [SMALL_STATE(4520)] = 253685, + [SMALL_STATE(4521)] = 253756, + [SMALL_STATE(4522)] = 253823, + [SMALL_STATE(4523)] = 253894, + [SMALL_STATE(4524)] = 253961, + [SMALL_STATE(4525)] = 254032, + [SMALL_STATE(4526)] = 254103, + [SMALL_STATE(4527)] = 254174, + [SMALL_STATE(4528)] = 254249, + [SMALL_STATE(4529)] = 254316, + [SMALL_STATE(4530)] = 254383, + [SMALL_STATE(4531)] = 254450, + [SMALL_STATE(4532)] = 254517, + [SMALL_STATE(4533)] = 254584, + [SMALL_STATE(4534)] = 254651, + [SMALL_STATE(4535)] = 254718, + [SMALL_STATE(4536)] = 254785, + [SMALL_STATE(4537)] = 254856, + [SMALL_STATE(4538)] = 254923, + [SMALL_STATE(4539)] = 254994, + [SMALL_STATE(4540)] = 255061, + [SMALL_STATE(4541)] = 255132, + [SMALL_STATE(4542)] = 255203, + [SMALL_STATE(4543)] = 255270, + [SMALL_STATE(4544)] = 255341, + [SMALL_STATE(4545)] = 255416, + [SMALL_STATE(4546)] = 255483, + [SMALL_STATE(4547)] = 255550, + [SMALL_STATE(4548)] = 255586, + [SMALL_STATE(4549)] = 255622, + [SMALL_STATE(4550)] = 255658, + [SMALL_STATE(4551)] = 255694, + [SMALL_STATE(4552)] = 255730, + [SMALL_STATE(4553)] = 255772, + [SMALL_STATE(4554)] = 255808, + [SMALL_STATE(4555)] = 255844, + [SMALL_STATE(4556)] = 255880, + [SMALL_STATE(4557)] = 255916, + [SMALL_STATE(4558)] = 255952, + [SMALL_STATE(4559)] = 255994, + [SMALL_STATE(4560)] = 256036, + [SMALL_STATE(4561)] = 256072, + [SMALL_STATE(4562)] = 256108, + [SMALL_STATE(4563)] = 256144, + [SMALL_STATE(4564)] = 256190, + [SMALL_STATE(4565)] = 256232, + [SMALL_STATE(4566)] = 256268, + [SMALL_STATE(4567)] = 256304, + [SMALL_STATE(4568)] = 256340, + [SMALL_STATE(4569)] = 256376, + [SMALL_STATE(4570)] = 256412, + [SMALL_STATE(4571)] = 256454, + [SMALL_STATE(4572)] = 256490, + [SMALL_STATE(4573)] = 256534, + [SMALL_STATE(4574)] = 256570, + [SMALL_STATE(4575)] = 256606, + [SMALL_STATE(4576)] = 256642, + [SMALL_STATE(4577)] = 256678, + [SMALL_STATE(4578)] = 256714, + [SMALL_STATE(4579)] = 256750, + [SMALL_STATE(4580)] = 256786, + [SMALL_STATE(4581)] = 256822, + [SMALL_STATE(4582)] = 256864, + [SMALL_STATE(4583)] = 256936, + [SMALL_STATE(4584)] = 256978, + [SMALL_STATE(4585)] = 257020, + [SMALL_STATE(4586)] = 257062, + [SMALL_STATE(4587)] = 257104, + [SMALL_STATE(4588)] = 257146, + [SMALL_STATE(4589)] = 257192, + [SMALL_STATE(4590)] = 257264, + [SMALL_STATE(4591)] = 257306, + [SMALL_STATE(4592)] = 257348, + [SMALL_STATE(4593)] = 257390, + [SMALL_STATE(4594)] = 257436, + [SMALL_STATE(4595)] = 257478, + [SMALL_STATE(4596)] = 257520, + [SMALL_STATE(4597)] = 257562, + [SMALL_STATE(4598)] = 257604, + [SMALL_STATE(4599)] = 257640, + [SMALL_STATE(4600)] = 257676, + [SMALL_STATE(4601)] = 257712, + [SMALL_STATE(4602)] = 257748, + [SMALL_STATE(4603)] = 257784, + [SMALL_STATE(4604)] = 257820, + [SMALL_STATE(4605)] = 257856, + [SMALL_STATE(4606)] = 257898, + [SMALL_STATE(4607)] = 257934, + [SMALL_STATE(4608)] = 257976, + [SMALL_STATE(4609)] = 258032, + [SMALL_STATE(4610)] = 258074, + [SMALL_STATE(4611)] = 258120, + [SMALL_STATE(4612)] = 258162, + [SMALL_STATE(4613)] = 258198, + [SMALL_STATE(4614)] = 258270, + [SMALL_STATE(4615)] = 258306, + [SMALL_STATE(4616)] = 258348, + [SMALL_STATE(4617)] = 258384, + [SMALL_STATE(4618)] = 258440, + [SMALL_STATE(4619)] = 258495, + [SMALL_STATE(4620)] = 258530, + [SMALL_STATE(4621)] = 258565, + [SMALL_STATE(4622)] = 258600, + [SMALL_STATE(4623)] = 258641, + [SMALL_STATE(4624)] = 258676, + [SMALL_STATE(4625)] = 258711, + [SMALL_STATE(4626)] = 258746, + [SMALL_STATE(4627)] = 258791, + [SMALL_STATE(4628)] = 258846, + [SMALL_STATE(4629)] = 258887, + [SMALL_STATE(4630)] = 258922, + [SMALL_STATE(4631)] = 258961, + [SMALL_STATE(4632)] = 258996, + [SMALL_STATE(4633)] = 259033, + [SMALL_STATE(4634)] = 259088, + [SMALL_STATE(4635)] = 259125, + [SMALL_STATE(4636)] = 259180, + [SMALL_STATE(4637)] = 259223, + [SMALL_STATE(4638)] = 259258, + [SMALL_STATE(4639)] = 259293, + [SMALL_STATE(4640)] = 259328, + [SMALL_STATE(4641)] = 259365, + [SMALL_STATE(4642)] = 259400, + [SMALL_STATE(4643)] = 259435, + [SMALL_STATE(4644)] = 259476, + [SMALL_STATE(4645)] = 259511, + [SMALL_STATE(4646)] = 259546, + [SMALL_STATE(4647)] = 259581, + [SMALL_STATE(4648)] = 259616, + [SMALL_STATE(4649)] = 259651, + [SMALL_STATE(4650)] = 259686, + [SMALL_STATE(4651)] = 259721, + [SMALL_STATE(4652)] = 259756, + [SMALL_STATE(4653)] = 259791, + [SMALL_STATE(4654)] = 259832, + [SMALL_STATE(4655)] = 259867, + [SMALL_STATE(4656)] = 259902, + [SMALL_STATE(4657)] = 259937, + [SMALL_STATE(4658)] = 259992, + [SMALL_STATE(4659)] = 260027, + [SMALL_STATE(4660)] = 260082, + [SMALL_STATE(4661)] = 260127, + [SMALL_STATE(4662)] = 260164, + [SMALL_STATE(4663)] = 260199, + [SMALL_STATE(4664)] = 260254, + [SMALL_STATE(4665)] = 260291, + [SMALL_STATE(4666)] = 260326, + [SMALL_STATE(4667)] = 260361, + [SMALL_STATE(4668)] = 260396, + [SMALL_STATE(4669)] = 260451, + [SMALL_STATE(4670)] = 260492, + [SMALL_STATE(4671)] = 260533, + [SMALL_STATE(4672)] = 260574, + [SMALL_STATE(4673)] = 260609, + [SMALL_STATE(4674)] = 260644, + [SMALL_STATE(4675)] = 260679, + [SMALL_STATE(4676)] = 260724, + [SMALL_STATE(4677)] = 260763, + [SMALL_STATE(4678)] = 260798, + [SMALL_STATE(4679)] = 260833, + [SMALL_STATE(4680)] = 260874, + [SMALL_STATE(4681)] = 260929, + [SMALL_STATE(4682)] = 260964, + [SMALL_STATE(4683)] = 260999, + [SMALL_STATE(4684)] = 261034, + [SMALL_STATE(4685)] = 261069, + [SMALL_STATE(4686)] = 261104, + [SMALL_STATE(4687)] = 261143, + [SMALL_STATE(4688)] = 261178, + [SMALL_STATE(4689)] = 261233, + [SMALL_STATE(4690)] = 261272, + [SMALL_STATE(4691)] = 261327, + [SMALL_STATE(4692)] = 261366, + [SMALL_STATE(4693)] = 261421, + [SMALL_STATE(4694)] = 261456, + [SMALL_STATE(4695)] = 261491, + [SMALL_STATE(4696)] = 261526, + [SMALL_STATE(4697)] = 261581, + [SMALL_STATE(4698)] = 261620, + [SMALL_STATE(4699)] = 261675, + [SMALL_STATE(4700)] = 261716, + [SMALL_STATE(4701)] = 261771, + [SMALL_STATE(4702)] = 261826, + [SMALL_STATE(4703)] = 261867, + [SMALL_STATE(4704)] = 261922, + [SMALL_STATE(4705)] = 261961, + [SMALL_STATE(4706)] = 262016, + [SMALL_STATE(4707)] = 262055, + [SMALL_STATE(4708)] = 262094, + [SMALL_STATE(4709)] = 262135, + [SMALL_STATE(4710)] = 262174, + [SMALL_STATE(4711)] = 262209, + [SMALL_STATE(4712)] = 262248, + [SMALL_STATE(4713)] = 262303, + [SMALL_STATE(4714)] = 262346, + [SMALL_STATE(4715)] = 262387, + [SMALL_STATE(4716)] = 262422, + [SMALL_STATE(4717)] = 262463, + [SMALL_STATE(4718)] = 262502, + [SMALL_STATE(4719)] = 262543, + [SMALL_STATE(4720)] = 262584, + [SMALL_STATE(4721)] = 262619, + [SMALL_STATE(4722)] = 262660, + [SMALL_STATE(4723)] = 262701, + [SMALL_STATE(4724)] = 262742, + [SMALL_STATE(4725)] = 262793, + [SMALL_STATE(4726)] = 262834, + [SMALL_STATE(4727)] = 262875, + [SMALL_STATE(4728)] = 262910, + [SMALL_STATE(4729)] = 262945, + [SMALL_STATE(4730)] = 263000, + [SMALL_STATE(4731)] = 263041, + [SMALL_STATE(4732)] = 263082, + [SMALL_STATE(4733)] = 263121, + [SMALL_STATE(4734)] = 263164, + [SMALL_STATE(4735)] = 263205, + [SMALL_STATE(4736)] = 263246, + [SMALL_STATE(4737)] = 263281, + [SMALL_STATE(4738)] = 263316, + [SMALL_STATE(4739)] = 263357, + [SMALL_STATE(4740)] = 263398, + [SMALL_STATE(4741)] = 263439, + [SMALL_STATE(4742)] = 263494, + [SMALL_STATE(4743)] = 263535, + [SMALL_STATE(4744)] = 263570, + [SMALL_STATE(4745)] = 263615, + [SMALL_STATE(4746)] = 263656, + [SMALL_STATE(4747)] = 263697, + [SMALL_STATE(4748)] = 263736, + [SMALL_STATE(4749)] = 263771, + [SMALL_STATE(4750)] = 263806, + [SMALL_STATE(4751)] = 263847, + [SMALL_STATE(4752)] = 263888, + [SMALL_STATE(4753)] = 263929, + [SMALL_STATE(4754)] = 263980, + [SMALL_STATE(4755)] = 264021, + [SMALL_STATE(4756)] = 264066, + [SMALL_STATE(4757)] = 264107, + [SMALL_STATE(4758)] = 264148, + [SMALL_STATE(4759)] = 264203, + [SMALL_STATE(4760)] = 264244, + [SMALL_STATE(4761)] = 264285, + [SMALL_STATE(4762)] = 264340, + [SMALL_STATE(4763)] = 264375, + [SMALL_STATE(4764)] = 264410, + [SMALL_STATE(4765)] = 264465, + [SMALL_STATE(4766)] = 264508, + [SMALL_STATE(4767)] = 264543, + [SMALL_STATE(4768)] = 264584, + [SMALL_STATE(4769)] = 264625, + [SMALL_STATE(4770)] = 264666, + [SMALL_STATE(4771)] = 264707, + [SMALL_STATE(4772)] = 264752, + [SMALL_STATE(4773)] = 264791, + [SMALL_STATE(4774)] = 264836, + [SMALL_STATE(4775)] = 264876, + [SMALL_STATE(4776)] = 264910, + [SMALL_STATE(4777)] = 264950, + [SMALL_STATE(4778)] = 264984, + [SMALL_STATE(4779)] = 265028, + [SMALL_STATE(4780)] = 265062, + [SMALL_STATE(4781)] = 265102, + [SMALL_STATE(4782)] = 265140, + [SMALL_STATE(4783)] = 265180, + [SMALL_STATE(4784)] = 265214, + [SMALL_STATE(4785)] = 265248, + [SMALL_STATE(4786)] = 265288, + [SMALL_STATE(4787)] = 265328, + [SMALL_STATE(4788)] = 265362, + [SMALL_STATE(4789)] = 265402, + [SMALL_STATE(4790)] = 265442, + [SMALL_STATE(4791)] = 265482, + [SMALL_STATE(4792)] = 265516, + [SMALL_STATE(4793)] = 265550, + [SMALL_STATE(4794)] = 265584, + [SMALL_STATE(4795)] = 265618, + [SMALL_STATE(4796)] = 265652, + [SMALL_STATE(4797)] = 265686, + [SMALL_STATE(4798)] = 265726, + [SMALL_STATE(4799)] = 265760, + [SMALL_STATE(4800)] = 265794, + [SMALL_STATE(4801)] = 265828, + [SMALL_STATE(4802)] = 265862, + [SMALL_STATE(4803)] = 265900, + [SMALL_STATE(4804)] = 265940, + [SMALL_STATE(4805)] = 265980, + [SMALL_STATE(4806)] = 266018, + [SMALL_STATE(4807)] = 266062, + [SMALL_STATE(4808)] = 266096, + [SMALL_STATE(4809)] = 266130, + [SMALL_STATE(4810)] = 266170, + [SMALL_STATE(4811)] = 266210, + [SMALL_STATE(4812)] = 266250, + [SMALL_STATE(4813)] = 266284, + [SMALL_STATE(4814)] = 266322, + [SMALL_STATE(4815)] = 266374, + [SMALL_STATE(4816)] = 266412, + [SMALL_STATE(4817)] = 266452, + [SMALL_STATE(4818)] = 266492, + [SMALL_STATE(4819)] = 266532, + [SMALL_STATE(4820)] = 266566, + [SMALL_STATE(4821)] = 266600, + [SMALL_STATE(4822)] = 266640, + [SMALL_STATE(4823)] = 266680, + [SMALL_STATE(4824)] = 266714, + [SMALL_STATE(4825)] = 266752, + [SMALL_STATE(4826)] = 266796, + [SMALL_STATE(4827)] = 266830, + [SMALL_STATE(4828)] = 266864, + [SMALL_STATE(4829)] = 266898, + [SMALL_STATE(4830)] = 266932, + [SMALL_STATE(4831)] = 266966, + [SMALL_STATE(4832)] = 267000, + [SMALL_STATE(4833)] = 267040, + [SMALL_STATE(4834)] = 267080, + [SMALL_STATE(4835)] = 267116, + [SMALL_STATE(4836)] = 267150, + [SMALL_STATE(4837)] = 267188, + [SMALL_STATE(4838)] = 267226, + [SMALL_STATE(4839)] = 267266, + [SMALL_STATE(4840)] = 267304, + [SMALL_STATE(4841)] = 267344, + [SMALL_STATE(4842)] = 267378, + [SMALL_STATE(4843)] = 267418, + [SMALL_STATE(4844)] = 267452, + [SMALL_STATE(4845)] = 267504, + [SMALL_STATE(4846)] = 267544, + [SMALL_STATE(4847)] = 267588, + [SMALL_STATE(4848)] = 267628, + [SMALL_STATE(4849)] = 267662, + [SMALL_STATE(4850)] = 267700, + [SMALL_STATE(4851)] = 267744, + [SMALL_STATE(4852)] = 267778, + [SMALL_STATE(4853)] = 267816, + [SMALL_STATE(4854)] = 267856, + [SMALL_STATE(4855)] = 267896, + [SMALL_STATE(4856)] = 267934, + [SMALL_STATE(4857)] = 267974, + [SMALL_STATE(4858)] = 268012, + [SMALL_STATE(4859)] = 268046, + [SMALL_STATE(4860)] = 268084, + [SMALL_STATE(4861)] = 268118, + [SMALL_STATE(4862)] = 268158, + [SMALL_STATE(4863)] = 268198, + [SMALL_STATE(4864)] = 268238, + [SMALL_STATE(4865)] = 268272, + [SMALL_STATE(4866)] = 268312, + [SMALL_STATE(4867)] = 268352, + [SMALL_STATE(4868)] = 268392, + [SMALL_STATE(4869)] = 268432, + [SMALL_STATE(4870)] = 268476, + [SMALL_STATE(4871)] = 268518, + [SMALL_STATE(4872)] = 268562, + [SMALL_STATE(4873)] = 268602, + [SMALL_STATE(4874)] = 268636, + [SMALL_STATE(4875)] = 268670, + [SMALL_STATE(4876)] = 268704, + [SMALL_STATE(4877)] = 268738, + [SMALL_STATE(4878)] = 268772, + [SMALL_STATE(4879)] = 268806, + [SMALL_STATE(4880)] = 268844, + [SMALL_STATE(4881)] = 268878, + [SMALL_STATE(4882)] = 268916, + [SMALL_STATE(4883)] = 268960, + [SMALL_STATE(4884)] = 268994, + [SMALL_STATE(4885)] = 269034, + [SMALL_STATE(4886)] = 269072, + [SMALL_STATE(4887)] = 269106, + [SMALL_STATE(4888)] = 269140, + [SMALL_STATE(4889)] = 269180, + [SMALL_STATE(4890)] = 269214, + [SMALL_STATE(4891)] = 269248, + [SMALL_STATE(4892)] = 269288, + [SMALL_STATE(4893)] = 269322, + [SMALL_STATE(4894)] = 269356, + [SMALL_STATE(4895)] = 269396, + [SMALL_STATE(4896)] = 269430, + [SMALL_STATE(4897)] = 269468, + [SMALL_STATE(4898)] = 269518, + [SMALL_STATE(4899)] = 269552, + [SMALL_STATE(4900)] = 269592, + [SMALL_STATE(4901)] = 269632, + [SMALL_STATE(4902)] = 269672, + [SMALL_STATE(4903)] = 269712, + [SMALL_STATE(4904)] = 269746, + [SMALL_STATE(4905)] = 269786, + [SMALL_STATE(4906)] = 269820, + [SMALL_STATE(4907)] = 269854, + [SMALL_STATE(4908)] = 269888, + [SMALL_STATE(4909)] = 269922, + [SMALL_STATE(4910)] = 269956, + [SMALL_STATE(4911)] = 269990, + [SMALL_STATE(4912)] = 270040, + [SMALL_STATE(4913)] = 270080, + [SMALL_STATE(4914)] = 270124, + [SMALL_STATE(4915)] = 270158, + [SMALL_STATE(4916)] = 270198, + [SMALL_STATE(4917)] = 270238, + [SMALL_STATE(4918)] = 270278, + [SMALL_STATE(4919)] = 270318, + [SMALL_STATE(4920)] = 270358, + [SMALL_STATE(4921)] = 270398, + [SMALL_STATE(4922)] = 270438, + [SMALL_STATE(4923)] = 270478, + [SMALL_STATE(4924)] = 270512, + [SMALL_STATE(4925)] = 270552, + [SMALL_STATE(4926)] = 270592, + [SMALL_STATE(4927)] = 270626, + [SMALL_STATE(4928)] = 270678, + [SMALL_STATE(4929)] = 270712, + [SMALL_STATE(4930)] = 270752, + [SMALL_STATE(4931)] = 270792, + [SMALL_STATE(4932)] = 270836, + [SMALL_STATE(4933)] = 270870, + [SMALL_STATE(4934)] = 270904, + [SMALL_STATE(4935)] = 270948, + [SMALL_STATE(4936)] = 270992, + [SMALL_STATE(4937)] = 271036, + [SMALL_STATE(4938)] = 271070, + [SMALL_STATE(4939)] = 271122, + [SMALL_STATE(4940)] = 271156, + [SMALL_STATE(4941)] = 271190, + [SMALL_STATE(4942)] = 271224, + [SMALL_STATE(4943)] = 271258, + [SMALL_STATE(4944)] = 271298, + [SMALL_STATE(4945)] = 271338, + [SMALL_STATE(4946)] = 271378, + [SMALL_STATE(4947)] = 271418, + [SMALL_STATE(4948)] = 271458, + [SMALL_STATE(4949)] = 271498, + [SMALL_STATE(4950)] = 271538, + [SMALL_STATE(4951)] = 271578, + [SMALL_STATE(4952)] = 271612, + [SMALL_STATE(4953)] = 271652, + [SMALL_STATE(4954)] = 271692, + [SMALL_STATE(4955)] = 271726, + [SMALL_STATE(4956)] = 271760, + [SMALL_STATE(4957)] = 271794, + [SMALL_STATE(4958)] = 271828, + [SMALL_STATE(4959)] = 271868, + [SMALL_STATE(4960)] = 271902, + [SMALL_STATE(4961)] = 271936, + [SMALL_STATE(4962)] = 271970, + [SMALL_STATE(4963)] = 272004, + [SMALL_STATE(4964)] = 272038, + [SMALL_STATE(4965)] = 272078, + [SMALL_STATE(4966)] = 272112, + [SMALL_STATE(4967)] = 272152, + [SMALL_STATE(4968)] = 272192, + [SMALL_STATE(4969)] = 272226, + [SMALL_STATE(4970)] = 272266, + [SMALL_STATE(4971)] = 272306, + [SMALL_STATE(4972)] = 272346, + [SMALL_STATE(4973)] = 272386, + [SMALL_STATE(4974)] = 272426, + [SMALL_STATE(4975)] = 272466, + [SMALL_STATE(4976)] = 272506, + [SMALL_STATE(4977)] = 272546, + [SMALL_STATE(4978)] = 272580, + [SMALL_STATE(4979)] = 272614, + [SMALL_STATE(4980)] = 272652, + [SMALL_STATE(4981)] = 272686, + [SMALL_STATE(4982)] = 272720, + [SMALL_STATE(4983)] = 272753, + [SMALL_STATE(4984)] = 272786, + [SMALL_STATE(4985)] = 272851, + [SMALL_STATE(4986)] = 272884, + [SMALL_STATE(4987)] = 272919, + [SMALL_STATE(4988)] = 272962, + [SMALL_STATE(4989)] = 272995, + [SMALL_STATE(4990)] = 273028, + [SMALL_STATE(4991)] = 273065, + [SMALL_STATE(4992)] = 273130, + [SMALL_STATE(4993)] = 273163, + [SMALL_STATE(4994)] = 273196, + [SMALL_STATE(4995)] = 273243, + [SMALL_STATE(4996)] = 273280, + [SMALL_STATE(4997)] = 273317, + [SMALL_STATE(4998)] = 273366, + [SMALL_STATE(4999)] = 273415, + [SMALL_STATE(5000)] = 273448, + [SMALL_STATE(5001)] = 273481, + [SMALL_STATE(5002)] = 273518, + [SMALL_STATE(5003)] = 273567, + [SMALL_STATE(5004)] = 273610, + [SMALL_STATE(5005)] = 273647, + [SMALL_STATE(5006)] = 273684, + [SMALL_STATE(5007)] = 273727, + [SMALL_STATE(5008)] = 273760, + [SMALL_STATE(5009)] = 273809, + [SMALL_STATE(5010)] = 273842, + [SMALL_STATE(5011)] = 273879, + [SMALL_STATE(5012)] = 273914, + [SMALL_STATE(5013)] = 273957, + [SMALL_STATE(5014)] = 274022, + [SMALL_STATE(5015)] = 274055, + [SMALL_STATE(5016)] = 274098, + [SMALL_STATE(5017)] = 274147, + [SMALL_STATE(5018)] = 274190, + [SMALL_STATE(5019)] = 274223, + [SMALL_STATE(5020)] = 274262, + [SMALL_STATE(5021)] = 274295, + [SMALL_STATE(5022)] = 274328, + [SMALL_STATE(5023)] = 274367, + [SMALL_STATE(5024)] = 274400, + [SMALL_STATE(5025)] = 274433, + [SMALL_STATE(5026)] = 274466, + [SMALL_STATE(5027)] = 274499, + [SMALL_STATE(5028)] = 274548, + [SMALL_STATE(5029)] = 274581, + [SMALL_STATE(5030)] = 274614, + [SMALL_STATE(5031)] = 274647, + [SMALL_STATE(5032)] = 274684, + [SMALL_STATE(5033)] = 274717, + [SMALL_STATE(5034)] = 274750, + [SMALL_STATE(5035)] = 274783, + [SMALL_STATE(5036)] = 274816, + [SMALL_STATE(5037)] = 274849, + [SMALL_STATE(5038)] = 274882, + [SMALL_STATE(5039)] = 274931, + [SMALL_STATE(5040)] = 274964, + [SMALL_STATE(5041)] = 274997, + [SMALL_STATE(5042)] = 275030, + [SMALL_STATE(5043)] = 275069, + [SMALL_STATE(5044)] = 275108, + [SMALL_STATE(5045)] = 275141, + [SMALL_STATE(5046)] = 275184, + [SMALL_STATE(5047)] = 275223, + [SMALL_STATE(5048)] = 275262, + [SMALL_STATE(5049)] = 275295, + [SMALL_STATE(5050)] = 275328, + [SMALL_STATE(5051)] = 275361, + [SMALL_STATE(5052)] = 275398, + [SMALL_STATE(5053)] = 275431, + [SMALL_STATE(5054)] = 275464, + [SMALL_STATE(5055)] = 275497, + [SMALL_STATE(5056)] = 275530, + [SMALL_STATE(5057)] = 275573, + [SMALL_STATE(5058)] = 275622, + [SMALL_STATE(5059)] = 275661, + [SMALL_STATE(5060)] = 275694, + [SMALL_STATE(5061)] = 275733, + [SMALL_STATE(5062)] = 275770, + [SMALL_STATE(5063)] = 275805, + [SMALL_STATE(5064)] = 275844, + [SMALL_STATE(5065)] = 275887, + [SMALL_STATE(5066)] = 275920, + [SMALL_STATE(5067)] = 275959, + [SMALL_STATE(5068)] = 275998, + [SMALL_STATE(5069)] = 276031, + [SMALL_STATE(5070)] = 276074, + [SMALL_STATE(5071)] = 276117, + [SMALL_STATE(5072)] = 276160, + [SMALL_STATE(5073)] = 276199, + [SMALL_STATE(5074)] = 276242, + [SMALL_STATE(5075)] = 276281, + [SMALL_STATE(5076)] = 276314, + [SMALL_STATE(5077)] = 276353, + [SMALL_STATE(5078)] = 276392, + [SMALL_STATE(5079)] = 276425, + [SMALL_STATE(5080)] = 276458, + [SMALL_STATE(5081)] = 276491, + [SMALL_STATE(5082)] = 276530, + [SMALL_STATE(5083)] = 276563, + [SMALL_STATE(5084)] = 276596, + [SMALL_STATE(5085)] = 276629, + [SMALL_STATE(5086)] = 276678, + [SMALL_STATE(5087)] = 276717, + [SMALL_STATE(5088)] = 276756, + [SMALL_STATE(5089)] = 276795, + [SMALL_STATE(5090)] = 276828, + [SMALL_STATE(5091)] = 276871, + [SMALL_STATE(5092)] = 276908, + [SMALL_STATE(5093)] = 276941, + [SMALL_STATE(5094)] = 276990, + [SMALL_STATE(5095)] = 277023, + [SMALL_STATE(5096)] = 277056, + [SMALL_STATE(5097)] = 277105, + [SMALL_STATE(5098)] = 277138, + [SMALL_STATE(5099)] = 277203, + [SMALL_STATE(5100)] = 277242, + [SMALL_STATE(5101)] = 277275, + [SMALL_STATE(5102)] = 277308, + [SMALL_STATE(5103)] = 277351, + [SMALL_STATE(5104)] = 277384, + [SMALL_STATE(5105)] = 277417, + [SMALL_STATE(5106)] = 277450, + [SMALL_STATE(5107)] = 277499, + [SMALL_STATE(5108)] = 277532, + [SMALL_STATE(5109)] = 277565, + [SMALL_STATE(5110)] = 277598, + [SMALL_STATE(5111)] = 277631, + [SMALL_STATE(5112)] = 277664, + [SMALL_STATE(5113)] = 277697, + [SMALL_STATE(5114)] = 277746, + [SMALL_STATE(5115)] = 277779, + [SMALL_STATE(5116)] = 277812, + [SMALL_STATE(5117)] = 277849, + [SMALL_STATE(5118)] = 277882, + [SMALL_STATE(5119)] = 277915, + [SMALL_STATE(5120)] = 277958, + [SMALL_STATE(5121)] = 278007, + [SMALL_STATE(5122)] = 278040, + [SMALL_STATE(5123)] = 278073, + [SMALL_STATE(5124)] = 278106, + [SMALL_STATE(5125)] = 278155, + [SMALL_STATE(5126)] = 278188, + [SMALL_STATE(5127)] = 278221, + [SMALL_STATE(5128)] = 278254, + [SMALL_STATE(5129)] = 278303, + [SMALL_STATE(5130)] = 278342, + [SMALL_STATE(5131)] = 278381, + [SMALL_STATE(5132)] = 278418, + [SMALL_STATE(5133)] = 278483, + [SMALL_STATE(5134)] = 278516, + [SMALL_STATE(5135)] = 278565, + [SMALL_STATE(5136)] = 278598, + [SMALL_STATE(5137)] = 278647, + [SMALL_STATE(5138)] = 278680, + [SMALL_STATE(5139)] = 278717, + [SMALL_STATE(5140)] = 278754, + [SMALL_STATE(5141)] = 278803, + [SMALL_STATE(5142)] = 278836, + [SMALL_STATE(5143)] = 278869, + [SMALL_STATE(5144)] = 278902, + [SMALL_STATE(5145)] = 278935, + [SMALL_STATE(5146)] = 279000, + [SMALL_STATE(5147)] = 279049, + [SMALL_STATE(5148)] = 279098, + [SMALL_STATE(5149)] = 279131, + [SMALL_STATE(5150)] = 279164, + [SMALL_STATE(5151)] = 279197, + [SMALL_STATE(5152)] = 279262, + [SMALL_STATE(5153)] = 279311, + [SMALL_STATE(5154)] = 279360, + [SMALL_STATE(5155)] = 279393, + [SMALL_STATE(5156)] = 279436, + [SMALL_STATE(5157)] = 279473, + [SMALL_STATE(5158)] = 279506, + [SMALL_STATE(5159)] = 279539, + [SMALL_STATE(5160)] = 279572, + [SMALL_STATE(5161)] = 279611, + [SMALL_STATE(5162)] = 279650, + [SMALL_STATE(5163)] = 279689, + [SMALL_STATE(5164)] = 279728, + [SMALL_STATE(5165)] = 279767, + [SMALL_STATE(5166)] = 279806, + [SMALL_STATE(5167)] = 279845, + [SMALL_STATE(5168)] = 279884, + [SMALL_STATE(5169)] = 279917, + [SMALL_STATE(5170)] = 279950, + [SMALL_STATE(5171)] = 279993, + [SMALL_STATE(5172)] = 280042, + [SMALL_STATE(5173)] = 280075, + [SMALL_STATE(5174)] = 280108, + [SMALL_STATE(5175)] = 280147, + [SMALL_STATE(5176)] = 280186, + [SMALL_STATE(5177)] = 280219, + [SMALL_STATE(5178)] = 280262, + [SMALL_STATE(5179)] = 280295, + [SMALL_STATE(5180)] = 280328, + [SMALL_STATE(5181)] = 280361, + [SMALL_STATE(5182)] = 280400, + [SMALL_STATE(5183)] = 280439, + [SMALL_STATE(5184)] = 280478, + [SMALL_STATE(5185)] = 280517, + [SMALL_STATE(5186)] = 280556, + [SMALL_STATE(5187)] = 280595, + [SMALL_STATE(5188)] = 280634, + [SMALL_STATE(5189)] = 280673, + [SMALL_STATE(5190)] = 280706, + [SMALL_STATE(5191)] = 280739, + [SMALL_STATE(5192)] = 280772, + [SMALL_STATE(5193)] = 280809, + [SMALL_STATE(5194)] = 280844, + [SMALL_STATE(5195)] = 280887, + [SMALL_STATE(5196)] = 280924, + [SMALL_STATE(5197)] = 280957, + [SMALL_STATE(5198)] = 280996, + [SMALL_STATE(5199)] = 281035, + [SMALL_STATE(5200)] = 281074, + [SMALL_STATE(5201)] = 281113, + [SMALL_STATE(5202)] = 281152, + [SMALL_STATE(5203)] = 281191, + [SMALL_STATE(5204)] = 281230, + [SMALL_STATE(5205)] = 281269, + [SMALL_STATE(5206)] = 281306, + [SMALL_STATE(5207)] = 281371, + [SMALL_STATE(5208)] = 281414, + [SMALL_STATE(5209)] = 281457, + [SMALL_STATE(5210)] = 281522, + [SMALL_STATE(5211)] = 281569, + [SMALL_STATE(5212)] = 281608, + [SMALL_STATE(5213)] = 281640, + [SMALL_STATE(5214)] = 281676, + [SMALL_STATE(5215)] = 281708, + [SMALL_STATE(5216)] = 281770, + [SMALL_STATE(5217)] = 281828, + [SMALL_STATE(5218)] = 281886, + [SMALL_STATE(5219)] = 281944, + [SMALL_STATE(5220)] = 282002, + [SMALL_STATE(5221)] = 282060, + [SMALL_STATE(5222)] = 282118, + [SMALL_STATE(5223)] = 282150, + [SMALL_STATE(5224)] = 282182, + [SMALL_STATE(5225)] = 282214, + [SMALL_STATE(5226)] = 282272, + [SMALL_STATE(5227)] = 282330, + [SMALL_STATE(5228)] = 282388, + [SMALL_STATE(5229)] = 282420, + [SMALL_STATE(5230)] = 282452, + [SMALL_STATE(5231)] = 282510, + [SMALL_STATE(5232)] = 282568, + [SMALL_STATE(5233)] = 282600, + [SMALL_STATE(5234)] = 282632, + [SMALL_STATE(5235)] = 282664, + [SMALL_STATE(5236)] = 282722, + [SMALL_STATE(5237)] = 282754, + [SMALL_STATE(5238)] = 282812, + [SMALL_STATE(5239)] = 282874, + [SMALL_STATE(5240)] = 282906, + [SMALL_STATE(5241)] = 282938, + [SMALL_STATE(5242)] = 282970, + [SMALL_STATE(5243)] = 283002, + [SMALL_STATE(5244)] = 283060, + [SMALL_STATE(5245)] = 283118, + [SMALL_STATE(5246)] = 283150, + [SMALL_STATE(5247)] = 283208, + [SMALL_STATE(5248)] = 283240, + [SMALL_STATE(5249)] = 283298, + [SMALL_STATE(5250)] = 283330, + [SMALL_STATE(5251)] = 283362, + [SMALL_STATE(5252)] = 283394, + [SMALL_STATE(5253)] = 283426, + [SMALL_STATE(5254)] = 283458, + [SMALL_STATE(5255)] = 283494, + [SMALL_STATE(5256)] = 283526, + [SMALL_STATE(5257)] = 283558, + [SMALL_STATE(5258)] = 283594, + [SMALL_STATE(5259)] = 283656, + [SMALL_STATE(5260)] = 283718, + [SMALL_STATE(5261)] = 283750, + [SMALL_STATE(5262)] = 283782, + [SMALL_STATE(5263)] = 283814, + [SMALL_STATE(5264)] = 283872, + [SMALL_STATE(5265)] = 283904, + [SMALL_STATE(5266)] = 283936, + [SMALL_STATE(5267)] = 283972, + [SMALL_STATE(5268)] = 284004, + [SMALL_STATE(5269)] = 284062, + [SMALL_STATE(5270)] = 284094, + [SMALL_STATE(5271)] = 284126, + [SMALL_STATE(5272)] = 284158, + [SMALL_STATE(5273)] = 284190, + [SMALL_STATE(5274)] = 284222, + [SMALL_STATE(5275)] = 284254, + [SMALL_STATE(5276)] = 284290, + [SMALL_STATE(5277)] = 284348, + [SMALL_STATE(5278)] = 284406, + [SMALL_STATE(5279)] = 284452, + [SMALL_STATE(5280)] = 284510, + [SMALL_STATE(5281)] = 284542, + [SMALL_STATE(5282)] = 284574, + [SMALL_STATE(5283)] = 284610, + [SMALL_STATE(5284)] = 284668, + [SMALL_STATE(5285)] = 284726, + [SMALL_STATE(5286)] = 284758, + [SMALL_STATE(5287)] = 284790, + [SMALL_STATE(5288)] = 284822, + [SMALL_STATE(5289)] = 284854, + [SMALL_STATE(5290)] = 284886, + [SMALL_STATE(5291)] = 284944, + [SMALL_STATE(5292)] = 284976, + [SMALL_STATE(5293)] = 285008, + [SMALL_STATE(5294)] = 285066, + [SMALL_STATE(5295)] = 285098, + [SMALL_STATE(5296)] = 285130, + [SMALL_STATE(5297)] = 285188, + [SMALL_STATE(5298)] = 285220, + [SMALL_STATE(5299)] = 285252, + [SMALL_STATE(5300)] = 285284, + [SMALL_STATE(5301)] = 285342, + [SMALL_STATE(5302)] = 285400, + [SMALL_STATE(5303)] = 285458, + [SMALL_STATE(5304)] = 285516, + [SMALL_STATE(5305)] = 285574, + [SMALL_STATE(5306)] = 285606, + [SMALL_STATE(5307)] = 285664, + [SMALL_STATE(5308)] = 285722, + [SMALL_STATE(5309)] = 285780, + [SMALL_STATE(5310)] = 285838, + [SMALL_STATE(5311)] = 285896, + [SMALL_STATE(5312)] = 285954, + [SMALL_STATE(5313)] = 285986, + [SMALL_STATE(5314)] = 286018, + [SMALL_STATE(5315)] = 286050, + [SMALL_STATE(5316)] = 286108, + [SMALL_STATE(5317)] = 286166, + [SMALL_STATE(5318)] = 286198, + [SMALL_STATE(5319)] = 286260, + [SMALL_STATE(5320)] = 286292, + [SMALL_STATE(5321)] = 286354, + [SMALL_STATE(5322)] = 286412, + [SMALL_STATE(5323)] = 286444, + [SMALL_STATE(5324)] = 286490, + [SMALL_STATE(5325)] = 286548, + [SMALL_STATE(5326)] = 286606, + [SMALL_STATE(5327)] = 286638, + [SMALL_STATE(5328)] = 286696, + [SMALL_STATE(5329)] = 286754, + [SMALL_STATE(5330)] = 286786, + [SMALL_STATE(5331)] = 286818, + [SMALL_STATE(5332)] = 286876, + [SMALL_STATE(5333)] = 286908, + [SMALL_STATE(5334)] = 286970, + [SMALL_STATE(5335)] = 287028, + [SMALL_STATE(5336)] = 287060, + [SMALL_STATE(5337)] = 287092, + [SMALL_STATE(5338)] = 287138, + [SMALL_STATE(5339)] = 287196, + [SMALL_STATE(5340)] = 287254, + [SMALL_STATE(5341)] = 287312, + [SMALL_STATE(5342)] = 287370, + [SMALL_STATE(5343)] = 287402, + [SMALL_STATE(5344)] = 287434, + [SMALL_STATE(5345)] = 287492, + [SMALL_STATE(5346)] = 287528, + [SMALL_STATE(5347)] = 287560, + [SMALL_STATE(5348)] = 287618, + [SMALL_STATE(5349)] = 287650, + [SMALL_STATE(5350)] = 287686, + [SMALL_STATE(5351)] = 287744, + [SMALL_STATE(5352)] = 287802, + [SMALL_STATE(5353)] = 287860, + [SMALL_STATE(5354)] = 287892, + [SMALL_STATE(5355)] = 287938, + [SMALL_STATE(5356)] = 287970, + [SMALL_STATE(5357)] = 288002, + [SMALL_STATE(5358)] = 288060, + [SMALL_STATE(5359)] = 288092, + [SMALL_STATE(5360)] = 288150, + [SMALL_STATE(5361)] = 288182, + [SMALL_STATE(5362)] = 288214, + [SMALL_STATE(5363)] = 288272, + [SMALL_STATE(5364)] = 288330, + [SMALL_STATE(5365)] = 288388, + [SMALL_STATE(5366)] = 288446, + [SMALL_STATE(5367)] = 288504, + [SMALL_STATE(5368)] = 288536, + [SMALL_STATE(5369)] = 288568, + [SMALL_STATE(5370)] = 288600, + [SMALL_STATE(5371)] = 288658, + [SMALL_STATE(5372)] = 288690, + [SMALL_STATE(5373)] = 288748, + [SMALL_STATE(5374)] = 288780, + [SMALL_STATE(5375)] = 288838, + [SMALL_STATE(5376)] = 288870, + [SMALL_STATE(5377)] = 288912, + [SMALL_STATE(5378)] = 288944, + [SMALL_STATE(5379)] = 288986, + [SMALL_STATE(5380)] = 289018, + [SMALL_STATE(5381)] = 289054, + [SMALL_STATE(5382)] = 289086, + [SMALL_STATE(5383)] = 289118, + [SMALL_STATE(5384)] = 289152, + [SMALL_STATE(5385)] = 289210, + [SMALL_STATE(5386)] = 289252, + [SMALL_STATE(5387)] = 289294, + [SMALL_STATE(5388)] = 289336, + [SMALL_STATE(5389)] = 289394, + [SMALL_STATE(5390)] = 289426, + [SMALL_STATE(5391)] = 289488, + [SMALL_STATE(5392)] = 289534, + [SMALL_STATE(5393)] = 289592, + [SMALL_STATE(5394)] = 289624, + [SMALL_STATE(5395)] = 289682, + [SMALL_STATE(5396)] = 289714, + [SMALL_STATE(5397)] = 289746, + [SMALL_STATE(5398)] = 289778, + [SMALL_STATE(5399)] = 289836, + [SMALL_STATE(5400)] = 289868, + [SMALL_STATE(5401)] = 289926, + [SMALL_STATE(5402)] = 289972, + [SMALL_STATE(5403)] = 290030, + [SMALL_STATE(5404)] = 290062, + [SMALL_STATE(5405)] = 290120, + [SMALL_STATE(5406)] = 290178, + [SMALL_STATE(5407)] = 290210, + [SMALL_STATE(5408)] = 290268, + [SMALL_STATE(5409)] = 290330, + [SMALL_STATE(5410)] = 290362, + [SMALL_STATE(5411)] = 290394, + [SMALL_STATE(5412)] = 290452, + [SMALL_STATE(5413)] = 290484, + [SMALL_STATE(5414)] = 290516, + [SMALL_STATE(5415)] = 290574, + [SMALL_STATE(5416)] = 290632, + [SMALL_STATE(5417)] = 290664, + [SMALL_STATE(5418)] = 290696, + [SMALL_STATE(5419)] = 290754, + [SMALL_STATE(5420)] = 290800, + [SMALL_STATE(5421)] = 290832, + [SMALL_STATE(5422)] = 290890, + [SMALL_STATE(5423)] = 290948, + [SMALL_STATE(5424)] = 290980, + [SMALL_STATE(5425)] = 291038, + [SMALL_STATE(5426)] = 291096, + [SMALL_STATE(5427)] = 291128, + [SMALL_STATE(5428)] = 291159, + [SMALL_STATE(5429)] = 291190, + [SMALL_STATE(5430)] = 291221, + [SMALL_STATE(5431)] = 291266, + [SMALL_STATE(5432)] = 291311, + [SMALL_STATE(5433)] = 291348, + [SMALL_STATE(5434)] = 291385, + [SMALL_STATE(5435)] = 291416, + [SMALL_STATE(5436)] = 291447, + [SMALL_STATE(5437)] = 291492, + [SMALL_STATE(5438)] = 291527, + [SMALL_STATE(5439)] = 291558, + [SMALL_STATE(5440)] = 291603, + [SMALL_STATE(5441)] = 291634, + [SMALL_STATE(5442)] = 291665, + [SMALL_STATE(5443)] = 291700, + [SMALL_STATE(5444)] = 291731, + [SMALL_STATE(5445)] = 291762, + [SMALL_STATE(5446)] = 291809, + [SMALL_STATE(5447)] = 291840, + [SMALL_STATE(5448)] = 291871, + [SMALL_STATE(5449)] = 291902, + [SMALL_STATE(5450)] = 291933, + [SMALL_STATE(5451)] = 291964, + [SMALL_STATE(5452)] = 292009, + [SMALL_STATE(5453)] = 292040, + [SMALL_STATE(5454)] = 292075, + [SMALL_STATE(5455)] = 292120, + [SMALL_STATE(5456)] = 292165, + [SMALL_STATE(5457)] = 292196, + [SMALL_STATE(5458)] = 292227, + [SMALL_STATE(5459)] = 292262, + [SMALL_STATE(5460)] = 292293, + [SMALL_STATE(5461)] = 292324, + [SMALL_STATE(5462)] = 292369, + [SMALL_STATE(5463)] = 292400, + [SMALL_STATE(5464)] = 292431, + [SMALL_STATE(5465)] = 292462, + [SMALL_STATE(5466)] = 292507, + [SMALL_STATE(5467)] = 292538, + [SMALL_STATE(5468)] = 292569, + [SMALL_STATE(5469)] = 292600, + [SMALL_STATE(5470)] = 292635, + [SMALL_STATE(5471)] = 292670, + [SMALL_STATE(5472)] = 292701, + [SMALL_STATE(5473)] = 292738, + [SMALL_STATE(5474)] = 292783, + [SMALL_STATE(5475)] = 292814, + [SMALL_STATE(5476)] = 292859, + [SMALL_STATE(5477)] = 292894, + [SMALL_STATE(5478)] = 292939, + [SMALL_STATE(5479)] = 292984, + [SMALL_STATE(5480)] = 293029, + [SMALL_STATE(5481)] = 293060, + [SMALL_STATE(5482)] = 293105, + [SMALL_STATE(5483)] = 293136, + [SMALL_STATE(5484)] = 293171, + [SMALL_STATE(5485)] = 293202, + [SMALL_STATE(5486)] = 293247, + [SMALL_STATE(5487)] = 293292, + [SMALL_STATE(5488)] = 293337, + [SMALL_STATE(5489)] = 293368, + [SMALL_STATE(5490)] = 293399, + [SMALL_STATE(5491)] = 293444, + [SMALL_STATE(5492)] = 293475, + [SMALL_STATE(5493)] = 293506, + [SMALL_STATE(5494)] = 293551, + [SMALL_STATE(5495)] = 293596, + [SMALL_STATE(5496)] = 293627, + [SMALL_STATE(5497)] = 293658, + [SMALL_STATE(5498)] = 293689, + [SMALL_STATE(5499)] = 293720, + [SMALL_STATE(5500)] = 293751, + [SMALL_STATE(5501)] = 293782, + [SMALL_STATE(5502)] = 293813, + [SMALL_STATE(5503)] = 293844, + [SMALL_STATE(5504)] = 293875, + [SMALL_STATE(5505)] = 293906, + [SMALL_STATE(5506)] = 293937, + [SMALL_STATE(5507)] = 293982, + [SMALL_STATE(5508)] = 294013, + [SMALL_STATE(5509)] = 294044, + [SMALL_STATE(5510)] = 294089, + [SMALL_STATE(5511)] = 294120, + [SMALL_STATE(5512)] = 294151, + [SMALL_STATE(5513)] = 294182, + [SMALL_STATE(5514)] = 294213, + [SMALL_STATE(5515)] = 294248, + [SMALL_STATE(5516)] = 294279, + [SMALL_STATE(5517)] = 294310, + [SMALL_STATE(5518)] = 294341, + [SMALL_STATE(5519)] = 294388, + [SMALL_STATE(5520)] = 294423, + [SMALL_STATE(5521)] = 294454, + [SMALL_STATE(5522)] = 294485, + [SMALL_STATE(5523)] = 294530, + [SMALL_STATE(5524)] = 294565, + [SMALL_STATE(5525)] = 294604, + [SMALL_STATE(5526)] = 294635, + [SMALL_STATE(5527)] = 294691, + [SMALL_STATE(5528)] = 294727, + [SMALL_STATE(5529)] = 294761, + [SMALL_STATE(5530)] = 294797, + [SMALL_STATE(5531)] = 294853, + [SMALL_STATE(5532)] = 294909, + [SMALL_STATE(5533)] = 294943, + [SMALL_STATE(5534)] = 294977, + [SMALL_STATE(5535)] = 295019, + [SMALL_STATE(5536)] = 295075, + [SMALL_STATE(5537)] = 295131, + [SMALL_STATE(5538)] = 295187, + [SMALL_STATE(5539)] = 295243, + [SMALL_STATE(5540)] = 295299, + [SMALL_STATE(5541)] = 295355, + [SMALL_STATE(5542)] = 295389, + [SMALL_STATE(5543)] = 295423, + [SMALL_STATE(5544)] = 295479, + [SMALL_STATE(5545)] = 295535, + [SMALL_STATE(5546)] = 295569, + [SMALL_STATE(5547)] = 295625, + [SMALL_STATE(5548)] = 295661, + [SMALL_STATE(5549)] = 295717, + [SMALL_STATE(5550)] = 295759, + [SMALL_STATE(5551)] = 295815, + [SMALL_STATE(5552)] = 295851, + [SMALL_STATE(5553)] = 295907, + [SMALL_STATE(5554)] = 295963, + [SMALL_STATE(5555)] = 295999, + [SMALL_STATE(5556)] = 296039, + [SMALL_STATE(5557)] = 296073, + [SMALL_STATE(5558)] = 296107, + [SMALL_STATE(5559)] = 296141, + [SMALL_STATE(5560)] = 296197, + [SMALL_STATE(5561)] = 296233, + [SMALL_STATE(5562)] = 296269, + [SMALL_STATE(5563)] = 296305, + [SMALL_STATE(5564)] = 296341, + [SMALL_STATE(5565)] = 296377, + [SMALL_STATE(5566)] = 296419, + [SMALL_STATE(5567)] = 296453, + [SMALL_STATE(5568)] = 296487, + [SMALL_STATE(5569)] = 296543, + [SMALL_STATE(5570)] = 296579, + [SMALL_STATE(5571)] = 296613, + [SMALL_STATE(5572)] = 296647, + [SMALL_STATE(5573)] = 296703, + [SMALL_STATE(5574)] = 296759, + [SMALL_STATE(5575)] = 296815, + [SMALL_STATE(5576)] = 296871, + [SMALL_STATE(5577)] = 296927, + [SMALL_STATE(5578)] = 296963, + [SMALL_STATE(5579)] = 297019, + [SMALL_STATE(5580)] = 297053, + [SMALL_STATE(5581)] = 297109, + [SMALL_STATE(5582)] = 297143, + [SMALL_STATE(5583)] = 297199, + [SMALL_STATE(5584)] = 297241, + [SMALL_STATE(5585)] = 297297, + [SMALL_STATE(5586)] = 297353, + [SMALL_STATE(5587)] = 297409, + [SMALL_STATE(5588)] = 297443, + [SMALL_STATE(5589)] = 297479, + [SMALL_STATE(5590)] = 297515, + [SMALL_STATE(5591)] = 297571, + [SMALL_STATE(5592)] = 297627, + [SMALL_STATE(5593)] = 297683, + [SMALL_STATE(5594)] = 297739, + [SMALL_STATE(5595)] = 297773, + [SMALL_STATE(5596)] = 297809, + [SMALL_STATE(5597)] = 297865, + [SMALL_STATE(5598)] = 297921, + [SMALL_STATE(5599)] = 297977, + [SMALL_STATE(5600)] = 298019, + [SMALL_STATE(5601)] = 298061, + [SMALL_STATE(5602)] = 298117, + [SMALL_STATE(5603)] = 298147, + [SMALL_STATE(5604)] = 298181, + [SMALL_STATE(5605)] = 298217, + [SMALL_STATE(5606)] = 298253, + [SMALL_STATE(5607)] = 298309, + [SMALL_STATE(5608)] = 298365, + [SMALL_STATE(5609)] = 298405, + [SMALL_STATE(5610)] = 298445, + [SMALL_STATE(5611)] = 298495, + [SMALL_STATE(5612)] = 298531, + [SMALL_STATE(5613)] = 298567, + [SMALL_STATE(5614)] = 298603, + [SMALL_STATE(5615)] = 298639, + [SMALL_STATE(5616)] = 298675, + [SMALL_STATE(5617)] = 298711, + [SMALL_STATE(5618)] = 298747, + [SMALL_STATE(5619)] = 298783, + [SMALL_STATE(5620)] = 298819, + [SMALL_STATE(5621)] = 298855, + [SMALL_STATE(5622)] = 298909, + [SMALL_STATE(5623)] = 298938, + [SMALL_STATE(5624)] = 298979, + [SMALL_STATE(5625)] = 299010, + [SMALL_STATE(5626)] = 299039, + [SMALL_STATE(5627)] = 299086, + [SMALL_STATE(5628)] = 299121, + [SMALL_STATE(5629)] = 299162, + [SMALL_STATE(5630)] = 299197, + [SMALL_STATE(5631)] = 299228, + [SMALL_STATE(5632)] = 299259, + [SMALL_STATE(5633)] = 299292, + [SMALL_STATE(5634)] = 299323, + [SMALL_STATE(5635)] = 299356, + [SMALL_STATE(5636)] = 299389, + [SMALL_STATE(5637)] = 299436, + [SMALL_STATE(5638)] = 299467, + [SMALL_STATE(5639)] = 299510, + [SMALL_STATE(5640)] = 299539, + [SMALL_STATE(5641)] = 299572, + [SMALL_STATE(5642)] = 299601, + [SMALL_STATE(5643)] = 299630, + [SMALL_STATE(5644)] = 299665, + [SMALL_STATE(5645)] = 299698, + [SMALL_STATE(5646)] = 299733, + [SMALL_STATE(5647)] = 299762, + [SMALL_STATE(5648)] = 299801, + [SMALL_STATE(5649)] = 299830, + [SMALL_STATE(5650)] = 299859, + [SMALL_STATE(5651)] = 299888, + [SMALL_STATE(5652)] = 299917, + [SMALL_STATE(5653)] = 299946, + [SMALL_STATE(5654)] = 299975, + [SMALL_STATE(5655)] = 300004, + [SMALL_STATE(5656)] = 300033, + [SMALL_STATE(5657)] = 300062, + [SMALL_STATE(5658)] = 300093, + [SMALL_STATE(5659)] = 300140, + [SMALL_STATE(5660)] = 300169, + [SMALL_STATE(5661)] = 300198, + [SMALL_STATE(5662)] = 300227, + [SMALL_STATE(5663)] = 300256, + [SMALL_STATE(5664)] = 300285, + [SMALL_STATE(5665)] = 300320, + [SMALL_STATE(5666)] = 300351, + [SMALL_STATE(5667)] = 300380, + [SMALL_STATE(5668)] = 300421, + [SMALL_STATE(5669)] = 300456, + [SMALL_STATE(5670)] = 300487, + [SMALL_STATE(5671)] = 300522, + [SMALL_STATE(5672)] = 300557, + [SMALL_STATE(5673)] = 300590, + [SMALL_STATE(5674)] = 300621, + [SMALL_STATE(5675)] = 300654, + [SMALL_STATE(5676)] = 300687, + [SMALL_STATE(5677)] = 300722, + [SMALL_STATE(5678)] = 300757, + [SMALL_STATE(5679)] = 300804, + [SMALL_STATE(5680)] = 300835, + [SMALL_STATE(5681)] = 300866, + [SMALL_STATE(5682)] = 300909, + [SMALL_STATE(5683)] = 300940, + [SMALL_STATE(5684)] = 300973, + [SMALL_STATE(5685)] = 301004, + [SMALL_STATE(5686)] = 301035, + [SMALL_STATE(5687)] = 301064, + [SMALL_STATE(5688)] = 301093, + [SMALL_STATE(5689)] = 301122, + [SMALL_STATE(5690)] = 301169, + [SMALL_STATE(5691)] = 301198, + [SMALL_STATE(5692)] = 301229, + [SMALL_STATE(5693)] = 301270, + [SMALL_STATE(5694)] = 301299, + [SMALL_STATE(5695)] = 301330, + [SMALL_STATE(5696)] = 301363, + [SMALL_STATE(5697)] = 301396, + [SMALL_STATE(5698)] = 301429, + [SMALL_STATE(5699)] = 301462, + [SMALL_STATE(5700)] = 301495, + [SMALL_STATE(5701)] = 301528, + [SMALL_STATE(5702)] = 301559, + [SMALL_STATE(5703)] = 301592, + [SMALL_STATE(5704)] = 301625, + [SMALL_STATE(5705)] = 301658, + [SMALL_STATE(5706)] = 301687, + [SMALL_STATE(5707)] = 301720, + [SMALL_STATE(5708)] = 301753, + [SMALL_STATE(5709)] = 301782, + [SMALL_STATE(5710)] = 301813, + [SMALL_STATE(5711)] = 301846, + [SMALL_STATE(5712)] = 301879, + [SMALL_STATE(5713)] = 301912, + [SMALL_STATE(5714)] = 301945, + [SMALL_STATE(5715)] = 301978, + [SMALL_STATE(5716)] = 302039, + [SMALL_STATE(5717)] = 302068, + [SMALL_STATE(5718)] = 302115, + [SMALL_STATE(5719)] = 302144, + [SMALL_STATE(5720)] = 302205, + [SMALL_STATE(5721)] = 302236, + [SMALL_STATE(5722)] = 302265, + [SMALL_STATE(5723)] = 302294, + [SMALL_STATE(5724)] = 302325, + [SMALL_STATE(5725)] = 302354, + [SMALL_STATE(5726)] = 302385, + [SMALL_STATE(5727)] = 302414, + [SMALL_STATE(5728)] = 302453, + [SMALL_STATE(5729)] = 302492, + [SMALL_STATE(5730)] = 302525, + [SMALL_STATE(5731)] = 302556, + [SMALL_STATE(5732)] = 302589, + [SMALL_STATE(5733)] = 302624, + [SMALL_STATE(5734)] = 302659, + [SMALL_STATE(5735)] = 302694, + [SMALL_STATE(5736)] = 302729, + [SMALL_STATE(5737)] = 302764, + [SMALL_STATE(5738)] = 302799, + [SMALL_STATE(5739)] = 302834, + [SMALL_STATE(5740)] = 302869, + [SMALL_STATE(5741)] = 302902, + [SMALL_STATE(5742)] = 302931, + [SMALL_STATE(5743)] = 302960, + [SMALL_STATE(5744)] = 302989, + [SMALL_STATE(5745)] = 303018, + [SMALL_STATE(5746)] = 303065, + [SMALL_STATE(5747)] = 303096, + [SMALL_STATE(5748)] = 303143, + [SMALL_STATE(5749)] = 303182, + [SMALL_STATE(5750)] = 303249, + [SMALL_STATE(5751)] = 303280, + [SMALL_STATE(5752)] = 303319, + [SMALL_STATE(5753)] = 303350, + [SMALL_STATE(5754)] = 303378, + [SMALL_STATE(5755)] = 303406, + [SMALL_STATE(5756)] = 303434, + [SMALL_STATE(5757)] = 303462, + [SMALL_STATE(5758)] = 303490, + [SMALL_STATE(5759)] = 303518, + [SMALL_STATE(5760)] = 303546, + [SMALL_STATE(5761)] = 303578, + [SMALL_STATE(5762)] = 303606, + [SMALL_STATE(5763)] = 303634, + [SMALL_STATE(5764)] = 303662, + [SMALL_STATE(5765)] = 303690, + [SMALL_STATE(5766)] = 303718, + [SMALL_STATE(5767)] = 303746, + [SMALL_STATE(5768)] = 303774, + [SMALL_STATE(5769)] = 303802, + [SMALL_STATE(5770)] = 303830, + [SMALL_STATE(5771)] = 303862, + [SMALL_STATE(5772)] = 303890, + [SMALL_STATE(5773)] = 303918, + [SMALL_STATE(5774)] = 303946, + [SMALL_STATE(5775)] = 303980, + [SMALL_STATE(5776)] = 304008, + [SMALL_STATE(5777)] = 304036, + [SMALL_STATE(5778)] = 304064, + [SMALL_STATE(5779)] = 304092, + [SMALL_STATE(5780)] = 304120, + [SMALL_STATE(5781)] = 304152, + [SMALL_STATE(5782)] = 304180, + [SMALL_STATE(5783)] = 304208, + [SMALL_STATE(5784)] = 304236, + [SMALL_STATE(5785)] = 304264, + [SMALL_STATE(5786)] = 304292, + [SMALL_STATE(5787)] = 304320, + [SMALL_STATE(5788)] = 304348, + [SMALL_STATE(5789)] = 304376, + [SMALL_STATE(5790)] = 304404, + [SMALL_STATE(5791)] = 304436, + [SMALL_STATE(5792)] = 304476, + [SMALL_STATE(5793)] = 304504, + [SMALL_STATE(5794)] = 304532, + [SMALL_STATE(5795)] = 304560, + [SMALL_STATE(5796)] = 304588, + [SMALL_STATE(5797)] = 304616, + [SMALL_STATE(5798)] = 304644, + [SMALL_STATE(5799)] = 304676, + [SMALL_STATE(5800)] = 304704, + [SMALL_STATE(5801)] = 304732, + [SMALL_STATE(5802)] = 304760, + [SMALL_STATE(5803)] = 304788, + [SMALL_STATE(5804)] = 304816, + [SMALL_STATE(5805)] = 304844, + [SMALL_STATE(5806)] = 304872, + [SMALL_STATE(5807)] = 304900, + [SMALL_STATE(5808)] = 304932, + [SMALL_STATE(5809)] = 304960, + [SMALL_STATE(5810)] = 304992, + [SMALL_STATE(5811)] = 305020, + [SMALL_STATE(5812)] = 305048, + [SMALL_STATE(5813)] = 305076, + [SMALL_STATE(5814)] = 305104, + [SMALL_STATE(5815)] = 305132, + [SMALL_STATE(5816)] = 305164, + [SMALL_STATE(5817)] = 305192, + [SMALL_STATE(5818)] = 305220, + [SMALL_STATE(5819)] = 305248, + [SMALL_STATE(5820)] = 305276, + [SMALL_STATE(5821)] = 305304, + [SMALL_STATE(5822)] = 305332, + [SMALL_STATE(5823)] = 305360, + [SMALL_STATE(5824)] = 305388, + [SMALL_STATE(5825)] = 305416, + [SMALL_STATE(5826)] = 305444, + [SMALL_STATE(5827)] = 305472, + [SMALL_STATE(5828)] = 305500, + [SMALL_STATE(5829)] = 305528, + [SMALL_STATE(5830)] = 305556, + [SMALL_STATE(5831)] = 305584, + [SMALL_STATE(5832)] = 305616, + [SMALL_STATE(5833)] = 305644, + [SMALL_STATE(5834)] = 305676, + [SMALL_STATE(5835)] = 305708, + [SMALL_STATE(5836)] = 305740, + [SMALL_STATE(5837)] = 305768, + [SMALL_STATE(5838)] = 305796, + [SMALL_STATE(5839)] = 305824, + [SMALL_STATE(5840)] = 305854, + [SMALL_STATE(5841)] = 305882, + [SMALL_STATE(5842)] = 305910, + [SMALL_STATE(5843)] = 305942, + [SMALL_STATE(5844)] = 305970, + [SMALL_STATE(5845)] = 305998, + [SMALL_STATE(5846)] = 306026, + [SMALL_STATE(5847)] = 306054, + [SMALL_STATE(5848)] = 306112, + [SMALL_STATE(5849)] = 306140, + [SMALL_STATE(5850)] = 306168, + [SMALL_STATE(5851)] = 306196, + [SMALL_STATE(5852)] = 306224, + [SMALL_STATE(5853)] = 306252, + [SMALL_STATE(5854)] = 306280, + [SMALL_STATE(5855)] = 306308, + [SMALL_STATE(5856)] = 306340, + [SMALL_STATE(5857)] = 306368, + [SMALL_STATE(5858)] = 306396, + [SMALL_STATE(5859)] = 306424, + [SMALL_STATE(5860)] = 306452, + [SMALL_STATE(5861)] = 306480, + [SMALL_STATE(5862)] = 306508, + [SMALL_STATE(5863)] = 306536, + [SMALL_STATE(5864)] = 306578, + [SMALL_STATE(5865)] = 306606, + [SMALL_STATE(5866)] = 306634, + [SMALL_STATE(5867)] = 306666, + [SMALL_STATE(5868)] = 306694, + [SMALL_STATE(5869)] = 306722, + [SMALL_STATE(5870)] = 306750, + [SMALL_STATE(5871)] = 306778, + [SMALL_STATE(5872)] = 306806, + [SMALL_STATE(5873)] = 306834, + [SMALL_STATE(5874)] = 306866, + [SMALL_STATE(5875)] = 306894, + [SMALL_STATE(5876)] = 306922, + [SMALL_STATE(5877)] = 306950, + [SMALL_STATE(5878)] = 306982, + [SMALL_STATE(5879)] = 307014, + [SMALL_STATE(5880)] = 307042, + [SMALL_STATE(5881)] = 307086, + [SMALL_STATE(5882)] = 307114, + [SMALL_STATE(5883)] = 307142, + [SMALL_STATE(5884)] = 307174, + [SMALL_STATE(5885)] = 307202, + [SMALL_STATE(5886)] = 307230, + [SMALL_STATE(5887)] = 307262, + [SMALL_STATE(5888)] = 307302, + [SMALL_STATE(5889)] = 307330, + [SMALL_STATE(5890)] = 307364, + [SMALL_STATE(5891)] = 307396, + [SMALL_STATE(5892)] = 307428, + [SMALL_STATE(5893)] = 307462, + [SMALL_STATE(5894)] = 307490, + [SMALL_STATE(5895)] = 307522, + [SMALL_STATE(5896)] = 307550, + [SMALL_STATE(5897)] = 307582, + [SMALL_STATE(5898)] = 307610, + [SMALL_STATE(5899)] = 307638, + [SMALL_STATE(5900)] = 307666, + [SMALL_STATE(5901)] = 307708, + [SMALL_STATE(5902)] = 307748, + [SMALL_STATE(5903)] = 307776, + [SMALL_STATE(5904)] = 307804, + [SMALL_STATE(5905)] = 307832, + [SMALL_STATE(5906)] = 307860, + [SMALL_STATE(5907)] = 307888, + [SMALL_STATE(5908)] = 307916, + [SMALL_STATE(5909)] = 307944, + [SMALL_STATE(5910)] = 307988, + [SMALL_STATE(5911)] = 308016, + [SMALL_STATE(5912)] = 308043, + [SMALL_STATE(5913)] = 308074, + [SMALL_STATE(5914)] = 308111, + [SMALL_STATE(5915)] = 308138, + [SMALL_STATE(5916)] = 308177, + [SMALL_STATE(5917)] = 308204, + [SMALL_STATE(5918)] = 308231, + [SMALL_STATE(5919)] = 308258, + [SMALL_STATE(5920)] = 308295, + [SMALL_STATE(5921)] = 308334, + [SMALL_STATE(5922)] = 308361, + [SMALL_STATE(5923)] = 308394, + [SMALL_STATE(5924)] = 308421, + [SMALL_STATE(5925)] = 308448, + [SMALL_STATE(5926)] = 308487, + [SMALL_STATE(5927)] = 308514, + [SMALL_STATE(5928)] = 308545, + [SMALL_STATE(5929)] = 308572, + [SMALL_STATE(5930)] = 308611, + [SMALL_STATE(5931)] = 308642, + [SMALL_STATE(5932)] = 308697, + [SMALL_STATE(5933)] = 308724, + [SMALL_STATE(5934)] = 308751, + [SMALL_STATE(5935)] = 308778, + [SMALL_STATE(5936)] = 308817, + [SMALL_STATE(5937)] = 308844, + [SMALL_STATE(5938)] = 308871, + [SMALL_STATE(5939)] = 308898, + [SMALL_STATE(5940)] = 308925, + [SMALL_STATE(5941)] = 308952, + [SMALL_STATE(5942)] = 308991, + [SMALL_STATE(5943)] = 309018, + [SMALL_STATE(5944)] = 309045, + [SMALL_STATE(5945)] = 309084, + [SMALL_STATE(5946)] = 309115, + [SMALL_STATE(5947)] = 309170, + [SMALL_STATE(5948)] = 309209, + [SMALL_STATE(5949)] = 309236, + [SMALL_STATE(5950)] = 309275, + [SMALL_STATE(5951)] = 309306, + [SMALL_STATE(5952)] = 309367, + [SMALL_STATE(5953)] = 309398, + [SMALL_STATE(5954)] = 309425, + [SMALL_STATE(5955)] = 309452, + [SMALL_STATE(5956)] = 309479, + [SMALL_STATE(5957)] = 309506, + [SMALL_STATE(5958)] = 309533, + [SMALL_STATE(5959)] = 309560, + [SMALL_STATE(5960)] = 309599, + [SMALL_STATE(5961)] = 309626, + [SMALL_STATE(5962)] = 309657, + [SMALL_STATE(5963)] = 309683, + [SMALL_STATE(5964)] = 309721, + [SMALL_STATE(5965)] = 309759, + [SMALL_STATE(5966)] = 309793, + [SMALL_STATE(5967)] = 309819, + [SMALL_STATE(5968)] = 309853, + [SMALL_STATE(5969)] = 309879, + [SMALL_STATE(5970)] = 309905, + [SMALL_STATE(5971)] = 309931, + [SMALL_STATE(5972)] = 309969, + [SMALL_STATE(5973)] = 309995, + [SMALL_STATE(5974)] = 310027, + [SMALL_STATE(5975)] = 310059, + [SMALL_STATE(5976)] = 310097, + [SMALL_STATE(5977)] = 310129, + [SMALL_STATE(5978)] = 310155, + [SMALL_STATE(5979)] = 310193, + [SMALL_STATE(5980)] = 310231, + [SMALL_STATE(5981)] = 310263, + [SMALL_STATE(5982)] = 310295, + [SMALL_STATE(5983)] = 310321, + [SMALL_STATE(5984)] = 310347, + [SMALL_STATE(5985)] = 310373, + [SMALL_STATE(5986)] = 310411, + [SMALL_STATE(5987)] = 310449, + [SMALL_STATE(5988)] = 310485, + [SMALL_STATE(5989)] = 310511, + [SMALL_STATE(5990)] = 310537, + [SMALL_STATE(5991)] = 310563, + [SMALL_STATE(5992)] = 310595, + [SMALL_STATE(5993)] = 310633, + [SMALL_STATE(5994)] = 310659, + [SMALL_STATE(5995)] = 310685, + [SMALL_STATE(5996)] = 310711, + [SMALL_STATE(5997)] = 310737, + [SMALL_STATE(5998)] = 310763, + [SMALL_STATE(5999)] = 310795, + [SMALL_STATE(6000)] = 310827, + [SMALL_STATE(6001)] = 310859, + [SMALL_STATE(6002)] = 310897, + [SMALL_STATE(6003)] = 310923, + [SMALL_STATE(6004)] = 310949, + [SMALL_STATE(6005)] = 310975, + [SMALL_STATE(6006)] = 311001, + [SMALL_STATE(6007)] = 311027, + [SMALL_STATE(6008)] = 311053, + [SMALL_STATE(6009)] = 311079, + [SMALL_STATE(6010)] = 311105, + [SMALL_STATE(6011)] = 311131, + [SMALL_STATE(6012)] = 311157, + [SMALL_STATE(6013)] = 311183, + [SMALL_STATE(6014)] = 311209, + [SMALL_STATE(6015)] = 311235, + [SMALL_STATE(6016)] = 311261, + [SMALL_STATE(6017)] = 311287, + [SMALL_STATE(6018)] = 311313, + [SMALL_STATE(6019)] = 311339, + [SMALL_STATE(6020)] = 311365, + [SMALL_STATE(6021)] = 311391, + [SMALL_STATE(6022)] = 311417, + [SMALL_STATE(6023)] = 311443, + [SMALL_STATE(6024)] = 311469, + [SMALL_STATE(6025)] = 311495, + [SMALL_STATE(6026)] = 311527, + [SMALL_STATE(6027)] = 311553, + [SMALL_STATE(6028)] = 311585, + [SMALL_STATE(6029)] = 311617, + [SMALL_STATE(6030)] = 311643, + [SMALL_STATE(6031)] = 311669, + [SMALL_STATE(6032)] = 311701, + [SMALL_STATE(6033)] = 311733, + [SMALL_STATE(6034)] = 311759, + [SMALL_STATE(6035)] = 311785, + [SMALL_STATE(6036)] = 311811, + [SMALL_STATE(6037)] = 311837, + [SMALL_STATE(6038)] = 311862, + [SMALL_STATE(6039)] = 311887, + [SMALL_STATE(6040)] = 311912, + [SMALL_STATE(6041)] = 311937, + [SMALL_STATE(6042)] = 311962, + [SMALL_STATE(6043)] = 311987, + [SMALL_STATE(6044)] = 312012, + [SMALL_STATE(6045)] = 312041, + [SMALL_STATE(6046)] = 312066, + [SMALL_STATE(6047)] = 312091, + [SMALL_STATE(6048)] = 312116, + [SMALL_STATE(6049)] = 312141, + [SMALL_STATE(6050)] = 312170, + [SMALL_STATE(6051)] = 312195, + [SMALL_STATE(6052)] = 312220, + [SMALL_STATE(6053)] = 312245, + [SMALL_STATE(6054)] = 312270, + [SMALL_STATE(6055)] = 312295, + [SMALL_STATE(6056)] = 312320, + [SMALL_STATE(6057)] = 312345, + [SMALL_STATE(6058)] = 312370, + [SMALL_STATE(6059)] = 312395, + [SMALL_STATE(6060)] = 312420, + [SMALL_STATE(6061)] = 312445, + [SMALL_STATE(6062)] = 312470, + [SMALL_STATE(6063)] = 312495, + [SMALL_STATE(6064)] = 312520, + [SMALL_STATE(6065)] = 312545, + [SMALL_STATE(6066)] = 312570, + [SMALL_STATE(6067)] = 312595, + [SMALL_STATE(6068)] = 312620, + [SMALL_STATE(6069)] = 312645, + [SMALL_STATE(6070)] = 312670, + [SMALL_STATE(6071)] = 312695, + [SMALL_STATE(6072)] = 312720, + [SMALL_STATE(6073)] = 312745, + [SMALL_STATE(6074)] = 312770, + [SMALL_STATE(6075)] = 312795, + [SMALL_STATE(6076)] = 312820, + [SMALL_STATE(6077)] = 312845, + [SMALL_STATE(6078)] = 312870, + [SMALL_STATE(6079)] = 312895, + [SMALL_STATE(6080)] = 312920, + [SMALL_STATE(6081)] = 312945, + [SMALL_STATE(6082)] = 312974, + [SMALL_STATE(6083)] = 312999, + [SMALL_STATE(6084)] = 313024, + [SMALL_STATE(6085)] = 313049, + [SMALL_STATE(6086)] = 313074, + [SMALL_STATE(6087)] = 313103, + [SMALL_STATE(6088)] = 313128, + [SMALL_STATE(6089)] = 313153, + [SMALL_STATE(6090)] = 313178, + [SMALL_STATE(6091)] = 313203, + [SMALL_STATE(6092)] = 313228, + [SMALL_STATE(6093)] = 313253, + [SMALL_STATE(6094)] = 313278, + [SMALL_STATE(6095)] = 313303, + [SMALL_STATE(6096)] = 313328, + [SMALL_STATE(6097)] = 313353, + [SMALL_STATE(6098)] = 313378, + [SMALL_STATE(6099)] = 313403, + [SMALL_STATE(6100)] = 313428, + [SMALL_STATE(6101)] = 313453, + [SMALL_STATE(6102)] = 313478, + [SMALL_STATE(6103)] = 313503, + [SMALL_STATE(6104)] = 313528, + [SMALL_STATE(6105)] = 313553, + [SMALL_STATE(6106)] = 313578, + [SMALL_STATE(6107)] = 313603, + [SMALL_STATE(6108)] = 313628, + [SMALL_STATE(6109)] = 313653, + [SMALL_STATE(6110)] = 313678, + [SMALL_STATE(6111)] = 313703, + [SMALL_STATE(6112)] = 313732, + [SMALL_STATE(6113)] = 313757, + [SMALL_STATE(6114)] = 313782, + [SMALL_STATE(6115)] = 313807, + [SMALL_STATE(6116)] = 313832, + [SMALL_STATE(6117)] = 313857, + [SMALL_STATE(6118)] = 313882, + [SMALL_STATE(6119)] = 313906, + [SMALL_STATE(6120)] = 313929, + [SMALL_STATE(6121)] = 313952, + [SMALL_STATE(6122)] = 313983, + [SMALL_STATE(6123)] = 314014, + [SMALL_STATE(6124)] = 314037, + [SMALL_STATE(6125)] = 314060, + [SMALL_STATE(6126)] = 314097, + [SMALL_STATE(6127)] = 314132, + [SMALL_STATE(6128)] = 314172, + [SMALL_STATE(6129)] = 314212, + [SMALL_STATE(6130)] = 314252, + [SMALL_STATE(6131)] = 314292, + [SMALL_STATE(6132)] = 314332, + [SMALL_STATE(6133)] = 314372, + [SMALL_STATE(6134)] = 314412, + [SMALL_STATE(6135)] = 314452, + [SMALL_STATE(6136)] = 314492, + [SMALL_STATE(6137)] = 314532, + [SMALL_STATE(6138)] = 314572, + [SMALL_STATE(6139)] = 314612, + [SMALL_STATE(6140)] = 314652, + [SMALL_STATE(6141)] = 314692, + [SMALL_STATE(6142)] = 314732, + [SMALL_STATE(6143)] = 314772, + [SMALL_STATE(6144)] = 314812, + [SMALL_STATE(6145)] = 314852, + [SMALL_STATE(6146)] = 314892, + [SMALL_STATE(6147)] = 314932, + [SMALL_STATE(6148)] = 314972, + [SMALL_STATE(6149)] = 315012, + [SMALL_STATE(6150)] = 315052, + [SMALL_STATE(6151)] = 315092, + [SMALL_STATE(6152)] = 315132, + [SMALL_STATE(6153)] = 315172, + [SMALL_STATE(6154)] = 315212, + [SMALL_STATE(6155)] = 315252, + [SMALL_STATE(6156)] = 315292, + [SMALL_STATE(6157)] = 315332, + [SMALL_STATE(6158)] = 315372, + [SMALL_STATE(6159)] = 315412, + [SMALL_STATE(6160)] = 315452, + [SMALL_STATE(6161)] = 315492, + [SMALL_STATE(6162)] = 315532, + [SMALL_STATE(6163)] = 315572, + [SMALL_STATE(6164)] = 315612, + [SMALL_STATE(6165)] = 315652, + [SMALL_STATE(6166)] = 315692, + [SMALL_STATE(6167)] = 315732, + [SMALL_STATE(6168)] = 315772, + [SMALL_STATE(6169)] = 315812, + [SMALL_STATE(6170)] = 315852, + [SMALL_STATE(6171)] = 315892, + [SMALL_STATE(6172)] = 315932, + [SMALL_STATE(6173)] = 315972, + [SMALL_STATE(6174)] = 316012, + [SMALL_STATE(6175)] = 316052, + [SMALL_STATE(6176)] = 316092, + [SMALL_STATE(6177)] = 316132, + [SMALL_STATE(6178)] = 316172, + [SMALL_STATE(6179)] = 316212, + [SMALL_STATE(6180)] = 316252, + [SMALL_STATE(6181)] = 316292, + [SMALL_STATE(6182)] = 316332, + [SMALL_STATE(6183)] = 316372, + [SMALL_STATE(6184)] = 316412, + [SMALL_STATE(6185)] = 316452, + [SMALL_STATE(6186)] = 316492, + [SMALL_STATE(6187)] = 316532, + [SMALL_STATE(6188)] = 316572, + [SMALL_STATE(6189)] = 316612, + [SMALL_STATE(6190)] = 316652, + [SMALL_STATE(6191)] = 316692, + [SMALL_STATE(6192)] = 316732, + [SMALL_STATE(6193)] = 316772, + [SMALL_STATE(6194)] = 316812, + [SMALL_STATE(6195)] = 316852, + [SMALL_STATE(6196)] = 316892, + [SMALL_STATE(6197)] = 316932, + [SMALL_STATE(6198)] = 316972, + [SMALL_STATE(6199)] = 317012, + [SMALL_STATE(6200)] = 317052, + [SMALL_STATE(6201)] = 317092, + [SMALL_STATE(6202)] = 317132, + [SMALL_STATE(6203)] = 317172, + [SMALL_STATE(6204)] = 317212, + [SMALL_STATE(6205)] = 317252, + [SMALL_STATE(6206)] = 317292, + [SMALL_STATE(6207)] = 317332, + [SMALL_STATE(6208)] = 317372, + [SMALL_STATE(6209)] = 317412, + [SMALL_STATE(6210)] = 317452, + [SMALL_STATE(6211)] = 317492, + [SMALL_STATE(6212)] = 317532, + [SMALL_STATE(6213)] = 317572, + [SMALL_STATE(6214)] = 317612, + [SMALL_STATE(6215)] = 317652, + [SMALL_STATE(6216)] = 317692, + [SMALL_STATE(6217)] = 317732, + [SMALL_STATE(6218)] = 317772, + [SMALL_STATE(6219)] = 317812, + [SMALL_STATE(6220)] = 317852, + [SMALL_STATE(6221)] = 317892, + [SMALL_STATE(6222)] = 317932, + [SMALL_STATE(6223)] = 317972, + [SMALL_STATE(6224)] = 318012, + [SMALL_STATE(6225)] = 318052, + [SMALL_STATE(6226)] = 318092, + [SMALL_STATE(6227)] = 318132, + [SMALL_STATE(6228)] = 318172, + [SMALL_STATE(6229)] = 318212, + [SMALL_STATE(6230)] = 318252, + [SMALL_STATE(6231)] = 318292, + [SMALL_STATE(6232)] = 318332, + [SMALL_STATE(6233)] = 318372, + [SMALL_STATE(6234)] = 318412, + [SMALL_STATE(6235)] = 318452, + [SMALL_STATE(6236)] = 318492, + [SMALL_STATE(6237)] = 318532, + [SMALL_STATE(6238)] = 318572, + [SMALL_STATE(6239)] = 318612, + [SMALL_STATE(6240)] = 318652, + [SMALL_STATE(6241)] = 318692, + [SMALL_STATE(6242)] = 318732, + [SMALL_STATE(6243)] = 318772, + [SMALL_STATE(6244)] = 318812, + [SMALL_STATE(6245)] = 318852, + [SMALL_STATE(6246)] = 318892, + [SMALL_STATE(6247)] = 318932, + [SMALL_STATE(6248)] = 318972, + [SMALL_STATE(6249)] = 319012, + [SMALL_STATE(6250)] = 319052, + [SMALL_STATE(6251)] = 319092, + [SMALL_STATE(6252)] = 319132, + [SMALL_STATE(6253)] = 319172, + [SMALL_STATE(6254)] = 319212, + [SMALL_STATE(6255)] = 319252, + [SMALL_STATE(6256)] = 319292, + [SMALL_STATE(6257)] = 319332, + [SMALL_STATE(6258)] = 319372, + [SMALL_STATE(6259)] = 319412, + [SMALL_STATE(6260)] = 319452, + [SMALL_STATE(6261)] = 319492, + [SMALL_STATE(6262)] = 319532, + [SMALL_STATE(6263)] = 319572, + [SMALL_STATE(6264)] = 319612, + [SMALL_STATE(6265)] = 319652, + [SMALL_STATE(6266)] = 319692, + [SMALL_STATE(6267)] = 319732, + [SMALL_STATE(6268)] = 319772, + [SMALL_STATE(6269)] = 319812, + [SMALL_STATE(6270)] = 319852, + [SMALL_STATE(6271)] = 319892, + [SMALL_STATE(6272)] = 319932, + [SMALL_STATE(6273)] = 319972, + [SMALL_STATE(6274)] = 320012, + [SMALL_STATE(6275)] = 320052, + [SMALL_STATE(6276)] = 320092, + [SMALL_STATE(6277)] = 320132, + [SMALL_STATE(6278)] = 320172, + [SMALL_STATE(6279)] = 320212, + [SMALL_STATE(6280)] = 320252, + [SMALL_STATE(6281)] = 320292, + [SMALL_STATE(6282)] = 320332, + [SMALL_STATE(6283)] = 320372, + [SMALL_STATE(6284)] = 320412, + [SMALL_STATE(6285)] = 320452, + [SMALL_STATE(6286)] = 320492, + [SMALL_STATE(6287)] = 320532, + [SMALL_STATE(6288)] = 320572, + [SMALL_STATE(6289)] = 320612, + [SMALL_STATE(6290)] = 320652, + [SMALL_STATE(6291)] = 320692, + [SMALL_STATE(6292)] = 320732, + [SMALL_STATE(6293)] = 320772, + [SMALL_STATE(6294)] = 320812, + [SMALL_STATE(6295)] = 320852, + [SMALL_STATE(6296)] = 320892, + [SMALL_STATE(6297)] = 320919, + [SMALL_STATE(6298)] = 320946, + [SMALL_STATE(6299)] = 320973, + [SMALL_STATE(6300)] = 321000, + [SMALL_STATE(6301)] = 321029, + [SMALL_STATE(6302)] = 321058, + [SMALL_STATE(6303)] = 321085, + [SMALL_STATE(6304)] = 321112, + [SMALL_STATE(6305)] = 321139, + [SMALL_STATE(6306)] = 321168, + [SMALL_STATE(6307)] = 321195, + [SMALL_STATE(6308)] = 321222, + [SMALL_STATE(6309)] = 321249, + [SMALL_STATE(6310)] = 321276, + [SMALL_STATE(6311)] = 321303, + [SMALL_STATE(6312)] = 321330, + [SMALL_STATE(6313)] = 321357, + [SMALL_STATE(6314)] = 321384, + [SMALL_STATE(6315)] = 321411, + [SMALL_STATE(6316)] = 321438, + [SMALL_STATE(6317)] = 321465, + [SMALL_STATE(6318)] = 321492, + [SMALL_STATE(6319)] = 321519, + [SMALL_STATE(6320)] = 321546, + [SMALL_STATE(6321)] = 321573, + [SMALL_STATE(6322)] = 321600, + [SMALL_STATE(6323)] = 321627, + [SMALL_STATE(6324)] = 321654, + [SMALL_STATE(6325)] = 321683, + [SMALL_STATE(6326)] = 321710, + [SMALL_STATE(6327)] = 321737, + [SMALL_STATE(6328)] = 321764, + [SMALL_STATE(6329)] = 321791, + [SMALL_STATE(6330)] = 321818, + [SMALL_STATE(6331)] = 321845, + [SMALL_STATE(6332)] = 321872, + [SMALL_STATE(6333)] = 321899, + [SMALL_STATE(6334)] = 321926, + [SMALL_STATE(6335)] = 321953, + [SMALL_STATE(6336)] = 321980, + [SMALL_STATE(6337)] = 322007, + [SMALL_STATE(6338)] = 322034, + [SMALL_STATE(6339)] = 322061, + [SMALL_STATE(6340)] = 322088, + [SMALL_STATE(6341)] = 322115, + [SMALL_STATE(6342)] = 322142, + [SMALL_STATE(6343)] = 322169, + [SMALL_STATE(6344)] = 322196, + [SMALL_STATE(6345)] = 322223, + [SMALL_STATE(6346)] = 322250, + [SMALL_STATE(6347)] = 322277, + [SMALL_STATE(6348)] = 322304, + [SMALL_STATE(6349)] = 322331, + [SMALL_STATE(6350)] = 322358, + [SMALL_STATE(6351)] = 322385, + [SMALL_STATE(6352)] = 322412, + [SMALL_STATE(6353)] = 322439, + [SMALL_STATE(6354)] = 322466, + [SMALL_STATE(6355)] = 322493, + [SMALL_STATE(6356)] = 322520, + [SMALL_STATE(6357)] = 322547, + [SMALL_STATE(6358)] = 322574, + [SMALL_STATE(6359)] = 322601, + [SMALL_STATE(6360)] = 322628, + [SMALL_STATE(6361)] = 322655, + [SMALL_STATE(6362)] = 322682, + [SMALL_STATE(6363)] = 322709, + [SMALL_STATE(6364)] = 322738, + [SMALL_STATE(6365)] = 322765, + [SMALL_STATE(6366)] = 322792, + [SMALL_STATE(6367)] = 322819, + [SMALL_STATE(6368)] = 322846, + [SMALL_STATE(6369)] = 322873, + [SMALL_STATE(6370)] = 322900, + [SMALL_STATE(6371)] = 322927, + [SMALL_STATE(6372)] = 322954, + [SMALL_STATE(6373)] = 322981, + [SMALL_STATE(6374)] = 323008, + [SMALL_STATE(6375)] = 323035, + [SMALL_STATE(6376)] = 323062, + [SMALL_STATE(6377)] = 323089, + [SMALL_STATE(6378)] = 323116, + [SMALL_STATE(6379)] = 323143, + [SMALL_STATE(6380)] = 323170, + [SMALL_STATE(6381)] = 323199, + [SMALL_STATE(6382)] = 323226, + [SMALL_STATE(6383)] = 323253, + [SMALL_STATE(6384)] = 323280, + [SMALL_STATE(6385)] = 323307, + [SMALL_STATE(6386)] = 323334, + [SMALL_STATE(6387)] = 323361, + [SMALL_STATE(6388)] = 323388, + [SMALL_STATE(6389)] = 323415, + [SMALL_STATE(6390)] = 323442, + [SMALL_STATE(6391)] = 323469, + [SMALL_STATE(6392)] = 323496, + [SMALL_STATE(6393)] = 323523, + [SMALL_STATE(6394)] = 323550, + [SMALL_STATE(6395)] = 323577, + [SMALL_STATE(6396)] = 323604, + [SMALL_STATE(6397)] = 323631, + [SMALL_STATE(6398)] = 323658, + [SMALL_STATE(6399)] = 323685, + [SMALL_STATE(6400)] = 323712, + [SMALL_STATE(6401)] = 323739, + [SMALL_STATE(6402)] = 323766, + [SMALL_STATE(6403)] = 323793, + [SMALL_STATE(6404)] = 323820, + [SMALL_STATE(6405)] = 323847, + [SMALL_STATE(6406)] = 323874, + [SMALL_STATE(6407)] = 323901, + [SMALL_STATE(6408)] = 323928, + [SMALL_STATE(6409)] = 323955, + [SMALL_STATE(6410)] = 323984, + [SMALL_STATE(6411)] = 324011, + [SMALL_STATE(6412)] = 324038, + [SMALL_STATE(6413)] = 324065, + [SMALL_STATE(6414)] = 324092, + [SMALL_STATE(6415)] = 324119, + [SMALL_STATE(6416)] = 324146, + [SMALL_STATE(6417)] = 324173, + [SMALL_STATE(6418)] = 324200, + [SMALL_STATE(6419)] = 324227, + [SMALL_STATE(6420)] = 324254, + [SMALL_STATE(6421)] = 324281, + [SMALL_STATE(6422)] = 324308, + [SMALL_STATE(6423)] = 324335, + [SMALL_STATE(6424)] = 324362, + [SMALL_STATE(6425)] = 324389, + [SMALL_STATE(6426)] = 324416, + [SMALL_STATE(6427)] = 324443, + [SMALL_STATE(6428)] = 324470, + [SMALL_STATE(6429)] = 324497, + [SMALL_STATE(6430)] = 324524, + [SMALL_STATE(6431)] = 324551, + [SMALL_STATE(6432)] = 324578, + [SMALL_STATE(6433)] = 324605, + [SMALL_STATE(6434)] = 324632, + [SMALL_STATE(6435)] = 324659, + [SMALL_STATE(6436)] = 324686, + [SMALL_STATE(6437)] = 324713, + [SMALL_STATE(6438)] = 324740, + [SMALL_STATE(6439)] = 324767, + [SMALL_STATE(6440)] = 324794, + [SMALL_STATE(6441)] = 324821, + [SMALL_STATE(6442)] = 324848, + [SMALL_STATE(6443)] = 324875, + [SMALL_STATE(6444)] = 324902, + [SMALL_STATE(6445)] = 324929, + [SMALL_STATE(6446)] = 324956, + [SMALL_STATE(6447)] = 324983, + [SMALL_STATE(6448)] = 325010, + [SMALL_STATE(6449)] = 325037, + [SMALL_STATE(6450)] = 325064, + [SMALL_STATE(6451)] = 325091, + [SMALL_STATE(6452)] = 325118, + [SMALL_STATE(6453)] = 325145, + [SMALL_STATE(6454)] = 325172, + [SMALL_STATE(6455)] = 325199, + [SMALL_STATE(6456)] = 325226, + [SMALL_STATE(6457)] = 325253, + [SMALL_STATE(6458)] = 325280, + [SMALL_STATE(6459)] = 325307, + [SMALL_STATE(6460)] = 325334, + [SMALL_STATE(6461)] = 325361, + [SMALL_STATE(6462)] = 325388, + [SMALL_STATE(6463)] = 325415, + [SMALL_STATE(6464)] = 325442, + [SMALL_STATE(6465)] = 325469, + [SMALL_STATE(6466)] = 325496, + [SMALL_STATE(6467)] = 325523, + [SMALL_STATE(6468)] = 325550, + [SMALL_STATE(6469)] = 325577, + [SMALL_STATE(6470)] = 325604, + [SMALL_STATE(6471)] = 325631, + [SMALL_STATE(6472)] = 325658, + [SMALL_STATE(6473)] = 325685, + [SMALL_STATE(6474)] = 325712, + [SMALL_STATE(6475)] = 325739, + [SMALL_STATE(6476)] = 325766, + [SMALL_STATE(6477)] = 325793, + [SMALL_STATE(6478)] = 325820, + [SMALL_STATE(6479)] = 325847, + [SMALL_STATE(6480)] = 325874, + [SMALL_STATE(6481)] = 325901, + [SMALL_STATE(6482)] = 325928, + [SMALL_STATE(6483)] = 325955, + [SMALL_STATE(6484)] = 325982, + [SMALL_STATE(6485)] = 326009, + [SMALL_STATE(6486)] = 326036, + [SMALL_STATE(6487)] = 326063, + [SMALL_STATE(6488)] = 326090, + [SMALL_STATE(6489)] = 326117, + [SMALL_STATE(6490)] = 326144, + [SMALL_STATE(6491)] = 326171, + [SMALL_STATE(6492)] = 326198, + [SMALL_STATE(6493)] = 326225, + [SMALL_STATE(6494)] = 326252, + [SMALL_STATE(6495)] = 326279, + [SMALL_STATE(6496)] = 326306, + [SMALL_STATE(6497)] = 326333, + [SMALL_STATE(6498)] = 326360, + [SMALL_STATE(6499)] = 326387, + [SMALL_STATE(6500)] = 326414, + [SMALL_STATE(6501)] = 326441, + [SMALL_STATE(6502)] = 326468, + [SMALL_STATE(6503)] = 326495, + [SMALL_STATE(6504)] = 326522, + [SMALL_STATE(6505)] = 326549, + [SMALL_STATE(6506)] = 326576, + [SMALL_STATE(6507)] = 326605, + [SMALL_STATE(6508)] = 326632, + [SMALL_STATE(6509)] = 326659, + [SMALL_STATE(6510)] = 326686, + [SMALL_STATE(6511)] = 326713, + [SMALL_STATE(6512)] = 326740, + [SMALL_STATE(6513)] = 326767, + [SMALL_STATE(6514)] = 326794, + [SMALL_STATE(6515)] = 326821, + [SMALL_STATE(6516)] = 326848, + [SMALL_STATE(6517)] = 326875, + [SMALL_STATE(6518)] = 326902, + [SMALL_STATE(6519)] = 326929, + [SMALL_STATE(6520)] = 326956, + [SMALL_STATE(6521)] = 326983, + [SMALL_STATE(6522)] = 327010, + [SMALL_STATE(6523)] = 327037, + [SMALL_STATE(6524)] = 327064, + [SMALL_STATE(6525)] = 327093, + [SMALL_STATE(6526)] = 327120, + [SMALL_STATE(6527)] = 327147, + [SMALL_STATE(6528)] = 327174, + [SMALL_STATE(6529)] = 327201, + [SMALL_STATE(6530)] = 327228, + [SMALL_STATE(6531)] = 327255, + [SMALL_STATE(6532)] = 327282, + [SMALL_STATE(6533)] = 327309, + [SMALL_STATE(6534)] = 327336, + [SMALL_STATE(6535)] = 327363, + [SMALL_STATE(6536)] = 327390, + [SMALL_STATE(6537)] = 327417, + [SMALL_STATE(6538)] = 327444, + [SMALL_STATE(6539)] = 327471, + [SMALL_STATE(6540)] = 327498, + [SMALL_STATE(6541)] = 327525, + [SMALL_STATE(6542)] = 327552, + [SMALL_STATE(6543)] = 327579, + [SMALL_STATE(6544)] = 327606, + [SMALL_STATE(6545)] = 327632, + [SMALL_STATE(6546)] = 327658, + [SMALL_STATE(6547)] = 327678, + [SMALL_STATE(6548)] = 327698, + [SMALL_STATE(6549)] = 327724, + [SMALL_STATE(6550)] = 327750, + [SMALL_STATE(6551)] = 327776, + [SMALL_STATE(6552)] = 327800, + [SMALL_STATE(6553)] = 327826, + [SMALL_STATE(6554)] = 327852, + [SMALL_STATE(6555)] = 327878, + [SMALL_STATE(6556)] = 327904, + [SMALL_STATE(6557)] = 327930, + [SMALL_STATE(6558)] = 327953, + [SMALL_STATE(6559)] = 327984, + [SMALL_STATE(6560)] = 328005, + [SMALL_STATE(6561)] = 328028, + [SMALL_STATE(6562)] = 328051, + [SMALL_STATE(6563)] = 328074, + [SMALL_STATE(6564)] = 328095, + [SMALL_STATE(6565)] = 328118, + [SMALL_STATE(6566)] = 328139, + [SMALL_STATE(6567)] = 328162, + [SMALL_STATE(6568)] = 328181, + [SMALL_STATE(6569)] = 328204, + [SMALL_STATE(6570)] = 328227, + [SMALL_STATE(6571)] = 328250, + [SMALL_STATE(6572)] = 328273, + [SMALL_STATE(6573)] = 328296, + [SMALL_STATE(6574)] = 328319, + [SMALL_STATE(6575)] = 328342, + [SMALL_STATE(6576)] = 328365, + [SMALL_STATE(6577)] = 328388, + [SMALL_STATE(6578)] = 328411, + [SMALL_STATE(6579)] = 328434, + [SMALL_STATE(6580)] = 328457, + [SMALL_STATE(6581)] = 328480, + [SMALL_STATE(6582)] = 328503, + [SMALL_STATE(6583)] = 328524, + [SMALL_STATE(6584)] = 328555, + [SMALL_STATE(6585)] = 328578, + [SMALL_STATE(6586)] = 328609, + [SMALL_STATE(6587)] = 328630, + [SMALL_STATE(6588)] = 328653, + [SMALL_STATE(6589)] = 328676, + [SMALL_STATE(6590)] = 328699, + [SMALL_STATE(6591)] = 328722, + [SMALL_STATE(6592)] = 328745, + [SMALL_STATE(6593)] = 328768, + [SMALL_STATE(6594)] = 328791, + [SMALL_STATE(6595)] = 328812, + [SMALL_STATE(6596)] = 328835, + [SMALL_STATE(6597)] = 328856, + [SMALL_STATE(6598)] = 328877, + [SMALL_STATE(6599)] = 328900, + [SMALL_STATE(6600)] = 328921, + [SMALL_STATE(6601)] = 328949, + [SMALL_STATE(6602)] = 328967, + [SMALL_STATE(6603)] = 328995, + [SMALL_STATE(6604)] = 329023, + [SMALL_STATE(6605)] = 329051, + [SMALL_STATE(6606)] = 329079, + [SMALL_STATE(6607)] = 329097, + [SMALL_STATE(6608)] = 329125, + [SMALL_STATE(6609)] = 329153, + [SMALL_STATE(6610)] = 329181, + [SMALL_STATE(6611)] = 329209, + [SMALL_STATE(6612)] = 329227, + [SMALL_STATE(6613)] = 329255, + [SMALL_STATE(6614)] = 329273, + [SMALL_STATE(6615)] = 329301, + [SMALL_STATE(6616)] = 329317, + [SMALL_STATE(6617)] = 329345, + [SMALL_STATE(6618)] = 329373, + [SMALL_STATE(6619)] = 329401, + [SMALL_STATE(6620)] = 329429, + [SMALL_STATE(6621)] = 329457, + [SMALL_STATE(6622)] = 329485, + [SMALL_STATE(6623)] = 329503, + [SMALL_STATE(6624)] = 329531, + [SMALL_STATE(6625)] = 329559, + [SMALL_STATE(6626)] = 329577, + [SMALL_STATE(6627)] = 329605, + [SMALL_STATE(6628)] = 329623, + [SMALL_STATE(6629)] = 329641, + [SMALL_STATE(6630)] = 329659, + [SMALL_STATE(6631)] = 329677, + [SMALL_STATE(6632)] = 329705, + [SMALL_STATE(6633)] = 329733, + [SMALL_STATE(6634)] = 329761, + [SMALL_STATE(6635)] = 329789, + [SMALL_STATE(6636)] = 329817, + [SMALL_STATE(6637)] = 329845, + [SMALL_STATE(6638)] = 329873, + [SMALL_STATE(6639)] = 329901, + [SMALL_STATE(6640)] = 329919, + [SMALL_STATE(6641)] = 329950, + [SMALL_STATE(6642)] = 329965, + [SMALL_STATE(6643)] = 329988, + [SMALL_STATE(6644)] = 330003, + [SMALL_STATE(6645)] = 330027, + [SMALL_STATE(6646)] = 330051, + [SMALL_STATE(6647)] = 330075, + [SMALL_STATE(6648)] = 330099, + [SMALL_STATE(6649)] = 330125, + [SMALL_STATE(6650)] = 330149, + [SMALL_STATE(6651)] = 330173, + [SMALL_STATE(6652)] = 330199, + [SMALL_STATE(6653)] = 330221, + [SMALL_STATE(6654)] = 330245, + [SMALL_STATE(6655)] = 330271, + [SMALL_STATE(6656)] = 330295, + [SMALL_STATE(6657)] = 330317, + [SMALL_STATE(6658)] = 330341, + [SMALL_STATE(6659)] = 330365, + [SMALL_STATE(6660)] = 330387, + [SMALL_STATE(6661)] = 330402, + [SMALL_STATE(6662)] = 330417, + [SMALL_STATE(6663)] = 330432, + [SMALL_STATE(6664)] = 330447, + [SMALL_STATE(6665)] = 330460, + [SMALL_STATE(6666)] = 330473, + [SMALL_STATE(6667)] = 330494, + [SMALL_STATE(6668)] = 330507, + [SMALL_STATE(6669)] = 330524, + [SMALL_STATE(6670)] = 330539, + [SMALL_STATE(6671)] = 330554, + [SMALL_STATE(6672)] = 330567, + [SMALL_STATE(6673)] = 330582, + [SMALL_STATE(6674)] = 330597, + [SMALL_STATE(6675)] = 330614, + [SMALL_STATE(6676)] = 330629, + [SMALL_STATE(6677)] = 330642, + [SMALL_STATE(6678)] = 330657, + [SMALL_STATE(6679)] = 330672, + [SMALL_STATE(6680)] = 330687, + [SMALL_STATE(6681)] = 330702, + [SMALL_STATE(6682)] = 330717, + [SMALL_STATE(6683)] = 330730, + [SMALL_STATE(6684)] = 330745, + [SMALL_STATE(6685)] = 330760, + [SMALL_STATE(6686)] = 330781, + [SMALL_STATE(6687)] = 330796, + [SMALL_STATE(6688)] = 330809, + [SMALL_STATE(6689)] = 330822, + [SMALL_STATE(6690)] = 330843, + [SMALL_STATE(6691)] = 330858, + [SMALL_STATE(6692)] = 330871, + [SMALL_STATE(6693)] = 330886, + [SMALL_STATE(6694)] = 330901, + [SMALL_STATE(6695)] = 330922, + [SMALL_STATE(6696)] = 330937, + [SMALL_STATE(6697)] = 330952, + [SMALL_STATE(6698)] = 330967, + [SMALL_STATE(6699)] = 330982, + [SMALL_STATE(6700)] = 330997, + [SMALL_STATE(6701)] = 331016, + [SMALL_STATE(6702)] = 331031, + [SMALL_STATE(6703)] = 331046, + [SMALL_STATE(6704)] = 331066, + [SMALL_STATE(6705)] = 331086, + [SMALL_STATE(6706)] = 331100, + [SMALL_STATE(6707)] = 331120, + [SMALL_STATE(6708)] = 331140, + [SMALL_STATE(6709)] = 331160, + [SMALL_STATE(6710)] = 331180, + [SMALL_STATE(6711)] = 331200, + [SMALL_STATE(6712)] = 331220, + [SMALL_STATE(6713)] = 331234, + [SMALL_STATE(6714)] = 331256, + [SMALL_STATE(6715)] = 331276, + [SMALL_STATE(6716)] = 331296, + [SMALL_STATE(6717)] = 331316, + [SMALL_STATE(6718)] = 331330, + [SMALL_STATE(6719)] = 331350, + [SMALL_STATE(6720)] = 331370, + [SMALL_STATE(6721)] = 331390, + [SMALL_STATE(6722)] = 331410, + [SMALL_STATE(6723)] = 331430, + [SMALL_STATE(6724)] = 331450, + [SMALL_STATE(6725)] = 331470, + [SMALL_STATE(6726)] = 331490, + [SMALL_STATE(6727)] = 331504, + [SMALL_STATE(6728)] = 331526, + [SMALL_STATE(6729)] = 331546, + [SMALL_STATE(6730)] = 331560, + [SMALL_STATE(6731)] = 331580, + [SMALL_STATE(6732)] = 331600, + [SMALL_STATE(6733)] = 331614, + [SMALL_STATE(6734)] = 331634, + [SMALL_STATE(6735)] = 331654, + [SMALL_STATE(6736)] = 331668, + [SMALL_STATE(6737)] = 331682, + [SMALL_STATE(6738)] = 331702, + [SMALL_STATE(6739)] = 331722, + [SMALL_STATE(6740)] = 331742, + [SMALL_STATE(6741)] = 331762, + [SMALL_STATE(6742)] = 331782, + [SMALL_STATE(6743)] = 331802, + [SMALL_STATE(6744)] = 331822, + [SMALL_STATE(6745)] = 331842, + [SMALL_STATE(6746)] = 331862, + [SMALL_STATE(6747)] = 331882, + [SMALL_STATE(6748)] = 331902, + [SMALL_STATE(6749)] = 331924, + [SMALL_STATE(6750)] = 331944, + [SMALL_STATE(6751)] = 331964, + [SMALL_STATE(6752)] = 331984, + [SMALL_STATE(6753)] = 332004, + [SMALL_STATE(6754)] = 332024, + [SMALL_STATE(6755)] = 332038, + [SMALL_STATE(6756)] = 332058, + [SMALL_STATE(6757)] = 332078, + [SMALL_STATE(6758)] = 332098, + [SMALL_STATE(6759)] = 332118, + [SMALL_STATE(6760)] = 332138, + [SMALL_STATE(6761)] = 332152, + [SMALL_STATE(6762)] = 332172, + [SMALL_STATE(6763)] = 332186, + [SMALL_STATE(6764)] = 332206, + [SMALL_STATE(6765)] = 332226, + [SMALL_STATE(6766)] = 332246, + [SMALL_STATE(6767)] = 332260, + [SMALL_STATE(6768)] = 332280, + [SMALL_STATE(6769)] = 332300, + [SMALL_STATE(6770)] = 332320, + [SMALL_STATE(6771)] = 332334, + [SMALL_STATE(6772)] = 332348, + [SMALL_STATE(6773)] = 332368, + [SMALL_STATE(6774)] = 332388, + [SMALL_STATE(6775)] = 332408, + [SMALL_STATE(6776)] = 332428, + [SMALL_STATE(6777)] = 332448, + [SMALL_STATE(6778)] = 332468, + [SMALL_STATE(6779)] = 332488, + [SMALL_STATE(6780)] = 332508, + [SMALL_STATE(6781)] = 332528, + [SMALL_STATE(6782)] = 332548, + [SMALL_STATE(6783)] = 332568, + [SMALL_STATE(6784)] = 332588, + [SMALL_STATE(6785)] = 332608, + [SMALL_STATE(6786)] = 332628, + [SMALL_STATE(6787)] = 332648, + [SMALL_STATE(6788)] = 332668, + [SMALL_STATE(6789)] = 332688, + [SMALL_STATE(6790)] = 332708, + [SMALL_STATE(6791)] = 332722, + [SMALL_STATE(6792)] = 332742, + [SMALL_STATE(6793)] = 332762, + [SMALL_STATE(6794)] = 332782, + [SMALL_STATE(6795)] = 332802, + [SMALL_STATE(6796)] = 332822, + [SMALL_STATE(6797)] = 332842, + [SMALL_STATE(6798)] = 332862, + [SMALL_STATE(6799)] = 332882, + [SMALL_STATE(6800)] = 332902, + [SMALL_STATE(6801)] = 332922, + [SMALL_STATE(6802)] = 332942, + [SMALL_STATE(6803)] = 332962, + [SMALL_STATE(6804)] = 332976, + [SMALL_STATE(6805)] = 332996, + [SMALL_STATE(6806)] = 333016, + [SMALL_STATE(6807)] = 333036, + [SMALL_STATE(6808)] = 333056, + [SMALL_STATE(6809)] = 333076, + [SMALL_STATE(6810)] = 333096, + [SMALL_STATE(6811)] = 333116, + [SMALL_STATE(6812)] = 333136, + [SMALL_STATE(6813)] = 333156, + [SMALL_STATE(6814)] = 333176, + [SMALL_STATE(6815)] = 333196, + [SMALL_STATE(6816)] = 333216, + [SMALL_STATE(6817)] = 333230, + [SMALL_STATE(6818)] = 333244, + [SMALL_STATE(6819)] = 333264, + [SMALL_STATE(6820)] = 333284, + [SMALL_STATE(6821)] = 333298, + [SMALL_STATE(6822)] = 333318, + [SMALL_STATE(6823)] = 333338, + [SMALL_STATE(6824)] = 333358, + [SMALL_STATE(6825)] = 333378, + [SMALL_STATE(6826)] = 333398, + [SMALL_STATE(6827)] = 333418, + [SMALL_STATE(6828)] = 333432, + [SMALL_STATE(6829)] = 333448, + [SMALL_STATE(6830)] = 333462, + [SMALL_STATE(6831)] = 333482, + [SMALL_STATE(6832)] = 333502, + [SMALL_STATE(6833)] = 333524, + [SMALL_STATE(6834)] = 333543, + [SMALL_STATE(6835)] = 333560, + [SMALL_STATE(6836)] = 333575, + [SMALL_STATE(6837)] = 333594, + [SMALL_STATE(6838)] = 333613, + [SMALL_STATE(6839)] = 333632, + [SMALL_STATE(6840)] = 333647, + [SMALL_STATE(6841)] = 333664, + [SMALL_STATE(6842)] = 333683, + [SMALL_STATE(6843)] = 333702, + [SMALL_STATE(6844)] = 333719, + [SMALL_STATE(6845)] = 333738, + [SMALL_STATE(6846)] = 333757, + [SMALL_STATE(6847)] = 333776, + [SMALL_STATE(6848)] = 333793, + [SMALL_STATE(6849)] = 333812, + [SMALL_STATE(6850)] = 333825, + [SMALL_STATE(6851)] = 333844, + [SMALL_STATE(6852)] = 333863, + [SMALL_STATE(6853)] = 333882, + [SMALL_STATE(6854)] = 333895, + [SMALL_STATE(6855)] = 333906, + [SMALL_STATE(6856)] = 333923, + [SMALL_STATE(6857)] = 333940, + [SMALL_STATE(6858)] = 333955, + [SMALL_STATE(6859)] = 333972, + [SMALL_STATE(6860)] = 333987, + [SMALL_STATE(6861)] = 334002, + [SMALL_STATE(6862)] = 334021, + [SMALL_STATE(6863)] = 334040, + [SMALL_STATE(6864)] = 334055, + [SMALL_STATE(6865)] = 334070, + [SMALL_STATE(6866)] = 334089, + [SMALL_STATE(6867)] = 334106, + [SMALL_STATE(6868)] = 334123, + [SMALL_STATE(6869)] = 334142, + [SMALL_STATE(6870)] = 334157, + [SMALL_STATE(6871)] = 334174, + [SMALL_STATE(6872)] = 334189, + [SMALL_STATE(6873)] = 334204, + [SMALL_STATE(6874)] = 334221, + [SMALL_STATE(6875)] = 334238, + [SMALL_STATE(6876)] = 334253, + [SMALL_STATE(6877)] = 334270, + [SMALL_STATE(6878)] = 334287, + [SMALL_STATE(6879)] = 334304, + [SMALL_STATE(6880)] = 334323, + [SMALL_STATE(6881)] = 334342, + [SMALL_STATE(6882)] = 334359, + [SMALL_STATE(6883)] = 334378, + [SMALL_STATE(6884)] = 334393, + [SMALL_STATE(6885)] = 334412, + [SMALL_STATE(6886)] = 334431, + [SMALL_STATE(6887)] = 334444, + [SMALL_STATE(6888)] = 334463, + [SMALL_STATE(6889)] = 334480, + [SMALL_STATE(6890)] = 334499, + [SMALL_STATE(6891)] = 334516, + [SMALL_STATE(6892)] = 334535, + [SMALL_STATE(6893)] = 334548, + [SMALL_STATE(6894)] = 334565, + [SMALL_STATE(6895)] = 334582, + [SMALL_STATE(6896)] = 334601, + [SMALL_STATE(6897)] = 334612, + [SMALL_STATE(6898)] = 334629, + [SMALL_STATE(6899)] = 334646, + [SMALL_STATE(6900)] = 334665, + [SMALL_STATE(6901)] = 334682, + [SMALL_STATE(6902)] = 334699, + [SMALL_STATE(6903)] = 334718, + [SMALL_STATE(6904)] = 334737, + [SMALL_STATE(6905)] = 334754, + [SMALL_STATE(6906)] = 334771, + [SMALL_STATE(6907)] = 334788, + [SMALL_STATE(6908)] = 334805, + [SMALL_STATE(6909)] = 334822, + [SMALL_STATE(6910)] = 334837, + [SMALL_STATE(6911)] = 334848, + [SMALL_STATE(6912)] = 334865, + [SMALL_STATE(6913)] = 334882, + [SMALL_STATE(6914)] = 334897, + [SMALL_STATE(6915)] = 334916, + [SMALL_STATE(6916)] = 334933, + [SMALL_STATE(6917)] = 334952, + [SMALL_STATE(6918)] = 334971, + [SMALL_STATE(6919)] = 334990, + [SMALL_STATE(6920)] = 335007, + [SMALL_STATE(6921)] = 335026, + [SMALL_STATE(6922)] = 335043, + [SMALL_STATE(6923)] = 335062, + [SMALL_STATE(6924)] = 335077, + [SMALL_STATE(6925)] = 335096, + [SMALL_STATE(6926)] = 335113, + [SMALL_STATE(6927)] = 335128, + [SMALL_STATE(6928)] = 335143, + [SMALL_STATE(6929)] = 335158, + [SMALL_STATE(6930)] = 335177, + [SMALL_STATE(6931)] = 335192, + [SMALL_STATE(6932)] = 335207, + [SMALL_STATE(6933)] = 335222, + [SMALL_STATE(6934)] = 335237, + [SMALL_STATE(6935)] = 335254, + [SMALL_STATE(6936)] = 335269, + [SMALL_STATE(6937)] = 335284, + [SMALL_STATE(6938)] = 335301, + [SMALL_STATE(6939)] = 335316, + [SMALL_STATE(6940)] = 335333, + [SMALL_STATE(6941)] = 335352, + [SMALL_STATE(6942)] = 335369, + [SMALL_STATE(6943)] = 335384, + [SMALL_STATE(6944)] = 335399, + [SMALL_STATE(6945)] = 335412, + [SMALL_STATE(6946)] = 335426, + [SMALL_STATE(6947)] = 335442, + [SMALL_STATE(6948)] = 335452, + [SMALL_STATE(6949)] = 335462, + [SMALL_STATE(6950)] = 335472, + [SMALL_STATE(6951)] = 335482, + [SMALL_STATE(6952)] = 335492, + [SMALL_STATE(6953)] = 335506, + [SMALL_STATE(6954)] = 335516, + [SMALL_STATE(6955)] = 335526, + [SMALL_STATE(6956)] = 335536, + [SMALL_STATE(6957)] = 335552, + [SMALL_STATE(6958)] = 335566, + [SMALL_STATE(6959)] = 335576, + [SMALL_STATE(6960)] = 335592, + [SMALL_STATE(6961)] = 335602, + [SMALL_STATE(6962)] = 335612, + [SMALL_STATE(6963)] = 335622, + [SMALL_STATE(6964)] = 335632, + [SMALL_STATE(6965)] = 335642, + [SMALL_STATE(6966)] = 335658, + [SMALL_STATE(6967)] = 335668, + [SMALL_STATE(6968)] = 335678, + [SMALL_STATE(6969)] = 335688, + [SMALL_STATE(6970)] = 335700, + [SMALL_STATE(6971)] = 335710, + [SMALL_STATE(6972)] = 335722, + [SMALL_STATE(6973)] = 335732, + [SMALL_STATE(6974)] = 335748, + [SMALL_STATE(6975)] = 335758, + [SMALL_STATE(6976)] = 335768, + [SMALL_STATE(6977)] = 335778, + [SMALL_STATE(6978)] = 335788, + [SMALL_STATE(6979)] = 335798, + [SMALL_STATE(6980)] = 335808, + [SMALL_STATE(6981)] = 335822, + [SMALL_STATE(6982)] = 335838, + [SMALL_STATE(6983)] = 335854, + [SMALL_STATE(6984)] = 335864, + [SMALL_STATE(6985)] = 335874, + [SMALL_STATE(6986)] = 335890, + [SMALL_STATE(6987)] = 335900, + [SMALL_STATE(6988)] = 335910, + [SMALL_STATE(6989)] = 335924, + [SMALL_STATE(6990)] = 335934, + [SMALL_STATE(6991)] = 335944, + [SMALL_STATE(6992)] = 335954, + [SMALL_STATE(6993)] = 335964, + [SMALL_STATE(6994)] = 335974, + [SMALL_STATE(6995)] = 335990, + [SMALL_STATE(6996)] = 336006, + [SMALL_STATE(6997)] = 336016, + [SMALL_STATE(6998)] = 336032, + [SMALL_STATE(6999)] = 336046, + [SMALL_STATE(7000)] = 336056, + [SMALL_STATE(7001)] = 336068, + [SMALL_STATE(7002)] = 336082, + [SMALL_STATE(7003)] = 336092, + [SMALL_STATE(7004)] = 336106, + [SMALL_STATE(7005)] = 336116, + [SMALL_STATE(7006)] = 336126, + [SMALL_STATE(7007)] = 336136, + [SMALL_STATE(7008)] = 336146, + [SMALL_STATE(7009)] = 336159, + [SMALL_STATE(7010)] = 336170, + [SMALL_STATE(7011)] = 336179, + [SMALL_STATE(7012)] = 336192, + [SMALL_STATE(7013)] = 336205, + [SMALL_STATE(7014)] = 336218, + [SMALL_STATE(7015)] = 336231, + [SMALL_STATE(7016)] = 336244, + [SMALL_STATE(7017)] = 336257, + [SMALL_STATE(7018)] = 336268, + [SMALL_STATE(7019)] = 336281, + [SMALL_STATE(7020)] = 336292, + [SMALL_STATE(7021)] = 336303, + [SMALL_STATE(7022)] = 336316, + [SMALL_STATE(7023)] = 336329, + [SMALL_STATE(7024)] = 336342, + [SMALL_STATE(7025)] = 336355, + [SMALL_STATE(7026)] = 336368, + [SMALL_STATE(7027)] = 336381, + [SMALL_STATE(7028)] = 336394, + [SMALL_STATE(7029)] = 336407, + [SMALL_STATE(7030)] = 336420, + [SMALL_STATE(7031)] = 336433, + [SMALL_STATE(7032)] = 336446, + [SMALL_STATE(7033)] = 336459, + [SMALL_STATE(7034)] = 336472, + [SMALL_STATE(7035)] = 336485, + [SMALL_STATE(7036)] = 336496, + [SMALL_STATE(7037)] = 336505, + [SMALL_STATE(7038)] = 336518, + [SMALL_STATE(7039)] = 336531, + [SMALL_STATE(7040)] = 336540, + [SMALL_STATE(7041)] = 336553, + [SMALL_STATE(7042)] = 336564, + [SMALL_STATE(7043)] = 336577, + [SMALL_STATE(7044)] = 336586, + [SMALL_STATE(7045)] = 336595, + [SMALL_STATE(7046)] = 336608, + [SMALL_STATE(7047)] = 336617, + [SMALL_STATE(7048)] = 336626, + [SMALL_STATE(7049)] = 336639, + [SMALL_STATE(7050)] = 336652, + [SMALL_STATE(7051)] = 336665, + [SMALL_STATE(7052)] = 336676, + [SMALL_STATE(7053)] = 336689, + [SMALL_STATE(7054)] = 336702, + [SMALL_STATE(7055)] = 336715, + [SMALL_STATE(7056)] = 336728, + [SMALL_STATE(7057)] = 336741, + [SMALL_STATE(7058)] = 336754, + [SMALL_STATE(7059)] = 336767, + [SMALL_STATE(7060)] = 336780, + [SMALL_STATE(7061)] = 336793, + [SMALL_STATE(7062)] = 336806, + [SMALL_STATE(7063)] = 336819, + [SMALL_STATE(7064)] = 336832, + [SMALL_STATE(7065)] = 336845, + [SMALL_STATE(7066)] = 336858, + [SMALL_STATE(7067)] = 336871, + [SMALL_STATE(7068)] = 336882, + [SMALL_STATE(7069)] = 336895, + [SMALL_STATE(7070)] = 336906, + [SMALL_STATE(7071)] = 336915, + [SMALL_STATE(7072)] = 336924, + [SMALL_STATE(7073)] = 336933, + [SMALL_STATE(7074)] = 336946, + [SMALL_STATE(7075)] = 336959, + [SMALL_STATE(7076)] = 336972, + [SMALL_STATE(7077)] = 336985, + [SMALL_STATE(7078)] = 336998, + [SMALL_STATE(7079)] = 337011, + [SMALL_STATE(7080)] = 337024, + [SMALL_STATE(7081)] = 337037, + [SMALL_STATE(7082)] = 337048, + [SMALL_STATE(7083)] = 337061, + [SMALL_STATE(7084)] = 337074, + [SMALL_STATE(7085)] = 337085, + [SMALL_STATE(7086)] = 337098, + [SMALL_STATE(7087)] = 337111, + [SMALL_STATE(7088)] = 337124, + [SMALL_STATE(7089)] = 337137, + [SMALL_STATE(7090)] = 337150, + [SMALL_STATE(7091)] = 337163, + [SMALL_STATE(7092)] = 337176, + [SMALL_STATE(7093)] = 337187, + [SMALL_STATE(7094)] = 337200, + [SMALL_STATE(7095)] = 337211, + [SMALL_STATE(7096)] = 337222, + [SMALL_STATE(7097)] = 337235, + [SMALL_STATE(7098)] = 337248, + [SMALL_STATE(7099)] = 337261, + [SMALL_STATE(7100)] = 337274, + [SMALL_STATE(7101)] = 337287, + [SMALL_STATE(7102)] = 337300, + [SMALL_STATE(7103)] = 337313, + [SMALL_STATE(7104)] = 337326, + [SMALL_STATE(7105)] = 337337, + [SMALL_STATE(7106)] = 337350, + [SMALL_STATE(7107)] = 337361, + [SMALL_STATE(7108)] = 337372, + [SMALL_STATE(7109)] = 337381, + [SMALL_STATE(7110)] = 337394, + [SMALL_STATE(7111)] = 337407, + [SMALL_STATE(7112)] = 337418, + [SMALL_STATE(7113)] = 337431, + [SMALL_STATE(7114)] = 337442, + [SMALL_STATE(7115)] = 337455, + [SMALL_STATE(7116)] = 337468, + [SMALL_STATE(7117)] = 337481, + [SMALL_STATE(7118)] = 337494, + [SMALL_STATE(7119)] = 337507, + [SMALL_STATE(7120)] = 337520, + [SMALL_STATE(7121)] = 337533, + [SMALL_STATE(7122)] = 337546, + [SMALL_STATE(7123)] = 337557, + [SMALL_STATE(7124)] = 337570, + [SMALL_STATE(7125)] = 337583, + [SMALL_STATE(7126)] = 337594, + [SMALL_STATE(7127)] = 337607, + [SMALL_STATE(7128)] = 337620, + [SMALL_STATE(7129)] = 337633, + [SMALL_STATE(7130)] = 337646, + [SMALL_STATE(7131)] = 337659, + [SMALL_STATE(7132)] = 337672, + [SMALL_STATE(7133)] = 337685, + [SMALL_STATE(7134)] = 337698, + [SMALL_STATE(7135)] = 337711, + [SMALL_STATE(7136)] = 337724, + [SMALL_STATE(7137)] = 337737, + [SMALL_STATE(7138)] = 337750, + [SMALL_STATE(7139)] = 337761, + [SMALL_STATE(7140)] = 337774, + [SMALL_STATE(7141)] = 337787, + [SMALL_STATE(7142)] = 337800, + [SMALL_STATE(7143)] = 337813, + [SMALL_STATE(7144)] = 337824, + [SMALL_STATE(7145)] = 337837, + [SMALL_STATE(7146)] = 337850, + [SMALL_STATE(7147)] = 337863, + [SMALL_STATE(7148)] = 337876, + [SMALL_STATE(7149)] = 337887, + [SMALL_STATE(7150)] = 337900, + [SMALL_STATE(7151)] = 337911, + [SMALL_STATE(7152)] = 337924, + [SMALL_STATE(7153)] = 337937, + [SMALL_STATE(7154)] = 337948, + [SMALL_STATE(7155)] = 337961, + [SMALL_STATE(7156)] = 337974, + [SMALL_STATE(7157)] = 337985, + [SMALL_STATE(7158)] = 337996, + [SMALL_STATE(7159)] = 338007, + [SMALL_STATE(7160)] = 338018, + [SMALL_STATE(7161)] = 338029, + [SMALL_STATE(7162)] = 338042, + [SMALL_STATE(7163)] = 338055, + [SMALL_STATE(7164)] = 338066, + [SMALL_STATE(7165)] = 338077, + [SMALL_STATE(7166)] = 338086, + [SMALL_STATE(7167)] = 338099, + [SMALL_STATE(7168)] = 338112, + [SMALL_STATE(7169)] = 338125, + [SMALL_STATE(7170)] = 338138, + [SMALL_STATE(7171)] = 338149, + [SMALL_STATE(7172)] = 338162, + [SMALL_STATE(7173)] = 338175, + [SMALL_STATE(7174)] = 338188, + [SMALL_STATE(7175)] = 338201, + [SMALL_STATE(7176)] = 338214, + [SMALL_STATE(7177)] = 338225, + [SMALL_STATE(7178)] = 338238, + [SMALL_STATE(7179)] = 338251, + [SMALL_STATE(7180)] = 338264, + [SMALL_STATE(7181)] = 338277, + [SMALL_STATE(7182)] = 338290, + [SMALL_STATE(7183)] = 338303, + [SMALL_STATE(7184)] = 338312, + [SMALL_STATE(7185)] = 338325, + [SMALL_STATE(7186)] = 338338, + [SMALL_STATE(7187)] = 338351, + [SMALL_STATE(7188)] = 338364, + [SMALL_STATE(7189)] = 338375, + [SMALL_STATE(7190)] = 338386, + [SMALL_STATE(7191)] = 338399, + [SMALL_STATE(7192)] = 338412, + [SMALL_STATE(7193)] = 338425, + [SMALL_STATE(7194)] = 338434, + [SMALL_STATE(7195)] = 338447, + [SMALL_STATE(7196)] = 338460, + [SMALL_STATE(7197)] = 338473, + [SMALL_STATE(7198)] = 338483, + [SMALL_STATE(7199)] = 338491, + [SMALL_STATE(7200)] = 338499, + [SMALL_STATE(7201)] = 338509, + [SMALL_STATE(7202)] = 338517, + [SMALL_STATE(7203)] = 338525, + [SMALL_STATE(7204)] = 338533, + [SMALL_STATE(7205)] = 338541, + [SMALL_STATE(7206)] = 338549, + [SMALL_STATE(7207)] = 338557, + [SMALL_STATE(7208)] = 338565, + [SMALL_STATE(7209)] = 338573, + [SMALL_STATE(7210)] = 338581, + [SMALL_STATE(7211)] = 338589, + [SMALL_STATE(7212)] = 338597, + [SMALL_STATE(7213)] = 338605, + [SMALL_STATE(7214)] = 338613, + [SMALL_STATE(7215)] = 338621, + [SMALL_STATE(7216)] = 338629, + [SMALL_STATE(7217)] = 338637, + [SMALL_STATE(7218)] = 338645, + [SMALL_STATE(7219)] = 338655, + [SMALL_STATE(7220)] = 338665, + [SMALL_STATE(7221)] = 338675, + [SMALL_STATE(7222)] = 338683, + [SMALL_STATE(7223)] = 338693, + [SMALL_STATE(7224)] = 338701, + [SMALL_STATE(7225)] = 338711, + [SMALL_STATE(7226)] = 338719, + [SMALL_STATE(7227)] = 338727, + [SMALL_STATE(7228)] = 338735, + [SMALL_STATE(7229)] = 338745, + [SMALL_STATE(7230)] = 338753, + [SMALL_STATE(7231)] = 338761, + [SMALL_STATE(7232)] = 338769, + [SMALL_STATE(7233)] = 338779, + [SMALL_STATE(7234)] = 338789, + [SMALL_STATE(7235)] = 338797, + [SMALL_STATE(7236)] = 338805, + [SMALL_STATE(7237)] = 338813, + [SMALL_STATE(7238)] = 338823, + [SMALL_STATE(7239)] = 338831, + [SMALL_STATE(7240)] = 338841, + [SMALL_STATE(7241)] = 338851, + [SMALL_STATE(7242)] = 338859, + [SMALL_STATE(7243)] = 338867, + [SMALL_STATE(7244)] = 338877, + [SMALL_STATE(7245)] = 338887, + [SMALL_STATE(7246)] = 338895, + [SMALL_STATE(7247)] = 338903, + [SMALL_STATE(7248)] = 338911, + [SMALL_STATE(7249)] = 338919, + [SMALL_STATE(7250)] = 338927, + [SMALL_STATE(7251)] = 338935, + [SMALL_STATE(7252)] = 338945, + [SMALL_STATE(7253)] = 338955, + [SMALL_STATE(7254)] = 338965, + [SMALL_STATE(7255)] = 338975, + [SMALL_STATE(7256)] = 338985, + [SMALL_STATE(7257)] = 338995, + [SMALL_STATE(7258)] = 339003, + [SMALL_STATE(7259)] = 339011, + [SMALL_STATE(7260)] = 339019, + [SMALL_STATE(7261)] = 339029, + [SMALL_STATE(7262)] = 339037, + [SMALL_STATE(7263)] = 339047, + [SMALL_STATE(7264)] = 339055, + [SMALL_STATE(7265)] = 339065, + [SMALL_STATE(7266)] = 339075, + [SMALL_STATE(7267)] = 339083, + [SMALL_STATE(7268)] = 339093, + [SMALL_STATE(7269)] = 339101, + [SMALL_STATE(7270)] = 339109, + [SMALL_STATE(7271)] = 339119, + [SMALL_STATE(7272)] = 339127, + [SMALL_STATE(7273)] = 339137, + [SMALL_STATE(7274)] = 339147, + [SMALL_STATE(7275)] = 339157, + [SMALL_STATE(7276)] = 339167, + [SMALL_STATE(7277)] = 339174, + [SMALL_STATE(7278)] = 339181, + [SMALL_STATE(7279)] = 339188, + [SMALL_STATE(7280)] = 339195, + [SMALL_STATE(7281)] = 339202, + [SMALL_STATE(7282)] = 339209, + [SMALL_STATE(7283)] = 339216, + [SMALL_STATE(7284)] = 339223, + [SMALL_STATE(7285)] = 339230, + [SMALL_STATE(7286)] = 339237, + [SMALL_STATE(7287)] = 339244, + [SMALL_STATE(7288)] = 339251, + [SMALL_STATE(7289)] = 339258, + [SMALL_STATE(7290)] = 339265, + [SMALL_STATE(7291)] = 339272, + [SMALL_STATE(7292)] = 339279, + [SMALL_STATE(7293)] = 339286, + [SMALL_STATE(7294)] = 339293, + [SMALL_STATE(7295)] = 339300, + [SMALL_STATE(7296)] = 339307, + [SMALL_STATE(7297)] = 339314, + [SMALL_STATE(7298)] = 339321, + [SMALL_STATE(7299)] = 339328, + [SMALL_STATE(7300)] = 339335, + [SMALL_STATE(7301)] = 339342, + [SMALL_STATE(7302)] = 339349, + [SMALL_STATE(7303)] = 339356, + [SMALL_STATE(7304)] = 339363, + [SMALL_STATE(7305)] = 339370, + [SMALL_STATE(7306)] = 339377, + [SMALL_STATE(7307)] = 339384, + [SMALL_STATE(7308)] = 339391, + [SMALL_STATE(7309)] = 339398, + [SMALL_STATE(7310)] = 339405, + [SMALL_STATE(7311)] = 339412, + [SMALL_STATE(7312)] = 339419, + [SMALL_STATE(7313)] = 339426, + [SMALL_STATE(7314)] = 339433, + [SMALL_STATE(7315)] = 339440, + [SMALL_STATE(7316)] = 339447, + [SMALL_STATE(7317)] = 339454, + [SMALL_STATE(7318)] = 339461, + [SMALL_STATE(7319)] = 339468, + [SMALL_STATE(7320)] = 339475, + [SMALL_STATE(7321)] = 339482, + [SMALL_STATE(7322)] = 339489, + [SMALL_STATE(7323)] = 339496, + [SMALL_STATE(7324)] = 339503, + [SMALL_STATE(7325)] = 339510, + [SMALL_STATE(7326)] = 339517, + [SMALL_STATE(7327)] = 339524, + [SMALL_STATE(7328)] = 339531, + [SMALL_STATE(7329)] = 339538, + [SMALL_STATE(7330)] = 339545, + [SMALL_STATE(7331)] = 339552, + [SMALL_STATE(7332)] = 339559, + [SMALL_STATE(7333)] = 339566, + [SMALL_STATE(7334)] = 339573, + [SMALL_STATE(7335)] = 339580, + [SMALL_STATE(7336)] = 339587, + [SMALL_STATE(7337)] = 339594, + [SMALL_STATE(7338)] = 339601, + [SMALL_STATE(7339)] = 339608, + [SMALL_STATE(7340)] = 339615, + [SMALL_STATE(7341)] = 339622, + [SMALL_STATE(7342)] = 339629, + [SMALL_STATE(7343)] = 339636, + [SMALL_STATE(7344)] = 339643, + [SMALL_STATE(7345)] = 339650, + [SMALL_STATE(7346)] = 339657, + [SMALL_STATE(7347)] = 339664, + [SMALL_STATE(7348)] = 339671, + [SMALL_STATE(7349)] = 339678, + [SMALL_STATE(7350)] = 339685, + [SMALL_STATE(7351)] = 339692, + [SMALL_STATE(7352)] = 339699, + [SMALL_STATE(7353)] = 339706, + [SMALL_STATE(7354)] = 339713, + [SMALL_STATE(7355)] = 339720, + [SMALL_STATE(7356)] = 339727, + [SMALL_STATE(7357)] = 339734, + [SMALL_STATE(7358)] = 339741, + [SMALL_STATE(7359)] = 339748, + [SMALL_STATE(7360)] = 339755, + [SMALL_STATE(7361)] = 339762, + [SMALL_STATE(7362)] = 339769, + [SMALL_STATE(7363)] = 339776, + [SMALL_STATE(7364)] = 339783, + [SMALL_STATE(7365)] = 339790, + [SMALL_STATE(7366)] = 339797, + [SMALL_STATE(7367)] = 339804, + [SMALL_STATE(7368)] = 339811, + [SMALL_STATE(7369)] = 339818, + [SMALL_STATE(7370)] = 339825, + [SMALL_STATE(7371)] = 339832, + [SMALL_STATE(7372)] = 339839, + [SMALL_STATE(7373)] = 339846, + [SMALL_STATE(7374)] = 339853, + [SMALL_STATE(7375)] = 339860, + [SMALL_STATE(7376)] = 339867, + [SMALL_STATE(7377)] = 339874, + [SMALL_STATE(7378)] = 339881, + [SMALL_STATE(7379)] = 339888, + [SMALL_STATE(7380)] = 339895, + [SMALL_STATE(7381)] = 339902, + [SMALL_STATE(7382)] = 339909, + [SMALL_STATE(7383)] = 339916, + [SMALL_STATE(7384)] = 339923, + [SMALL_STATE(7385)] = 339930, + [SMALL_STATE(7386)] = 339937, + [SMALL_STATE(7387)] = 339944, + [SMALL_STATE(7388)] = 339951, + [SMALL_STATE(7389)] = 339958, + [SMALL_STATE(7390)] = 339965, + [SMALL_STATE(7391)] = 339972, + [SMALL_STATE(7392)] = 339979, + [SMALL_STATE(7393)] = 339986, + [SMALL_STATE(7394)] = 339993, + [SMALL_STATE(7395)] = 340000, + [SMALL_STATE(7396)] = 340007, + [SMALL_STATE(7397)] = 340014, + [SMALL_STATE(7398)] = 340021, + [SMALL_STATE(7399)] = 340028, + [SMALL_STATE(7400)] = 340035, + [SMALL_STATE(7401)] = 340042, + [SMALL_STATE(7402)] = 340049, + [SMALL_STATE(7403)] = 340056, + [SMALL_STATE(7404)] = 340063, + [SMALL_STATE(7405)] = 340070, + [SMALL_STATE(7406)] = 340077, + [SMALL_STATE(7407)] = 340084, + [SMALL_STATE(7408)] = 340091, + [SMALL_STATE(7409)] = 340098, + [SMALL_STATE(7410)] = 340105, + [SMALL_STATE(7411)] = 340112, + [SMALL_STATE(7412)] = 340119, + [SMALL_STATE(7413)] = 340126, + [SMALL_STATE(7414)] = 340133, + [SMALL_STATE(7415)] = 340140, + [SMALL_STATE(7416)] = 340147, + [SMALL_STATE(7417)] = 340154, + [SMALL_STATE(7418)] = 340161, + [SMALL_STATE(7419)] = 340168, + [SMALL_STATE(7420)] = 340175, + [SMALL_STATE(7421)] = 340182, + [SMALL_STATE(7422)] = 340189, + [SMALL_STATE(7423)] = 340196, + [SMALL_STATE(7424)] = 340203, + [SMALL_STATE(7425)] = 340210, + [SMALL_STATE(7426)] = 340217, + [SMALL_STATE(7427)] = 340224, + [SMALL_STATE(7428)] = 340231, + [SMALL_STATE(7429)] = 340238, + [SMALL_STATE(7430)] = 340245, + [SMALL_STATE(7431)] = 340252, + [SMALL_STATE(7432)] = 340259, + [SMALL_STATE(7433)] = 340266, + [SMALL_STATE(7434)] = 340273, + [SMALL_STATE(7435)] = 340280, + [SMALL_STATE(7436)] = 340287, + [SMALL_STATE(7437)] = 340294, + [SMALL_STATE(7438)] = 340301, + [SMALL_STATE(7439)] = 340308, + [SMALL_STATE(7440)] = 340315, + [SMALL_STATE(7441)] = 340322, + [SMALL_STATE(7442)] = 340329, + [SMALL_STATE(7443)] = 340336, + [SMALL_STATE(7444)] = 340343, + [SMALL_STATE(7445)] = 340350, + [SMALL_STATE(7446)] = 340357, + [SMALL_STATE(7447)] = 340364, + [SMALL_STATE(7448)] = 340371, + [SMALL_STATE(7449)] = 340378, + [SMALL_STATE(7450)] = 340385, + [SMALL_STATE(7451)] = 340392, + [SMALL_STATE(7452)] = 340399, + [SMALL_STATE(7453)] = 340406, + [SMALL_STATE(7454)] = 340413, + [SMALL_STATE(7455)] = 340420, + [SMALL_STATE(7456)] = 340427, + [SMALL_STATE(7457)] = 340434, + [SMALL_STATE(7458)] = 340441, + [SMALL_STATE(7459)] = 340448, + [SMALL_STATE(7460)] = 340455, + [SMALL_STATE(7461)] = 340462, + [SMALL_STATE(7462)] = 340469, + [SMALL_STATE(7463)] = 340476, + [SMALL_STATE(7464)] = 340483, + [SMALL_STATE(7465)] = 340490, + [SMALL_STATE(7466)] = 340497, + [SMALL_STATE(7467)] = 340504, + [SMALL_STATE(7468)] = 340511, + [SMALL_STATE(7469)] = 340518, + [SMALL_STATE(7470)] = 340525, + [SMALL_STATE(7471)] = 340532, + [SMALL_STATE(7472)] = 340539, + [SMALL_STATE(7473)] = 340546, + [SMALL_STATE(7474)] = 340553, + [SMALL_STATE(7475)] = 340560, + [SMALL_STATE(7476)] = 340567, + [SMALL_STATE(7477)] = 340574, + [SMALL_STATE(7478)] = 340581, + [SMALL_STATE(7479)] = 340588, + [SMALL_STATE(7480)] = 340595, + [SMALL_STATE(7481)] = 340602, + [SMALL_STATE(7482)] = 340609, + [SMALL_STATE(7483)] = 340616, + [SMALL_STATE(7484)] = 340623, + [SMALL_STATE(7485)] = 340630, + [SMALL_STATE(7486)] = 340637, + [SMALL_STATE(7487)] = 340644, + [SMALL_STATE(7488)] = 340651, + [SMALL_STATE(7489)] = 340658, + [SMALL_STATE(7490)] = 340665, + [SMALL_STATE(7491)] = 340672, + [SMALL_STATE(7492)] = 340679, + [SMALL_STATE(7493)] = 340686, + [SMALL_STATE(7494)] = 340693, + [SMALL_STATE(7495)] = 340700, + [SMALL_STATE(7496)] = 340707, + [SMALL_STATE(7497)] = 340714, + [SMALL_STATE(7498)] = 340721, + [SMALL_STATE(7499)] = 340728, + [SMALL_STATE(7500)] = 340735, + [SMALL_STATE(7501)] = 340742, + [SMALL_STATE(7502)] = 340749, + [SMALL_STATE(7503)] = 340756, + [SMALL_STATE(7504)] = 340763, + [SMALL_STATE(7505)] = 340770, + [SMALL_STATE(7506)] = 340777, + [SMALL_STATE(7507)] = 340784, + [SMALL_STATE(7508)] = 340791, + [SMALL_STATE(7509)] = 340798, + [SMALL_STATE(7510)] = 340805, + [SMALL_STATE(7511)] = 340812, + [SMALL_STATE(7512)] = 340819, + [SMALL_STATE(7513)] = 340826, + [SMALL_STATE(7514)] = 340833, + [SMALL_STATE(7515)] = 340840, + [SMALL_STATE(7516)] = 340847, + [SMALL_STATE(7517)] = 340854, + [SMALL_STATE(7518)] = 340861, + [SMALL_STATE(7519)] = 340868, + [SMALL_STATE(7520)] = 340875, + [SMALL_STATE(7521)] = 340882, + [SMALL_STATE(7522)] = 340889, + [SMALL_STATE(7523)] = 340896, + [SMALL_STATE(7524)] = 340903, + [SMALL_STATE(7525)] = 340910, + [SMALL_STATE(7526)] = 340917, + [SMALL_STATE(7527)] = 340924, + [SMALL_STATE(7528)] = 340931, + [SMALL_STATE(7529)] = 340938, + [SMALL_STATE(7530)] = 340945, + [SMALL_STATE(7531)] = 340952, + [SMALL_STATE(7532)] = 340959, + [SMALL_STATE(7533)] = 340966, + [SMALL_STATE(7534)] = 340973, + [SMALL_STATE(7535)] = 340980, + [SMALL_STATE(7536)] = 340987, + [SMALL_STATE(7537)] = 340994, + [SMALL_STATE(7538)] = 341001, + [SMALL_STATE(7539)] = 341008, + [SMALL_STATE(7540)] = 341015, + [SMALL_STATE(7541)] = 341022, + [SMALL_STATE(7542)] = 341029, + [SMALL_STATE(7543)] = 341036, + [SMALL_STATE(7544)] = 341043, + [SMALL_STATE(7545)] = 341050, + [SMALL_STATE(7546)] = 341057, + [SMALL_STATE(7547)] = 341064, + [SMALL_STATE(7548)] = 341071, + [SMALL_STATE(7549)] = 341078, + [SMALL_STATE(7550)] = 341085, + [SMALL_STATE(7551)] = 341092, + [SMALL_STATE(7552)] = 341099, + [SMALL_STATE(7553)] = 341106, + [SMALL_STATE(7554)] = 341113, + [SMALL_STATE(7555)] = 341120, + [SMALL_STATE(7556)] = 341127, + [SMALL_STATE(7557)] = 341134, + [SMALL_STATE(7558)] = 341141, + [SMALL_STATE(7559)] = 341148, + [SMALL_STATE(7560)] = 341155, + [SMALL_STATE(7561)] = 341162, + [SMALL_STATE(7562)] = 341169, + [SMALL_STATE(7563)] = 341176, + [SMALL_STATE(7564)] = 341183, + [SMALL_STATE(7565)] = 341190, + [SMALL_STATE(7566)] = 341197, + [SMALL_STATE(7567)] = 341204, + [SMALL_STATE(7568)] = 341211, + [SMALL_STATE(7569)] = 341218, + [SMALL_STATE(7570)] = 341225, + [SMALL_STATE(7571)] = 341232, + [SMALL_STATE(7572)] = 341239, + [SMALL_STATE(7573)] = 341246, + [SMALL_STATE(7574)] = 341253, + [SMALL_STATE(7575)] = 341260, + [SMALL_STATE(7576)] = 341267, + [SMALL_STATE(7577)] = 341274, + [SMALL_STATE(7578)] = 341281, + [SMALL_STATE(7579)] = 341288, + [SMALL_STATE(7580)] = 341295, + [SMALL_STATE(7581)] = 341302, + [SMALL_STATE(7582)] = 341309, + [SMALL_STATE(7583)] = 341316, + [SMALL_STATE(7584)] = 341323, + [SMALL_STATE(7585)] = 341330, + [SMALL_STATE(7586)] = 341337, + [SMALL_STATE(7587)] = 341344, + [SMALL_STATE(7588)] = 341351, + [SMALL_STATE(7589)] = 341358, + [SMALL_STATE(7590)] = 341365, + [SMALL_STATE(7591)] = 341372, + [SMALL_STATE(7592)] = 341379, + [SMALL_STATE(7593)] = 341386, + [SMALL_STATE(7594)] = 341393, + [SMALL_STATE(7595)] = 341400, + [SMALL_STATE(7596)] = 341407, + [SMALL_STATE(7597)] = 341414, + [SMALL_STATE(7598)] = 341421, + [SMALL_STATE(7599)] = 341428, + [SMALL_STATE(7600)] = 341435, + [SMALL_STATE(7601)] = 341442, + [SMALL_STATE(7602)] = 341449, + [SMALL_STATE(7603)] = 341456, + [SMALL_STATE(7604)] = 341463, + [SMALL_STATE(7605)] = 341470, + [SMALL_STATE(7606)] = 341477, + [SMALL_STATE(7607)] = 341484, + [SMALL_STATE(7608)] = 341491, + [SMALL_STATE(7609)] = 341498, + [SMALL_STATE(7610)] = 341505, + [SMALL_STATE(7611)] = 341512, + [SMALL_STATE(7612)] = 341519, + [SMALL_STATE(7613)] = 341526, + [SMALL_STATE(7614)] = 341533, + [SMALL_STATE(7615)] = 341540, + [SMALL_STATE(7616)] = 341547, + [SMALL_STATE(7617)] = 341554, + [SMALL_STATE(7618)] = 341561, + [SMALL_STATE(7619)] = 341568, + [SMALL_STATE(7620)] = 341575, + [SMALL_STATE(7621)] = 341582, + [SMALL_STATE(7622)] = 341589, + [SMALL_STATE(7623)] = 341596, + [SMALL_STATE(7624)] = 341603, + [SMALL_STATE(7625)] = 341610, + [SMALL_STATE(7626)] = 341617, + [SMALL_STATE(7627)] = 341624, + [SMALL_STATE(7628)] = 341631, + [SMALL_STATE(7629)] = 341638, + [SMALL_STATE(7630)] = 341645, + [SMALL_STATE(7631)] = 341652, + [SMALL_STATE(7632)] = 341659, + [SMALL_STATE(7633)] = 341666, + [SMALL_STATE(7634)] = 341673, + [SMALL_STATE(7635)] = 341680, + [SMALL_STATE(7636)] = 341687, + [SMALL_STATE(7637)] = 341694, + [SMALL_STATE(7638)] = 341701, + [SMALL_STATE(7639)] = 341708, + [SMALL_STATE(7640)] = 341715, + [SMALL_STATE(7641)] = 341722, + [SMALL_STATE(7642)] = 341729, + [SMALL_STATE(7643)] = 341736, + [SMALL_STATE(7644)] = 341743, + [SMALL_STATE(7645)] = 341750, + [SMALL_STATE(7646)] = 341757, + [SMALL_STATE(7647)] = 341764, + [SMALL_STATE(7648)] = 341771, + [SMALL_STATE(7649)] = 341778, + [SMALL_STATE(7650)] = 341785, + [SMALL_STATE(7651)] = 341792, + [SMALL_STATE(7652)] = 341799, + [SMALL_STATE(7653)] = 341806, + [SMALL_STATE(7654)] = 341813, + [SMALL_STATE(7655)] = 341820, + [SMALL_STATE(7656)] = 341827, + [SMALL_STATE(7657)] = 341834, + [SMALL_STATE(7658)] = 341841, + [SMALL_STATE(7659)] = 341848, + [SMALL_STATE(7660)] = 341855, + [SMALL_STATE(7661)] = 341862, + [SMALL_STATE(7662)] = 341869, + [SMALL_STATE(7663)] = 341876, + [SMALL_STATE(7664)] = 341883, + [SMALL_STATE(7665)] = 341890, + [SMALL_STATE(7666)] = 341897, + [SMALL_STATE(7667)] = 341904, + [SMALL_STATE(7668)] = 341911, + [SMALL_STATE(7669)] = 341918, + [SMALL_STATE(7670)] = 341925, + [SMALL_STATE(7671)] = 341932, + [SMALL_STATE(7672)] = 341939, + [SMALL_STATE(7673)] = 341946, + [SMALL_STATE(7674)] = 341953, + [SMALL_STATE(7675)] = 341960, + [SMALL_STATE(7676)] = 341967, + [SMALL_STATE(7677)] = 341974, + [SMALL_STATE(7678)] = 341981, + [SMALL_STATE(7679)] = 341988, + [SMALL_STATE(7680)] = 341995, + [SMALL_STATE(7681)] = 342002, + [SMALL_STATE(7682)] = 342009, + [SMALL_STATE(7683)] = 342016, + [SMALL_STATE(7684)] = 342023, + [SMALL_STATE(7685)] = 342030, + [SMALL_STATE(7686)] = 342037, + [SMALL_STATE(7687)] = 342044, + [SMALL_STATE(7688)] = 342051, + [SMALL_STATE(7689)] = 342058, + [SMALL_STATE(7690)] = 342065, + [SMALL_STATE(7691)] = 342072, + [SMALL_STATE(7692)] = 342079, + [SMALL_STATE(7693)] = 342086, + [SMALL_STATE(7694)] = 342093, + [SMALL_STATE(7695)] = 342100, + [SMALL_STATE(7696)] = 342107, + [SMALL_STATE(7697)] = 342114, + [SMALL_STATE(7698)] = 342121, + [SMALL_STATE(7699)] = 342128, + [SMALL_STATE(7700)] = 342135, + [SMALL_STATE(7701)] = 342142, + [SMALL_STATE(7702)] = 342149, + [SMALL_STATE(7703)] = 342156, + [SMALL_STATE(7704)] = 342163, + [SMALL_STATE(7705)] = 342170, + [SMALL_STATE(7706)] = 342177, + [SMALL_STATE(7707)] = 342184, + [SMALL_STATE(7708)] = 342191, + [SMALL_STATE(7709)] = 342198, + [SMALL_STATE(7710)] = 342205, + [SMALL_STATE(7711)] = 342212, + [SMALL_STATE(7712)] = 342219, + [SMALL_STATE(7713)] = 342226, + [SMALL_STATE(7714)] = 342233, + [SMALL_STATE(7715)] = 342240, + [SMALL_STATE(7716)] = 342247, + [SMALL_STATE(7717)] = 342254, + [SMALL_STATE(7718)] = 342261, + [SMALL_STATE(7719)] = 342268, + [SMALL_STATE(7720)] = 342275, + [SMALL_STATE(7721)] = 342282, + [SMALL_STATE(7722)] = 342289, + [SMALL_STATE(7723)] = 342296, + [SMALL_STATE(7724)] = 342303, + [SMALL_STATE(7725)] = 342310, + [SMALL_STATE(7726)] = 342317, + [SMALL_STATE(7727)] = 342324, + [SMALL_STATE(7728)] = 342331, + [SMALL_STATE(7729)] = 342338, + [SMALL_STATE(7730)] = 342345, + [SMALL_STATE(7731)] = 342352, + [SMALL_STATE(7732)] = 342359, + [SMALL_STATE(7733)] = 342366, + [SMALL_STATE(7734)] = 342373, + [SMALL_STATE(7735)] = 342380, + [SMALL_STATE(7736)] = 342387, + [SMALL_STATE(7737)] = 342394, + [SMALL_STATE(7738)] = 342401, + [SMALL_STATE(7739)] = 342408, + [SMALL_STATE(7740)] = 342415, + [SMALL_STATE(7741)] = 342422, + [SMALL_STATE(7742)] = 342429, + [SMALL_STATE(7743)] = 342436, + [SMALL_STATE(7744)] = 342443, + [SMALL_STATE(7745)] = 342450, + [SMALL_STATE(7746)] = 342457, + [SMALL_STATE(7747)] = 342464, + [SMALL_STATE(7748)] = 342471, + [SMALL_STATE(7749)] = 342478, + [SMALL_STATE(7750)] = 342485, + [SMALL_STATE(7751)] = 342492, + [SMALL_STATE(7752)] = 342499, + [SMALL_STATE(7753)] = 342506, + [SMALL_STATE(7754)] = 342513, + [SMALL_STATE(7755)] = 342520, + [SMALL_STATE(7756)] = 342527, + [SMALL_STATE(7757)] = 342534, + [SMALL_STATE(7758)] = 342541, + [SMALL_STATE(7759)] = 342548, + [SMALL_STATE(7760)] = 342555, + [SMALL_STATE(7761)] = 342562, + [SMALL_STATE(7762)] = 342569, + [SMALL_STATE(7763)] = 342576, + [SMALL_STATE(7764)] = 342583, + [SMALL_STATE(7765)] = 342590, + [SMALL_STATE(7766)] = 342597, + [SMALL_STATE(7767)] = 342604, + [SMALL_STATE(7768)] = 342611, + [SMALL_STATE(7769)] = 342618, + [SMALL_STATE(7770)] = 342625, + [SMALL_STATE(7771)] = 342632, + [SMALL_STATE(7772)] = 342639, + [SMALL_STATE(7773)] = 342646, + [SMALL_STATE(7774)] = 342653, + [SMALL_STATE(7775)] = 342660, + [SMALL_STATE(7776)] = 342667, + [SMALL_STATE(7777)] = 342674, + [SMALL_STATE(7778)] = 342681, + [SMALL_STATE(7779)] = 342688, + [SMALL_STATE(7780)] = 342695, + [SMALL_STATE(7781)] = 342702, + [SMALL_STATE(7782)] = 342709, + [SMALL_STATE(7783)] = 342716, + [SMALL_STATE(7784)] = 342723, + [SMALL_STATE(7785)] = 342730, + [SMALL_STATE(7786)] = 342737, + [SMALL_STATE(7787)] = 342744, + [SMALL_STATE(7788)] = 342751, + [SMALL_STATE(7789)] = 342758, + [SMALL_STATE(7790)] = 342765, + [SMALL_STATE(7791)] = 342772, + [SMALL_STATE(7792)] = 342779, + [SMALL_STATE(7793)] = 342786, + [SMALL_STATE(7794)] = 342793, + [SMALL_STATE(7795)] = 342800, + [SMALL_STATE(7796)] = 342807, + [SMALL_STATE(7797)] = 342814, + [SMALL_STATE(7798)] = 342821, + [SMALL_STATE(7799)] = 342828, + [SMALL_STATE(7800)] = 342835, + [SMALL_STATE(7801)] = 342842, + [SMALL_STATE(7802)] = 342849, + [SMALL_STATE(7803)] = 342856, + [SMALL_STATE(7804)] = 342863, + [SMALL_STATE(7805)] = 342870, + [SMALL_STATE(7806)] = 342877, + [SMALL_STATE(7807)] = 342884, + [SMALL_STATE(7808)] = 342891, + [SMALL_STATE(7809)] = 342898, + [SMALL_STATE(7810)] = 342905, + [SMALL_STATE(7811)] = 342912, + [SMALL_STATE(7812)] = 342919, + [SMALL_STATE(7813)] = 342926, + [SMALL_STATE(7814)] = 342933, + [SMALL_STATE(7815)] = 342940, + [SMALL_STATE(7816)] = 342947, + [SMALL_STATE(7817)] = 342954, + [SMALL_STATE(7818)] = 342961, + [SMALL_STATE(7819)] = 342968, + [SMALL_STATE(7820)] = 342975, + [SMALL_STATE(7821)] = 342982, + [SMALL_STATE(7822)] = 342989, + [SMALL_STATE(7823)] = 342996, + [SMALL_STATE(7824)] = 343003, + [SMALL_STATE(7825)] = 343010, + [SMALL_STATE(7826)] = 343017, + [SMALL_STATE(7827)] = 343024, + [SMALL_STATE(7828)] = 343031, + [SMALL_STATE(7829)] = 343038, + [SMALL_STATE(7830)] = 343045, + [SMALL_STATE(7831)] = 343052, + [SMALL_STATE(7832)] = 343059, + [SMALL_STATE(7833)] = 343066, + [SMALL_STATE(7834)] = 343073, + [SMALL_STATE(7835)] = 343080, + [SMALL_STATE(7836)] = 343087, + [SMALL_STATE(7837)] = 343094, + [SMALL_STATE(7838)] = 343101, + [SMALL_STATE(7839)] = 343108, + [SMALL_STATE(7840)] = 343115, + [SMALL_STATE(7841)] = 343122, + [SMALL_STATE(7842)] = 343129, + [SMALL_STATE(7843)] = 343136, + [SMALL_STATE(7844)] = 343143, + [SMALL_STATE(7845)] = 343150, + [SMALL_STATE(7846)] = 343157, + [SMALL_STATE(7847)] = 343164, + [SMALL_STATE(7848)] = 343171, + [SMALL_STATE(7849)] = 343178, + [SMALL_STATE(7850)] = 343185, + [SMALL_STATE(7851)] = 343192, + [SMALL_STATE(7852)] = 343199, + [SMALL_STATE(7853)] = 343206, + [SMALL_STATE(7854)] = 343213, + [SMALL_STATE(7855)] = 343220, + [SMALL_STATE(7856)] = 343227, + [SMALL_STATE(7857)] = 343234, + [SMALL_STATE(7858)] = 343241, + [SMALL_STATE(7859)] = 343248, + [SMALL_STATE(7860)] = 343255, + [SMALL_STATE(7861)] = 343262, + [SMALL_STATE(7862)] = 343269, + [SMALL_STATE(7863)] = 343276, + [SMALL_STATE(7864)] = 343283, + [SMALL_STATE(7865)] = 343290, + [SMALL_STATE(7866)] = 343297, + [SMALL_STATE(7867)] = 343304, + [SMALL_STATE(7868)] = 343311, + [SMALL_STATE(7869)] = 343318, + [SMALL_STATE(7870)] = 343325, + [SMALL_STATE(7871)] = 343332, + [SMALL_STATE(7872)] = 343339, + [SMALL_STATE(7873)] = 343346, + [SMALL_STATE(7874)] = 343353, + [SMALL_STATE(7875)] = 343360, + [SMALL_STATE(7876)] = 343367, + [SMALL_STATE(7877)] = 343374, + [SMALL_STATE(7878)] = 343381, + [SMALL_STATE(7879)] = 343388, + [SMALL_STATE(7880)] = 343395, + [SMALL_STATE(7881)] = 343402, + [SMALL_STATE(7882)] = 343409, + [SMALL_STATE(7883)] = 343416, + [SMALL_STATE(7884)] = 343423, + [SMALL_STATE(7885)] = 343430, + [SMALL_STATE(7886)] = 343437, + [SMALL_STATE(7887)] = 343444, + [SMALL_STATE(7888)] = 343451, + [SMALL_STATE(7889)] = 343458, + [SMALL_STATE(7890)] = 343465, + [SMALL_STATE(7891)] = 343472, + [SMALL_STATE(7892)] = 343479, + [SMALL_STATE(7893)] = 343486, + [SMALL_STATE(7894)] = 343493, + [SMALL_STATE(7895)] = 343500, + [SMALL_STATE(7896)] = 343507, + [SMALL_STATE(7897)] = 343514, + [SMALL_STATE(7898)] = 343521, + [SMALL_STATE(7899)] = 343528, + [SMALL_STATE(7900)] = 343535, + [SMALL_STATE(7901)] = 343542, + [SMALL_STATE(7902)] = 343549, + [SMALL_STATE(7903)] = 343556, + [SMALL_STATE(7904)] = 343563, + [SMALL_STATE(7905)] = 343570, + [SMALL_STATE(7906)] = 343577, + [SMALL_STATE(7907)] = 343584, + [SMALL_STATE(7908)] = 343591, + [SMALL_STATE(7909)] = 343598, + [SMALL_STATE(7910)] = 343605, + [SMALL_STATE(7911)] = 343612, + [SMALL_STATE(7912)] = 343619, + [SMALL_STATE(7913)] = 343626, + [SMALL_STATE(7914)] = 343633, + [SMALL_STATE(7915)] = 343640, + [SMALL_STATE(7916)] = 343647, + [SMALL_STATE(7917)] = 343654, + [SMALL_STATE(7918)] = 343661, + [SMALL_STATE(7919)] = 343668, + [SMALL_STATE(7920)] = 343675, + [SMALL_STATE(7921)] = 343682, + [SMALL_STATE(7922)] = 343689, + [SMALL_STATE(7923)] = 343696, + [SMALL_STATE(7924)] = 343703, + [SMALL_STATE(7925)] = 343710, + [SMALL_STATE(7926)] = 343717, + [SMALL_STATE(7927)] = 343724, + [SMALL_STATE(7928)] = 343731, + [SMALL_STATE(7929)] = 343738, + [SMALL_STATE(7930)] = 343745, + [SMALL_STATE(7931)] = 343752, + [SMALL_STATE(7932)] = 343759, + [SMALL_STATE(7933)] = 343766, + [SMALL_STATE(7934)] = 343773, + [SMALL_STATE(7935)] = 343780, + [SMALL_STATE(7936)] = 343787, + [SMALL_STATE(7937)] = 343794, + [SMALL_STATE(7938)] = 343801, + [SMALL_STATE(7939)] = 343808, + [SMALL_STATE(7940)] = 343815, + [SMALL_STATE(7941)] = 343822, + [SMALL_STATE(7942)] = 343829, + [SMALL_STATE(7943)] = 343836, + [SMALL_STATE(7944)] = 343843, + [SMALL_STATE(7945)] = 343850, + [SMALL_STATE(7946)] = 343857, + [SMALL_STATE(7947)] = 343864, + [SMALL_STATE(7948)] = 343871, + [SMALL_STATE(7949)] = 343878, + [SMALL_STATE(7950)] = 343885, + [SMALL_STATE(7951)] = 343892, + [SMALL_STATE(7952)] = 343899, + [SMALL_STATE(7953)] = 343906, + [SMALL_STATE(7954)] = 343913, + [SMALL_STATE(7955)] = 343920, + [SMALL_STATE(7956)] = 343927, + [SMALL_STATE(7957)] = 343934, + [SMALL_STATE(7958)] = 343941, + [SMALL_STATE(7959)] = 343948, + [SMALL_STATE(7960)] = 343955, + [SMALL_STATE(7961)] = 343962, + [SMALL_STATE(7962)] = 343969, + [SMALL_STATE(7963)] = 343976, + [SMALL_STATE(7964)] = 343983, + [SMALL_STATE(7965)] = 343990, + [SMALL_STATE(7966)] = 343997, + [SMALL_STATE(7967)] = 344004, + [SMALL_STATE(7968)] = 344011, + [SMALL_STATE(7969)] = 344018, + [SMALL_STATE(7970)] = 344025, + [SMALL_STATE(7971)] = 344032, + [SMALL_STATE(7972)] = 344039, + [SMALL_STATE(7973)] = 344046, + [SMALL_STATE(7974)] = 344053, + [SMALL_STATE(7975)] = 344060, + [SMALL_STATE(7976)] = 344067, + [SMALL_STATE(7977)] = 344074, + [SMALL_STATE(7978)] = 344081, + [SMALL_STATE(7979)] = 344088, + [SMALL_STATE(7980)] = 344095, + [SMALL_STATE(7981)] = 344102, + [SMALL_STATE(7982)] = 344109, + [SMALL_STATE(7983)] = 344116, + [SMALL_STATE(7984)] = 344123, + [SMALL_STATE(7985)] = 344130, + [SMALL_STATE(7986)] = 344137, + [SMALL_STATE(7987)] = 344144, + [SMALL_STATE(7988)] = 344151, + [SMALL_STATE(7989)] = 344158, + [SMALL_STATE(7990)] = 344165, + [SMALL_STATE(7991)] = 344172, + [SMALL_STATE(7992)] = 344179, + [SMALL_STATE(7993)] = 344186, + [SMALL_STATE(7994)] = 344193, + [SMALL_STATE(7995)] = 344200, + [SMALL_STATE(7996)] = 344207, + [SMALL_STATE(7997)] = 344214, + [SMALL_STATE(7998)] = 344221, + [SMALL_STATE(7999)] = 344228, + [SMALL_STATE(8000)] = 344235, + [SMALL_STATE(8001)] = 344242, + [SMALL_STATE(8002)] = 344249, + [SMALL_STATE(8003)] = 344256, + [SMALL_STATE(8004)] = 344263, + [SMALL_STATE(8005)] = 344270, + [SMALL_STATE(8006)] = 344277, + [SMALL_STATE(8007)] = 344284, + [SMALL_STATE(8008)] = 344291, + [SMALL_STATE(8009)] = 344298, + [SMALL_STATE(8010)] = 344305, + [SMALL_STATE(8011)] = 344312, + [SMALL_STATE(8012)] = 344319, + [SMALL_STATE(8013)] = 344326, + [SMALL_STATE(8014)] = 344333, + [SMALL_STATE(8015)] = 344340, + [SMALL_STATE(8016)] = 344347, + [SMALL_STATE(8017)] = 344354, + [SMALL_STATE(8018)] = 344361, + [SMALL_STATE(8019)] = 344368, + [SMALL_STATE(8020)] = 344375, + [SMALL_STATE(8021)] = 344382, + [SMALL_STATE(8022)] = 344389, + [SMALL_STATE(8023)] = 344396, + [SMALL_STATE(8024)] = 344403, + [SMALL_STATE(8025)] = 344410, + [SMALL_STATE(8026)] = 344417, + [SMALL_STATE(8027)] = 344424, + [SMALL_STATE(8028)] = 344431, + [SMALL_STATE(8029)] = 344438, + [SMALL_STATE(8030)] = 344445, + [SMALL_STATE(8031)] = 344452, + [SMALL_STATE(8032)] = 344459, + [SMALL_STATE(8033)] = 344466, + [SMALL_STATE(8034)] = 344473, + [SMALL_STATE(8035)] = 344480, + [SMALL_STATE(8036)] = 344487, + [SMALL_STATE(8037)] = 344494, + [SMALL_STATE(8038)] = 344501, + [SMALL_STATE(8039)] = 344508, + [SMALL_STATE(8040)] = 344515, + [SMALL_STATE(8041)] = 344522, + [SMALL_STATE(8042)] = 344529, + [SMALL_STATE(8043)] = 344536, + [SMALL_STATE(8044)] = 344543, + [SMALL_STATE(8045)] = 344550, + [SMALL_STATE(8046)] = 344557, + [SMALL_STATE(8047)] = 344564, + [SMALL_STATE(8048)] = 344571, + [SMALL_STATE(8049)] = 344578, + [SMALL_STATE(8050)] = 344585, + [SMALL_STATE(8051)] = 344592, + [SMALL_STATE(8052)] = 344599, + [SMALL_STATE(8053)] = 344606, + [SMALL_STATE(8054)] = 344613, + [SMALL_STATE(8055)] = 344620, + [SMALL_STATE(8056)] = 344627, + [SMALL_STATE(8057)] = 344634, + [SMALL_STATE(8058)] = 344641, + [SMALL_STATE(8059)] = 344648, + [SMALL_STATE(8060)] = 344655, + [SMALL_STATE(8061)] = 344662, + [SMALL_STATE(8062)] = 344669, + [SMALL_STATE(8063)] = 344676, + [SMALL_STATE(8064)] = 344683, + [SMALL_STATE(8065)] = 344690, + [SMALL_STATE(8066)] = 344697, + [SMALL_STATE(8067)] = 344704, + [SMALL_STATE(8068)] = 344711, + [SMALL_STATE(8069)] = 344718, + [SMALL_STATE(8070)] = 344725, + [SMALL_STATE(8071)] = 344732, + [SMALL_STATE(8072)] = 344739, + [SMALL_STATE(8073)] = 344746, + [SMALL_STATE(8074)] = 344753, + [SMALL_STATE(8075)] = 344760, + [SMALL_STATE(8076)] = 344767, + [SMALL_STATE(8077)] = 344774, + [SMALL_STATE(8078)] = 344781, + [SMALL_STATE(8079)] = 344788, + [SMALL_STATE(8080)] = 344795, + [SMALL_STATE(8081)] = 344802, + [SMALL_STATE(8082)] = 344809, + [SMALL_STATE(8083)] = 344816, + [SMALL_STATE(8084)] = 344823, + [SMALL_STATE(8085)] = 344830, + [SMALL_STATE(8086)] = 344837, + [SMALL_STATE(8087)] = 344844, + [SMALL_STATE(8088)] = 344851, + [SMALL_STATE(8089)] = 344858, + [SMALL_STATE(8090)] = 344865, + [SMALL_STATE(8091)] = 344872, + [SMALL_STATE(8092)] = 344879, + [SMALL_STATE(8093)] = 344886, + [SMALL_STATE(8094)] = 344893, + [SMALL_STATE(8095)] = 344900, + [SMALL_STATE(8096)] = 344907, + [SMALL_STATE(8097)] = 344914, + [SMALL_STATE(8098)] = 344921, + [SMALL_STATE(8099)] = 344928, + [SMALL_STATE(8100)] = 344935, + [SMALL_STATE(8101)] = 344942, + [SMALL_STATE(8102)] = 344949, + [SMALL_STATE(8103)] = 344956, + [SMALL_STATE(8104)] = 344963, + [SMALL_STATE(8105)] = 344970, + [SMALL_STATE(8106)] = 344977, + [SMALL_STATE(8107)] = 344984, + [SMALL_STATE(8108)] = 344991, + [SMALL_STATE(8109)] = 344998, + [SMALL_STATE(8110)] = 345005, + [SMALL_STATE(8111)] = 345012, + [SMALL_STATE(8112)] = 345019, + [SMALL_STATE(8113)] = 345026, + [SMALL_STATE(8114)] = 345033, + [SMALL_STATE(8115)] = 345040, + [SMALL_STATE(8116)] = 345047, + [SMALL_STATE(8117)] = 345054, + [SMALL_STATE(8118)] = 345061, + [SMALL_STATE(8119)] = 345068, + [SMALL_STATE(8120)] = 345075, + [SMALL_STATE(8121)] = 345082, + [SMALL_STATE(8122)] = 345089, + [SMALL_STATE(8123)] = 345096, + [SMALL_STATE(8124)] = 345103, + [SMALL_STATE(8125)] = 345110, + [SMALL_STATE(8126)] = 345117, + [SMALL_STATE(8127)] = 345124, + [SMALL_STATE(8128)] = 345131, + [SMALL_STATE(8129)] = 345138, + [SMALL_STATE(8130)] = 345145, + [SMALL_STATE(8131)] = 345152, + [SMALL_STATE(8132)] = 345159, + [SMALL_STATE(8133)] = 345166, + [SMALL_STATE(8134)] = 345173, + [SMALL_STATE(8135)] = 345180, + [SMALL_STATE(8136)] = 345187, + [SMALL_STATE(8137)] = 345194, + [SMALL_STATE(8138)] = 345201, + [SMALL_STATE(8139)] = 345208, + [SMALL_STATE(8140)] = 345215, + [SMALL_STATE(8141)] = 345222, + [SMALL_STATE(8142)] = 345229, + [SMALL_STATE(8143)] = 345236, + [SMALL_STATE(8144)] = 345243, + [SMALL_STATE(8145)] = 345250, + [SMALL_STATE(8146)] = 345257, + [SMALL_STATE(8147)] = 345264, + [SMALL_STATE(8148)] = 345271, + [SMALL_STATE(8149)] = 345278, + [SMALL_STATE(8150)] = 345285, + [SMALL_STATE(8151)] = 345292, + [SMALL_STATE(8152)] = 345299, + [SMALL_STATE(8153)] = 345306, + [SMALL_STATE(8154)] = 345313, + [SMALL_STATE(8155)] = 345320, + [SMALL_STATE(8156)] = 345327, + [SMALL_STATE(8157)] = 345334, + [SMALL_STATE(8158)] = 345341, + [SMALL_STATE(8159)] = 345348, + [SMALL_STATE(8160)] = 345355, + [SMALL_STATE(8161)] = 345362, + [SMALL_STATE(8162)] = 345369, + [SMALL_STATE(8163)] = 345376, + [SMALL_STATE(8164)] = 345383, + [SMALL_STATE(8165)] = 345390, + [SMALL_STATE(8166)] = 345397, + [SMALL_STATE(8167)] = 345404, + [SMALL_STATE(8168)] = 345411, + [SMALL_STATE(8169)] = 345418, + [SMALL_STATE(8170)] = 345425, + [SMALL_STATE(8171)] = 345432, + [SMALL_STATE(8172)] = 345439, + [SMALL_STATE(8173)] = 345446, + [SMALL_STATE(8174)] = 345453, + [SMALL_STATE(8175)] = 345460, + [SMALL_STATE(8176)] = 345467, + [SMALL_STATE(8177)] = 345474, + [SMALL_STATE(8178)] = 345481, + [SMALL_STATE(8179)] = 345488, + [SMALL_STATE(8180)] = 345495, + [SMALL_STATE(8181)] = 345502, + [SMALL_STATE(8182)] = 345509, + [SMALL_STATE(8183)] = 345516, + [SMALL_STATE(8184)] = 345523, + [SMALL_STATE(8185)] = 345530, + [SMALL_STATE(8186)] = 345537, + [SMALL_STATE(8187)] = 345544, + [SMALL_STATE(8188)] = 345551, + [SMALL_STATE(8189)] = 345558, + [SMALL_STATE(8190)] = 345565, + [SMALL_STATE(8191)] = 345572, + [SMALL_STATE(8192)] = 345579, + [SMALL_STATE(8193)] = 345586, + [SMALL_STATE(8194)] = 345593, + [SMALL_STATE(8195)] = 345600, + [SMALL_STATE(8196)] = 345607, + [SMALL_STATE(8197)] = 345614, + [SMALL_STATE(8198)] = 345621, + [SMALL_STATE(8199)] = 345628, + [SMALL_STATE(8200)] = 345635, + [SMALL_STATE(8201)] = 345642, + [SMALL_STATE(8202)] = 345649, + [SMALL_STATE(8203)] = 345656, + [SMALL_STATE(8204)] = 345663, + [SMALL_STATE(8205)] = 345670, + [SMALL_STATE(8206)] = 345677, + [SMALL_STATE(8207)] = 345684, + [SMALL_STATE(8208)] = 345691, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -341661,7944 +372909,8593 @@ 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(1063), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), [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), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [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), - [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), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), [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), - [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), - [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), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), [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), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [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), - [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), - [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), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), [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), - [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), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), [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), - [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), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7900), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 60), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 79), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 45), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 46), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 83), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 109), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 112), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 1), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1237), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7274), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7812), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3801), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4172), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4172), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(101), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(445), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(446), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4424), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7900), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(65), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(671), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(2107), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(648), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(801), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(802), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4520), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4072), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3815), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6317), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1247), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6285), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1236), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1214), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6818), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5248), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(116), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(117), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(118), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(113), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6598), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7092), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1235), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(8133), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 59), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), [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), - [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), - [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), - [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), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [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), - [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), - [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), - [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), - [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), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 19), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), - [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), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8029), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1237), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7274), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7812), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3801), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4172), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4172), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4424), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7900), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(648), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(802), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4520), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4072), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3815), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6317), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6285), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6818), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5248), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6598), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7092), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1235), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8133), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 1), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 1), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4336), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 1), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 1), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7763), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 31), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 31), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 35), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 35), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 11), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 11), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7600), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 19), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 19), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(931), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4106), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4338), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4022), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4023), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6513), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(913), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6154), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(967), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6747), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5263), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(389), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(390), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(391), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(332), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8010), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(930), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1367), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8192), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 39), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 39), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 18), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 18), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1001), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4111), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4358), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3834), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3835), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6429), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(986), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6175), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1171), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6738), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5304), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(420), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(421), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(422), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(372), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8009), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1000), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1543), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8202), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4008), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6482), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1188), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6150), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1285), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6793), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5243), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(381), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(382), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7104), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8190), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1141), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4086), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4274), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4057), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4058), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6387), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1180), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6245), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1373), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6769), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5362), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(189), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(190), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(191), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(168), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7601), + [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1131), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1841), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8151), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3823), + [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6367), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6170), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6725), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5301), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7163), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8200), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1110), + [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4166), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4262), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3876), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3877), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6329), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1151), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6216), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1329), + [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6716), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5384), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(161), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(162), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(163), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(148), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7516), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1103), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1837), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8146), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1150), + [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4096), + [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4282), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3880), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3883), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6421), + [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1205), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6270), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1424), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6798), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5339), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(205), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(206), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(207), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(184), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7774), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1142), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1805), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8155), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1467), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3984), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6360), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6235), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6749), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5302), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7170), + [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), + [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8149), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4002), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4003), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6477), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1165), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6148), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6787), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5231), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8189), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3850), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6400), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6254), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1813), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6785), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7143), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1635), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8153), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1581), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6537), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6201), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6767), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5340), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7095), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), + [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8144), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1417), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4174), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4524), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1433), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7892), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1416), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(621), + [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7094), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4045), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6336), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1307), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6160), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6783), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8195), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), + [2675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4016), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6499), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6152), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6814), + [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8191), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3817), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6330), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1375), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6168), + [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1610), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6721), + [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5300), + [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(413), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8199), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3852), + [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6535), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6181), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6757), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5310), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(429), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), + [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8205), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3818), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3819), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6395), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6249), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6775), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5402), + [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8152), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1556), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3829), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6396), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6734), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5303), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(368), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8201), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1631), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6349), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6233), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6746), + [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5327), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1630), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8148), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4029), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6521), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6156), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), + [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6704), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5268), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(336), + [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8193), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6162), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3945), + [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6509), + [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6203), + [3224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6777), + [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5359), + [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [3245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [3248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8124), + [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4012), + [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4019), + [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6371), + [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1905), + [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6242), + [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), + [3272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6761), + [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5364), + [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [3293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8150), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3881), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6308), + [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6225), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6756), + [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5344), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8173), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), + [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3840), + [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), + [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6455), + [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6177), + [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), + [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6745), + [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5306), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(424), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(376), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1931), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8203), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4067), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6541), + [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), + [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6806), + [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8165), + [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1855), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), + [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4032), + [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4061), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6312), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6207), + [3713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), + [3716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6804), + [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5352), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(720), + [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8145), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2185), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4178), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4540), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2195), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7995), + [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2184), + [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), + [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6412), + [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6264), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6794), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5324), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(728), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8154), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), + [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3854), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6497), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1661), + [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6208), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6737), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8170), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2074), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3873), + [3930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), + [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6298), + [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1988), + [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6221), + [3942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2494), + [3945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6830), + [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5341), + [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(277), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [3966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8172), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), + [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), + [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6528), + [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), + [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6236), + [4151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2552), + [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6779), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5230), + [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [4163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8163), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), + [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2468), + [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4101), + [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4296), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3991), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3992), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6505), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2527), + [4260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6294), + [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2468), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2632), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6831), + [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5220), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(229), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(230), + [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(231), + [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(208), + [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7923), + [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2467), + [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2908), + [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(8161), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [4349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), + [4352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2175), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [4411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), + [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7158), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [4426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), + [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [4435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6321), + [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6205), + [4444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6821), + [4450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5331), + [4453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [4459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [4462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2050), + [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8169), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2438), + [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2327), + [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2437), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3947), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), + [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6487), + [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6288), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6819), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5217), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7107), + [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2662), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8159), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7106), + [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3917), + [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3920), + [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6445), + [4749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6278), + [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), + [4758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), + [4761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6807), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5374), + [4767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [4773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8157), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [4805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2624), + [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [4816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7773), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4546), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4546), + [4843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4404), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4404), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3887), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3888), + [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6319), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6228), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), + [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), + [4885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6706), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(286), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(287), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2748), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [4949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7160), + [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), + [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3910), + [4958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6359), + [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2713), + [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6246), + [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), + [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2839), + [4976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6774), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5363), + [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [4985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(299), + [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [4994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), + [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8177), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), + [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), + [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7922), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4410), + [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4410), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2751), + [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2750), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7069), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4231), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4231), + [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), + [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7188), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [5139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4417), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4417), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7138), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), + [5186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(8006), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2846), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [5276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), + [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), + [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [5337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6328), + [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2828), + [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6232), + [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3038), + [5352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6724), + [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5350), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [5361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [5364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [5367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [5373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8175), + [5376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4429), + [5379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4429), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [5416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2854), + [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), + [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6464), + [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2816), + [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6140), + [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2854), + [5437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), + [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6772), + [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5219), + [5446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(367), + [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2913), + [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8187), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [5504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7801), + [5507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), + [5510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), + [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6492), + [5519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2798), + [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6290), + [5525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), + [5528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3071), + [5531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6824), + [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [5549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), + [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2889), + [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(8160), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7081), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [5608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), + [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7009), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4401), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4401), + [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4276), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4276), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [5722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [5754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4300), + [5757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4300), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), + [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), + [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6451), + [5818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2979), + [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6134), + [5824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), + [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3301), + [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6744), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5328), + [5836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [5839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [5842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3067), + [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8185), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), + [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7904), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [5923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(8031), + [5926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [5929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1555), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [5940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4408), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4408), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [5986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4413), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4413), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [6040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4414), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4414), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [6057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4402), + [6131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4402), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4265), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [6188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), + [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4405), + [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4405), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [6203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4415), + [6206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4415), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4285), + [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4285), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4289), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4289), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4334), + [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4334), + [6237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1658), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 9), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 9), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 22), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 22), + [6252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4306), + [6255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4306), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4312), + [6295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4312), + [6298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), + [6301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3949), + [6304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [6307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6423), + [6310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3643), + [6313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6287), + [6316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3662), + [6319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6707), + [6322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5418), + [6325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [6328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [6334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3410), + [6340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), + [6343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1743), + [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [6349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [6368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4422), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4422), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), + [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [6408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4382), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4382), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4419), + [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4419), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [6484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4317), + [6487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4317), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4369), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4369), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [6514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [6532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), + [6535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [6549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), + [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), + [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [6559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [6564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2049), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, 0, 66), + [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7041), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2, 0, 0), + [6583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(8055), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [6595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4376), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4376), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4380), + [6635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4380), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [6640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(7156), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2239), + [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [6666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), + [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [6699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [6704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [6707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [6710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3906), + [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6431), + [6716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), + [6719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), + [6722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3719), + [6725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3757), + [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6801), + [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5351), + [6734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [6737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [6740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), + [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8156), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [6760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4356), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4361), + [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4361), + [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2568), + [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1254), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [6781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4260), + [6784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [6787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2560), + [6799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3138), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [6808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1649), + [6811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [6814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1242), + [6817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6663), + [6820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1091), + [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(533), + [6826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2589), + [6829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1867), + [6832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2062), + [6835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3511), + [6838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6627), + [6841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6990), + [6844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1345), + [6847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2812), + [6850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3319), + [6853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3434), + [6856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1750), + [6859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1776), + [6862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2151), + [6865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1402), + [6868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1871), + [6871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1916), + [6874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2173), + [6877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1272), + [6880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3763), + [6883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2770), + [6886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(513), + [6889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2786), + [6892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3129), + [6895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2603), + [6898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2246), + [6901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2263), + [6904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4694), + [6907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1977), + [6910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4575), + [6913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5742), + [6916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3424), + [6919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5261), + [6922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2489), + [6925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2001), + [6928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6993), + [6931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2204), + [6934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2013), + [6937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2835), + [6940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3040), + [6943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5845), + [6946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2808), + [6949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5662), + [6952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6687), + [6955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6961), + [6958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4579), + [6961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3582), + [6964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(7071), + [6967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5837), + [6970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3096), + [6973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2731), + [6976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6896), + [6979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3677), + [6982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6088), + [6985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2829), + [6988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(927), + [6991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3360), + [6994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5957), + [6997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2984), + [7000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5816), + [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6695), + [7006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1409), + [7009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1421), + [7012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1638), + [7015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(990), + [7018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1802), + [7021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4831), + [7024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1452), + [7027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4654), + [7030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(998), + [7033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4666), + [7036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1513), + [7039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1532), + [7042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1652), + [7045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1260), + [7048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2083), + [7051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5108), + [7054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1729), + [7057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4795), + [7060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4800), + [7063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2581), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [7068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4351), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2688), + [7093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2649), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [7106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2651), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4331), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [7124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2768), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4383), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4341), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4386), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2836), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4280), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [7384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4345), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [7399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 43), + [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 43), + [7403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [7418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 12), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 12), + [7424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 40), + [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 40), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [7434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 41), + [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 41), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [7448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4398), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [7453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4384), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 40), + [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 40), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 41), + [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 41), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [7472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [7516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3267), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 40), + [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 40), + [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 41), + [7687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 41), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [7747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [7751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3276), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [7762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), + [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [7910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 0), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 0), + [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [7946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [8021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3583), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [8038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [8050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [8077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [8081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [8083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [8159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(4099), + [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(4099), + [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(2460), + [8168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(4224), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6593), + [8176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(7125), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [8315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4390), + [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4390), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [8359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [8380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [8395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 12), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [8409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6808), + [8412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), + [8415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3867), + [8418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), + [8421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6529), + [8424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6828), + [8427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6214), + [8430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6808), + [8433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6947), + [8436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6786), + [8439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5338), + [8442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [8445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [8448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [8451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [8454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6781), + [8457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6614), + [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8171), + [8463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4326), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 89), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [8520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5130), + [8523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3836), + [8526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3837), + [8529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6398), + [8532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5081), + [8535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6200), + [8538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5240), + [8541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6795), + [8544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5321), + [8547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [8550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [8553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [8556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [8559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5129), + [8562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8168), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 49), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 51), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6477), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 0), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 33), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 13), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [9249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), + [9252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3951), + [9255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4080), + [9258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4048), + [9261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4048), + [9264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6599), + [9267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6280), + [9270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [9273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3098), + [9276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6810), + [9279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5293), + [9282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [9291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [9294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2906), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [9355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [10310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [10313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [10316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3825), + [10319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), + [10322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5581), + [10325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6195), + [10328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [10331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5686), + [10334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6719), + [10337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), + [10340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [10343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [10346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [10349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [10352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), + [10355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8167), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [10410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5595), + [10413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), + [10415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(3836), + [10418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(3837), + [10421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6398), + [10424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5563), + [10427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6200), + [10430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5240), + [10433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6795), + [10436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5321), + [10439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(261), + [10442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(262), + [10445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(263), + [10448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(236), + [10451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5588), + [10454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(8168), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [11125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [11127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [11141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [11195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6690), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [11629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [11653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [11663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [11671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [11711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [11737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [11743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [11745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [11779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [11805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [11827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [11829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [11853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [11895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [11911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [11913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [11919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [11957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [11959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [11965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [11973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [11979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [11987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [11989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [11995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [11999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [12005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [12013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [12015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [12021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [12029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [12031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [12037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [12039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [12045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [12051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [12067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [12069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [12075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [12077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [12083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [12085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [12087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [12095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [12101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [12103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [12109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [12111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [12113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [12119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [12121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [12127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [12129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [12141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [12143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [12153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [12155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [12161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [12167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [12183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [12185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [12191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [12197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [12203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [12209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [12227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [12229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [12239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [12245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [12253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [12255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [12261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [12269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [12271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [12277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [12279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [12285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [12293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [12295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [12303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [12305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [12315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [12323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [12325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [12327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [12333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [12335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [12341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [12343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [12349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [12351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [12357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [12359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [12365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [12367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [12369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [12371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [12377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [12389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [12391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4372), + [12394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4372), + [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [12401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [12413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [12415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [12423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [12437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [12445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [12451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [12453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [12455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [12457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [12461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [12463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [12465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [12467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [12469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [12471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [12477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [12487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [12497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [12503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [12511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [12517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [12519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [12527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [12533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [12541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [12547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [12549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [12553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [12565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [12575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [12577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [12579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [12581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [12583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4388), + [12586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4388), + [12589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [12591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [12593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [12595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [12597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [12599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [12601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [12603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [12605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [12607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [12609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [12611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [12613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [12615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [12617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [12619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [12621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [12623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [12625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [12629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [12635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [12637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [12639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [12641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [12643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [12645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [12647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [12653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [12655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [12657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [12659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [12661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [12663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [12665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [12667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [12669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [12671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [12673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [12679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [12681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [12687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [12689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [12695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [12701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [12707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [12709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [12711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [12713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [12715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [12717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [12719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [12721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [12723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [12729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [12731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [12737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [12739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [12745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [12751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [12753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [12759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [12761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [12765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [12767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4153), + [12770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(687), + [12773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [12775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4342), + [12778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6580), + [12781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [12789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4180), + [12792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4180), + [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [12799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), + [12802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), + [12805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [12811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [12819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 1, 0), + [12821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 1, 0), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [12827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [12829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [12831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7106), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [12836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4409), + [12839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4409), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [12844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [12846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [12850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [12852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [12854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [12856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [12862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [12866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [12868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [12870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [12874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [12876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), + [12879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8007), + [12882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [12885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [12887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6545), + [12890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [12892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [12894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [12898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7160), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [12905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [12907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [12911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [12913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [12915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [12919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 61), + [12921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 61), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [12929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [12933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4161), + [12936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(709), + [12939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4363), + [12942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6590), + [12945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4860), + [12948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [12950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [12952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4407), + [12955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4407), + [12958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [12960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4830), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [12967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [12971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4874), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [12978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [12980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [12982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4423), + [12985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4423), + [12988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [12996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 29), + [12998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 29), + [13000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4425), + [13003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4425), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [13010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [13014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 54), + [13016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 54), + [13018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4956), + [13021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [13023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [13025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [13029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), + [13031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), + [13033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [13035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [13037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [13041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 44), + [13043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 44), + [13045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [13047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [13051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), + [13053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [13061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5115), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [13068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), + [13071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [13073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [13075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [13081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5040), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [13096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4118), + [13099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(792), + [13102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4438), + [13105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6591), + [13108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [13110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [13118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4420), + [13121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4420), + [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [13134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5028), + [13137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [13139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [13141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(465), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [13158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4179), + [13161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(838), + [13164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4456), + [13167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6564), + [13170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4114), + [13173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(771), + [13176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4267), + [13179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6581), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [13184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 44), + [13186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 44), + [13188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 30), + [13190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 30), + [13192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), + [13194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [13202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7188), + [13205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [13207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [13209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 44), + [13211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 44), + [13213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), + [13215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), + [13217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [13219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [13221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [13225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), + [13227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), + [13229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7069), + [13232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4126), + [13235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(799), + [13238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4287), + [13241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6577), + [13244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [13246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [13248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), + [13250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), + [13252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4158), + [13255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8032), + [13258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [13261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6552), + [13264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), + [13266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [13274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7138), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [13279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7009), + [13282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 65), + [13284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 65), + [13286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 71), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [13310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 46), + [13312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 46), + [13314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4109), + [13317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7887), + [13320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [13323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6554), + [13326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 84), + [13328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 84), + [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [13332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 73), + [13334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 75), + [13336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 75), + [13338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 45), + [13340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 45), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [13344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 19), + [13346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 19), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [13350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5269), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [13355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), + [13358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [13361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6555), + [13364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2, 0, 0), + [13366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 42), + [13368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 42), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [13374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 45), + [13376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 45), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [13380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [13382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 46), + [13384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 46), + [13386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [13388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [13390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 45), + [13392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 45), + [13394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [13396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [13398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [13400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 46), + [13402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 46), + [13404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 45), + [13406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 45), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [13410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [13414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 47), + [13416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 47), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [13420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4374), + [13423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4374), + [13426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), + [13429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [13432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6548), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [13439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [13441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [13447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4122), + [13450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(835), + [13453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4450), + [13456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6595), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [13467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [13470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 99), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [13474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 46), + [13476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 46), + [13478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [13480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [13484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [13486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [13488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5271), + [13491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [13493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [13495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [13497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [13499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 2), + [13501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 2), + [13503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [13505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [13507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 57), + [13509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [13511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [13513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [13515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [13517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5326), + [13520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [13522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [13524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 44), + [13526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [13528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [13530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 69), + [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [13534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [13536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [13538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 45), + [13540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 45), + [13542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [13544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [13548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [13550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [13552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 46), + [13554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 46), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [13558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7081), + [13561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [13563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [13565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [13567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [13569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [13571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [13573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [13575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [13577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4116), + [13580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [13583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6550), + [13586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 131), + [13588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 97), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [13646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5427), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [13655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [13661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [13673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [13678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [13798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), + [13801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [13804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6553), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [13841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [13844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [13847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [13849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [13851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [13855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [13857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [13866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [13868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [13870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5602), + [13873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [13880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4373), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [13889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [13947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [13952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4387), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [13981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [13983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [13995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [13997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [14005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4130), + [14008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4130), + [14011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1045), + [14014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4302), + [14017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6561), + [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [14028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [14036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4149), + [14039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1071), + [14042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4461), + [14045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6560), + [14048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [14060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7041), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [14065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [14067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, 0, 12), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [14077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 142), + [14079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 142), + [14081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 112), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [14089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 144), + [14091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 144), + [14093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 83), + [14095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4389), + [14098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 105), + [14100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 105), + [14102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 79), + [14104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4128), + [14107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7764), + [14110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4128), + [14113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), + [14116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7764), + [14119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6556), + [14122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(7156), + [14125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5773), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [14132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 107), + [14134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 107), + [14136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 45), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [14140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 138), + [14142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 138), + [14144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 109), + [14146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4143), + [14149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4143), + [14152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1204), + [14155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4323), + [14158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6574), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [14167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 103), + [14169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 103), + [14171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 59), + [14173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4399), + [14176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4385), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [14183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 153), + [14185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 153), + [14187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 109), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [14191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 113), + [14193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 113), + [14195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 60), + [14197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 77), + [14199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 77), + [14201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 59), + [14203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 115), + [14205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 115), + [14207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 83), + [14209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [14219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 81), + [14221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 81), + [14223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 60), + [14225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [14227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 140), + [14229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 140), + [14231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 46), + [14233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 155), + [14235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 155), + [14237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 112), + [14239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [14243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [14245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [14247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [14249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [14251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 51), + [14253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [14255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [14257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [14259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [14263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, 0, 49), + [14265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [14267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 110), + [14269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 110), + [14271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 46), + [14273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 134), + [14275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 134), + [14277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 79), + [14279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4147), + [14282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [14285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6549), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [14290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 64), + [14292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [14294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 136), + [14296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 136), + [14298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 45), + [14300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 139), + [14302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 139), + [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [14306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 106), + [14308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 106), + [14310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 156), + [14312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 156), + [14314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 82), + [14316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 82), + [14318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [14326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 143), + [14328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 143), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [14332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 145), + [14334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 145), + [14336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 154), + [14338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 154), + [14340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 114), + [14342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 114), + [14344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 78), + [14346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 78), + [14348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 116), + [14350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 116), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [14354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5932), + [14357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 135), + [14359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 135), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [14363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [14365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, 0, 12), + [14367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [14369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [14375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5933), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [14380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 111), + [14382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 111), + [14384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 108), + [14386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 108), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [14390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5914), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [14395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5956), + [14398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4397), + [14401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 104), + [14403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 104), + [14405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), + [14408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), + [14411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), + [14414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), + [14417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), + [14420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6544), + [14423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 141), + [14425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 141), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [14429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 137), + [14431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 137), + [14433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [14440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [14450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6026), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [14455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [14457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [14467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [14469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [14475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [14479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [14481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [14499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), + [14501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [14503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [14507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [14509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [14517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [14549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4139), + [14552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1699), + [14555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4314), + [14558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6569), + [14561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(465), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [14574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4392), + [14577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4392), + [14580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [14583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [14586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [14588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), + [14591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [14593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [14599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [14601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [14607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [14609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [14613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [14615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [14617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [14619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [14623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [14625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [14627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [14629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [14631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [14633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [14635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [14637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [14639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), + [14641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [14643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [14645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [14647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [14649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [14651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [14653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [14655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [14657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [14659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [14661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [14663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [14665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [14667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [14669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [14671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [14673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [14675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [14677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [14679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [14681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [14683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [14685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [14687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [14689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [14691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [14693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [14695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [14697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [14699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [14701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [14703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [14705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [14707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [14709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [14711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [14713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [14715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [14717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [14719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [14721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [14723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [14725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [14727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [14729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [14731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), + [14733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [14735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [14737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [14739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [14741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [14743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [14745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [14747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [14749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [14751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [14753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [14755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [14757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [14759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [14761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [14763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [14765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [14767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [14769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [14771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [14773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [14775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [14777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [14779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [14781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [14783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [14785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [14787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), + [14789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [14791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [14793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [14795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [14797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [14799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [14801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [14803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [14805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [14807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [14809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [14811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [14813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [14815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [14817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [14821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [14825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [14827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [14829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [14835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [14837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [14841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [14843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [14845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [14851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [14853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [14855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [14857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [14859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [14861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [14863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [14865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [14867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [14869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [14871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [14873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [14875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [14877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [14879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [14881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [14883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [14885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [14887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [14889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [14891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [14893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [14895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [14897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [14899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6536), + [14901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [14903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), + [14905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [14907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [14909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [14911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [14913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [14915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [14917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [14919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [14921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [14923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [14925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [14927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [14929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [14931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [14933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [14935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [14937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [14939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [14941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [14943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [14945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [14947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [14949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [14951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [14953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [14955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [14957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [14959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [14961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [14963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [14965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [14967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [14969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [14971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [14973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [14975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [14977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [14979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [14981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [14983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [14985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [14987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [14989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [14991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [14993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [14995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [14997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [14999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [15001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [15003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [15005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [15007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [15009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [15011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [15013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [15015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [15017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [15019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [15021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [15023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [15025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [15027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [15029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [15031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [15033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [15035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [15037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [15039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [15041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [15043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [15045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [15047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [15049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [15051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [15053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [15055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [15057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [15059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [15061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [15063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [15065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [15067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [15069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [15071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [15073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [15075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [15077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [15079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [15081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [15083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [15085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [15087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [15089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [15091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [15093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [15095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [15097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [15099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [15101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [15103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [15105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [15107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [15109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [15113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [15115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [15117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [15119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [15121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [15123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [15125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [15127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [15129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [15131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [15133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [15135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [15137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [15139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [15141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [15143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [15145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [15147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [15149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [15151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [15153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [15155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [15157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [15159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [15161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [15163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [15165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [15167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [15169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [15171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [15173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [15175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [15177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [15179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [15181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [15183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [15185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [15187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [15189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [15191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [15193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [15195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [15197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [15199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [15201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [15203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [15205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [15207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [15209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [15211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [15213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [15215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [15217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [15219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), + [15221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [15223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), + [15226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3843), + [15229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6551), + [15232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [15234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6601), + [15237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5370), + [15240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [15243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [15246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [15249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [15253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [15255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [15257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [15259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [15261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [15263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [15265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [15267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [15269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [15271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [15273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [15275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [15277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [15279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [15281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [15283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [15285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [15287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [15289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [15291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [15293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [15295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [15297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [15299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [15301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), + [15303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [15305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [15307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [15309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [15311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [15313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [15315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [15317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [15319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [15321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [15323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [15325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [15327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [15329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [15333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [15335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [15337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [15347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [15349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [15359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [15361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8035), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [15371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [15373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [15375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [15377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [15379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [15381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [15383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [15385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [15393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [15395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [15397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [15399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [15401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [15403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [15405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [15407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [15409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [15411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [15413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [15415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [15417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [15419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [15421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [15429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [15431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [15433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [15435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [15437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [15439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [15441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [15443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [15451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [15453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [15455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [15457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [15459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [15461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [15463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [15465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [15467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [15469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [15471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [15479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [15481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [15483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [15487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [15489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [15491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [15493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [15495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [15497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [15499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [15501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [15503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [15505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [15507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [15509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [15511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [15513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [15515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [15517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [15519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [15521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [15523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [15525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [15527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [15529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [15531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [15533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [15535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [15537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [15539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [15541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [15543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [15545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [15547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [15549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [15551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [15553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [15555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [15557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [15565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [15567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [15569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [15571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [15573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [15575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [15577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), + [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [15587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [15589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [15591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [15593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [15595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [15597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [15599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [15607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [15615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [15627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [15629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [15631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [15635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [15643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [15651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [15659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [15661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [15665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [15673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [15675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [15679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 51), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [15683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [15691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [15701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [15709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [15717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [15725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [15733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [15741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [15749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [15757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [15759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [15763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6563), + [15766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5227), + [15769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [15772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [15775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [15778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6583), + [15781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [15783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [15793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), + [15795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [15803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [15811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [15819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [15827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [15829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [15833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [15841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [15843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [15847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [15849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [15853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [15861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [15863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [15869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [15875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [15879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [15885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [15891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [15897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [15903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [15907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [15921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [15927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [15931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [15933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [15937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [15939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [15941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [15943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [15945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [15947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [15953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, 0, 12), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [15963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), + [15965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [15971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [15973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [15975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [15979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [15981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [15985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [15987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [15991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [15993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [15995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), + [15997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, 0, 12), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [16003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [16005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [16009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [16011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [16015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6827), + [16018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6253), + [16021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6651), + [16024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), + [16026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6827), + [16029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6651), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [16034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [16036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [16040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [16042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, 0, 12), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [16046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [16048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [16052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), + [16055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), + [16058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [16060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [16062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), + [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [16068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 7), + [16070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [16072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, 0, 27), + [16074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 0), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [16078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 12), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [16082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 50), + [16084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6717), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [16091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 51), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [16099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [16101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [16111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [16117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [16141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 90), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [16147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 122), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [16153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 49), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [16157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 64), + [16159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 91), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [16173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [16177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [16195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [16215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 123), + [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [16219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 92), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [16241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [16251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [16297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [16301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [16315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 51), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [16321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 49), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [16333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [16335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 63), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [16349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 89), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [16355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [16357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [16373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 52), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [16379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 53), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [16389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), + [16391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(5909), + [16394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [16396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [16400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [16402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [16406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [16408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [16410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [16415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 85), + [16417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 32), + [16419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [16421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5320), + [16424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [16426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 7), + [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [16436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 121), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [16440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 62), + [16442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 31), + [16444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 45), + [16446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 46), + [16448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4379), + [16451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [16453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [16457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), + [16459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), SHIFT_REPEAT(6972), + [16462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [16464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [16468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2, 0, 0), + [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [16472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7193), + [16475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 109), + [16477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [16483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7113), + [16486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 79), + [16488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [16490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [16492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [16494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, 0, 12), + [16496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 83), + [16498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [16504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [16506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [16508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, 0, 12), + [16510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 112), + [16512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [16518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [16524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [16530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 45), + [16532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [16536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [16542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [16544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [16548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 59), + [16550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [16554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 26), + [16556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 26), + [16558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 60), + [16560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [16564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 46), + [16566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [16582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [16600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), SHIFT_REPEAT(3952), + [16603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), + [16605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 152), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [16611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 132), + [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [16619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [16623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [16636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 133), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [16640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 128), + [16642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 151), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [16656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [16672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [16674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 130), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [16682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [16692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 129), + [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [16700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 70), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [16720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 58), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [16740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5259), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [16751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [16761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5238), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [16768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [16774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [16776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [16778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 72), + [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [16782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 74), + [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [16810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 100), + [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [16814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 150), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [16820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [16822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [16824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, 0, 158), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [16838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [16848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [16880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [16884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 98), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [16892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 101), + [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [16900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 12), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [16904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 102), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [16918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [16920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 96), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [16924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 89), + [16926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, 0, 12), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [16936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 119), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [16944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 12), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [16952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 88), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [16998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 147), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [17012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, 0, 157), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [17078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [17118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [17130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [17136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [17208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 148), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [17266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [17278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [17300] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [17306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [17324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [17326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [17348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [17352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [17356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [17364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [17372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, 0, 12), + [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [17400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [17406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [17412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [17414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [17440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [17450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [17452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [17454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [17460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [17472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [17484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [17500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [17814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 117), + [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [17828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, 0, 49), + [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [17834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 118), + [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [17846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [17860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [17882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 120), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [17918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 86), + [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [17932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 87), + [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [17962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [18026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, 0, 43), + [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [18040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [18042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [18044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [18046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [18048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [18050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [18052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 146), + [18054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [18056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [18058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [18060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [18062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [18064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [18066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [18068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [18070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [18072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [18074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [18076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [18078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [18080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [18082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [18084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [18086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [18088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [18090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [18092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [18094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [18096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [18098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [18100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [18102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [18104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [18106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [18108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [18110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [18112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [18114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [18116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [18118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [18120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [18122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [18124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [18126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [18128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [18130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [18132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [18134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [18136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [18138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [18140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [18142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [18144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [18146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [18148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [18150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [18152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [18154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [18156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [18158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [18160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [18162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [18164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [18166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [18168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [18170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [18172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [18174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [18176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [18178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [18180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [18182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [18184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [18186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [18188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [18190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [18192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [18194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [18196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [18198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [18200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [18202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [18204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [18206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [18208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [18210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [18212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [18214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [18216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [18218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [18220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [18222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [18224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [18226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [18228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [18230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [18232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [18234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [18236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [18238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [18240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [18242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [18244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [18246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [18248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [18250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [18252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [18254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [18256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [18258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [18260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [18262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [18264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [18266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [18268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [18270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [18272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [18274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [18276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [18278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [18280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [18282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [18284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [18286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [18288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [18290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [18292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [18294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [18296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [18298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [18300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [18302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [18304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [18306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [18308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [18310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [18312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [18314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [18316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [18318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [18320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [18322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [18324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [18326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [18328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [18330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [18332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [18334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [18336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [18338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [18340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [18342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [18346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [18358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [18360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [18362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [18364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [18366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [18368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [18370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [18372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [18374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [18376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [18378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [18380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [18382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [18388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [18390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [18394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [18396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [18402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [18404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [18406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [18410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [18412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [18414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [18416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [18418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [18422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [18424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [18430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [18436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [18440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [18442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [18444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [18448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [18450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [18462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [18464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [18468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [18472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [18476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [18480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [18482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [18484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [18488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [18490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), }; enum ts_external_scanner_symbol_identifiers { @@ -349724,22 +381621,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, @@ -349823,10 +381720,12 @@ 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_LPAREN] = true, [ts_external_token_esac] = true, }, [16] = { @@ -349842,33 +381741,31 @@ 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_LPAREN] = true, [ts_external_token_esac] = true, }, [18] = { [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, @@ -349892,19 +381789,19 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [22] = { [ts_external_token_file_descriptor] = 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_LPAREN] = true, }, [23] = { [ts_external_token_file_descriptor] = 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, + [ts_external_token_heredoc_redirect_token1] = true, }, [24] = { [ts_external_token_file_descriptor] = true, @@ -349940,24 +381837,24 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [28] = { [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_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, - [ts_external_token_esac] = true, }, [29] = { [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_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [30] = { [ts_external_token_file_descriptor] = true, @@ -349989,10 +381886,9 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [33] = { [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, }, [34] = { [ts_external_token_file_descriptor] = true, @@ -350005,24 +381901,20 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [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, - }, - [36] = { [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [37] = { - [ts_external_token_variable_name] = true, + [36] = { + [ts_external_token_file_descriptor] = 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, }, - [38] = { + [37] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -350033,6 +381925,11 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, + [38] = { + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, [39] = { [ts_external_token_test_operator] = true, [ts_external_token_LT_LT] = true, @@ -350054,11 +381951,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 +381960,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, @@ -350118,18 +382015,18 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, }, [51] = { - [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, }, [52] = { + [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, }, [53] = { [ts_external_token_file_descriptor] = true, @@ -350142,11 +382039,20 @@ 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_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [55] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_LT_LT] = true, + }, + [56] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, @@ -350154,39 +382060,30 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, [ts_external_token_esac] = true, }, - [56] = { + [57] = { [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__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [57] = { + [58] = { [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_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [58] = { + [59] = { [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_LT_LT] = 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_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, [60] = { [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, @@ -350213,11 +382110,11 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_esac] = 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 +382126,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, @@ -350250,17 +382147,17 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [71] = { - [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, - [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, }, + [72] = { + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, [73] = { [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, @@ -350297,14 +382194,14 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [79] = { + [ts_external_token__immediate_double_hash] = true, + [ts_external_token_RBRACE] = true, + }, + [80] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, }, - [80] = { - [ts_external_token__immediate_double_hash] = true, - [ts_external_token_RBRACE] = true, - }, [81] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, @@ -350312,20 +382209,20 @@ 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_regex] = true, [ts_external_token__brace_start] = true, }, [83] = { [ts_external_token_test_operator] = true, - [ts_external_token_regex] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, }, [84] = { + [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] = { [ts_external_token_test_operator] = true, @@ -350340,13 +382237,14 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_esac] = true, }, [87] = { + [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_LPAREN] = true, + [ts_external_token_esac] = 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, @@ -350355,31 +382253,30 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, + [89] = { + [ts_external_token__immediate_double_hash] = true, + }, [90] = { [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_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_LPAREN] = 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, }, [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, @@ -350433,13 +382330,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [102] = { [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, }, [103] = { [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, }, @@ -350496,13 +382393,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__concat] = true, }, [116] = { - [ts_external_token__concat] = true, - [ts_external_token_heredoc_redirect_token1] = true, - }, - [117] = { [ts_external_token__regex_no_slash] = true, [ts_external_token_RBRACE] = true, }, + [117] = { + [ts_external_token__concat] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, [118] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, @@ -350516,25 +382413,25 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [121] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = 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__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, + [ts_external_token__concat] = true, + [ts_external_token_RBRACE] = true, }, [125] = { [ts_external_token_esac] = true, @@ -350550,10 +382447,10 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, }, [129] = { - [ts_external_token_heredoc_end] = true, + [ts_external_token_heredoc_start] = true, }, [130] = { - [ts_external_token_heredoc_start] = true, + [ts_external_token_heredoc_end] = true, }, }; diff --git a/src/scanner.c b/src/scanner.c index 0c3430a..e6a9243 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -386,7 +386,8 @@ static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { return true; } } - if (iswspace(lexer->lookahead) && valid_symbols[CLOSING_BRACE] && !valid_symbols[EXPANSION_WORD]) { + if (iswspace(lexer->lookahead) && valid_symbols[CLOSING_BRACE] && !valid_symbols[EXPANSION_WORD] && + !valid_symbols[NEWLINE]) { lexer->result_symbol = CONCAT; return true; } diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index a00eb94..b9d947d 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -1861,6 +1861,98 @@ if (echo $BASHPID; true); then echo $BASHPID; fi (simple_expansion (variable_name))))) +================================================================================ +If condition with compound statement (unterminated body) +================================================================================ + +if { { cmd }; }; then echo ok; fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + (compound_statement + (compound_statement + (command + (command_name + (word))))) + (command + (command_name + (word)) + (word)))) + +================================================================================ +If condition with compound statement containing redirect and multiline body +================================================================================ + +if { { true; } >&5 + true; }; then : + fi + +-------------------------------------------------------------------------------- + +(program + (if_statement + (compound_statement + (redirected_statement + (compound_statement + (command + (command_name + (word)))) + (file_redirect + (number))) + (command + (command_name + (word)))) + (command + (command_name + (word))))) + +================================================================================ +Multiple variable assignments as command prefix (same line) +================================================================================ + +a=1 b=2 cmd arg + +-------------------------------------------------------------------------------- + +(program + (command + (variable_assignment + (variable_name) + (number)) + (variable_assignment + (variable_name) + (number)) + (command_name + (word)) + (word))) + +================================================================================ +Multiple variable assignments followed by if statement +================================================================================ + +a=1 b=2 +if true; then :; fi + +-------------------------------------------------------------------------------- + +(program + (variable_assignments + (variable_assignment + (variable_name) + (number)) + (variable_assignment + (variable_name) + (number))) + (if_statement + (command + (command_name + (word))) + (command + (command_name + (word))))) + ================================================================================ While condition with subshell ================================================================================